diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 10be19751..000000000
--- a/.gitignore
+++ /dev/null
@@ -1,53 +0,0 @@
-# OSX
-#
-.DS_Store
-
-# Xcode
-#
-build/
-*.pbxuser
-!default.pbxuser
-*.mode1v3
-!default.mode1v3
-*.mode2v3
-!default.mode2v3
-*.perspectivev3
-!default.perspectivev3
-xcuserdata
-*.xccheckout
-*.moved-aside
-DerivedData
-*.hmap
-*.ipa
-*.xcuserstate
-project.xcworkspace
-
-# Android/IntelliJ
-#
-build/
-.idea
-.gradle
-local.properties
-*.iml
-
-# node.js
-#
-node_modules/
-npm-debug.log
-yarn-error.log
-
-# BUCK
-buck-out/
-\.buckd/
-*.keystore
-
-# fastlane
-#
-# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
-# screenshots whenever they are needed.
-# For more information about the recommended setup visit:
-# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
-
-fastlane/report.xml
-fastlane/Preview.html
-fastlane/screenshots
diff --git a/DocumentScanner.js b/DocumentScanner.js
index 25a5be7b3..85eb322e4 100644
--- a/DocumentScanner.js
+++ b/DocumentScanner.js
@@ -5,7 +5,7 @@ import {
DeviceEventEmitter, // android
NativeModules,
requireNativeComponent,
- View
+ View,
} from 'react-native';
var iface = {
@@ -49,9 +49,9 @@ class Scanner extends PureComponent{
CameraManager.capture();
}
- render(){
- return
+ render() {
+ return ;
}
}
-export default Scanner;
\ No newline at end of file
+export default Scanner;
diff --git a/README.md b/README.md
index cdd9cda7d..46824c6a4 100644
--- a/README.md
+++ b/README.md
@@ -1,112 +1,130 @@
-

-
- ## React Native module to auto scan documents (Android only)
-
-Live document detection library. Returns either a URI of the captured image, allowing you to easily store it or use it as you wish !
+## React Native module to auto scan documents (Android only)
+
+Live document detection library. Returns either a URI of the captured image, allowing you to easily store it or use it as you wish !
Features:
- - Live detection
- - Perspective correction and image crop
- - Flash
+- Live detection
+- Perspective correction and image crop
+- Flash
### Get started
`npm install --save react-native-documentscanner-android`
- In MainApplication.java, add this Line `import com.documentscanner.DocumentScannerPackage;` at the top of file,
+In MainApplication.java, add this Line `import com.documentscanner.DocumentScannerPackage;` at the top of file,
- ```java
+```java
@Override
protected List getPackages() {
-return Arrays.asList(
- new MainReactPackage(),
- new DocumentScannerPackage() <--- this line,
- ...
- );
+ return Arrays.asList(
+ new MainReactPackage(),
+ new DocumentScannerPackage() <--- this line,
+ ...
+ );
}
```
+
#### IMPORTANT - Go to folder app/settings.gradle and add
```java
include ':react-native-documentscanner-android'
project(':react-native-documentscanner-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-documentscanner-android/android')
```
- #### Add this (don't forget)
+
+#### Add this (don't forget)
+
```java
include ':openCVLibrary310'
project(':openCVLibrary310').projectDir = new File(rootProject.projectDir,'../node_modules/react-native-documentscanner-android/android/openCVLibrary310')
+```
+
+ #### In android/app/src/main/AndroidManifest.xml
+ Change manifest header to avoid "Manifest merger error". After you add `xmlns:tools="http://schemas.android.com/tools"` should look like this:
+ ```
+
+ ```
+ Add `tools:replace="android:allowBackup"` in
+ ```
+ Add Camera permissions request:
+ ```
+
+ ```
+ #### Add this to android/app/build.gradle (dependencies section)
+```
+implementation project(':react-native-documentscanner-android')
```
### Usage
```javascript
-import DocumentScanner from 'react-native-documentscanner-android';
-
-class YourComponent extends Component {
- render() {
- return (
-
- {
- console.log(data.path)
- }}
- enableTorch={false}
- detectionCountBeforeCapture={5}
- />
-
- );
- }
+import DocumentScanner from 'react-native-documentscanner-android';
+
+class YourComponent extends Component {
+ render() {
+ return (
+
+ {
+ console.log(data.path);
+ }}
+ enableTorch={false}
+ detectionCountBeforeCapture={5}
+ />
+
+ );
+ }
}
-
```
-
-
-
### Properties
-|Props|Default|Type|Description
-|--|--|--|--|
-| manualOnly | false | `bool`|if true, auto-detect is disabled
-| enableTorch | false | `bool`|Allows to active or deactivate flash during document detection
-| detectionCountBeforeCapture | 15 |`number`|Number of correct rectangle to detect before capture document
-| brightness | 10 | `number`|This property only work to enhance document at the save moment
-| contrast | 1 | `number`|This property only work to enhance document at the save moment
-| noGrayScale | false | `bool`|Currently this module saves pictures only in gray scale, this property adds the option to disable gray scale
-
-
+| Props | Default | Type | Description |
+| --------------------------- | ------- | -------- | ------------------------------------------------------------------------------------------------------------ |
+| manualOnly | false | `bool` | if true, auto-detect is disabled |
+| enableTorch | false | `bool` | Allows to active or deactivate flash during document detection |
+| detectionCountBeforeCapture | 15 | `number` | Number of correct rectangle to detect before capture document |
+| brightness | 10 | `number` | This property only work to enhance document at the save moment |
+| contrast | 1 | `number` | This property only work to enhance document at the save moment |
+| noGrayScale | false | `bool` | Currently this module saves pictures only in gray scale, this property adds the option to disable gray scale |
### Manual capture
- - Get the component ref
+- Get the component ref
` this.scanner = ref} />`
- Then
-```javascript
+
+```javascript
this.scanner.capture();
```
+
### Returned Image
-| Prop | Params |Type| Description
-|--|--|--|--|
-| onPictureTaken | data | object | Returns an image in a object `{ path: ('imageUri')}`
-| onProcessing | data | object |Returns an object `{processing: (true | false)}` to show is an image is processing yet
+
+| Prop | Params | Type | Description |
+| -------------- | ------ | ------ | -------------------------------------------------------------------------------------- |
+| onPictureTaken | data | object | Returns an image in a object `{ path: ('imageUri')}` |
+| onProcessing | data | object | Returns an object `{processing: (true | false)}` to show is an image is processing yet |
The images are saved in `Documents` folder.
- #### Todo
- - Pass overlay color dynamically
- - Pass contrast and brightness to preview
- - Use front cam
- - Use base64
-
+
+#### Todo
+
+- Pass overlay color dynamically
+- Pass contrast and brightness to preview
+- Use front cam
+- Use base64
+
## Contributors are welcome !!
+Inspired in android project
-Inspired in android project
- https://github.com/ctodobom/OpenNoteScanner
-- https://github.com/Michaelvilleneuve/react-native-document-scanner
\ No newline at end of file
+- https://github.com/Michaelvilleneuve/react-native-document-scanner
diff --git a/android/build.gradle b/android/build.gradle
index 7b8d6c6d5..3e797c601 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -26,18 +26,23 @@ buildscript {
apply plugin: 'com.android.library'
android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
+ compileSdkVersion 28
+ buildToolsVersion "28.0.3"
defaultConfig {
minSdkVersion 16
- targetSdkVersion 22
+ targetSdkVersion 28
versionCode 1
versionName "1.0"
- ndk {
- abiFilters "armeabi-v7a", "x86"
+ }
+ splits {
+ abi {
+ reset()
+ universalApk false // If true, also generate a universal APK
+ include "armeabi-v7a", "x86", "arm64-v8a", 'x86_64'
}
}
+
// lintOptions {
// abortOnError false
// warning 'InvalidPackage'
@@ -45,13 +50,12 @@ android {
}
dependencies {
- //compile project(':openCVLibrary310').projectDir = new File(rootProject.projectDir,'../node_modules/react-native-documentscanner-android/android')
- compile project(':openCVLibrary310')
- compile "com.android.support:appcompat-v7:23.0.1"
- compile "com.facebook.react:react-native:0.19.+"
- compile 'com.google.zxing:core:3.0.1'
- compile 'com.android.support:design:23.4.0'
- compile 'org.piwik.sdk:piwik-sdk:0.0.4'
- compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
- compile 'us.feras.mdv:markdownview:1.1.0'
+ implementation project(':openCVLibrary310')
+ implementation "com.android.support:appcompat-v7:28.0.0"
+ implementation "com.facebook.react:react-native:0.19.+"
+ implementation 'com.google.zxing:core:3.0.1'
+ implementation 'com.android.support:design:28.0.0'
+ implementation 'org.piwik.sdk:piwik-sdk:0.0.4'
+ implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
+ implementation 'us.feras.mdv:markdownview:1.1.0'
}
\ No newline at end of file
diff --git a/android/build/generated/mockable-android-14.jar b/android/build/generated/mockable-android-14.jar
new file mode 100644
index 000000000..61cd8ce66
Binary files /dev/null and b/android/build/generated/mockable-android-14.jar differ
diff --git a/android/build/generated/mockable-android-23.jar b/android/build/generated/mockable-android-23.jar
new file mode 100644
index 000000000..c1f93ae3f
Binary files /dev/null and b/android/build/generated/mockable-android-23.jar differ
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml
new file mode 100644
index 000000000..4709b71b3
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
new file mode 100644
index 000000000..38fbc261b
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_camera_green.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_camera_green.xml
new file mode 100644
index 000000000..f168c5131
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_camera_green.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
new file mode 100644
index 000000000..07de58256
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_find_in_page.xml
new file mode 100644
index 000000000..d2ac3ac62
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_find_in_page.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
new file mode 100644
index 000000000..a3c81cc38
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
new file mode 100644
index 000000000..0234f6551
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml
new file mode 100644
index 000000000..d5fccc538
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_menu_tag.xml
new file mode 100644
index 000000000..0fc39f435
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_menu_tag.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml
new file mode 100644
index 000000000..b7abf9780
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml
new file mode 100644
index 000000000..c0bccf28f
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
new file mode 100644
index 000000000..1de4266fb
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml
new file mode 100644
index 000000000..ca2916e55
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_bell.xml
new file mode 100644
index 000000000..4e8870e8e
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_bell.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_game.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_game.xml
new file mode 100644
index 000000000..4a8c8fc8d
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_game.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_gift.xml
new file mode 100644
index 000000000..9267e7036
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_gift.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_magnet.xml
new file mode 100644
index 000000000..32c78e9c4
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_magnet.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_rocket.xml
new file mode 100644
index 000000000..6acc86aec
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_rocket.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_star.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_star.xml
new file mode 100644
index 000000000..692f1fd53
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_star.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_tv.xml
new file mode 100644
index 000000000..13a82b0a1
--- /dev/null
+++ b/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_tv.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png b/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png
new file mode 100644
index 000000000..5433efae0
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..ac90addd1
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png
new file mode 100644
index 000000000..7b8e7f0d3
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..379119cc9
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_find_in_page.png
new file mode 100644
index 000000000..a1c2d2c67
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..589602aaf
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..6d0a4ff7f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png
new file mode 100644
index 000000000..b7e37ae94
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png
new file mode 100644
index 000000000..37462f473
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png
new file mode 100644
index 000000000..9fdc78541
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png
new file mode 100644
index 000000000..653306eb8
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..cef861ced
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png
new file mode 100644
index 000000000..befb03bd0
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png
new file mode 100644
index 000000000..6fd1885b9
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png
new file mode 100644
index 000000000..c5a80bc59
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png
new file mode 100644
index 000000000..bc4ce02f9
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..d6c97a5eb
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..24a0aa2f6
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png
new file mode 100644
index 000000000..7c1da37c6
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png
new file mode 100644
index 000000000..8ac4c7761
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png b/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png
new file mode 100644
index 000000000..2bc26f68f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..51a52c68e
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png
new file mode 100644
index 000000000..cb5d4d53c
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..6ae7378c1
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_find_in_page.png
new file mode 100644
index 000000000..92aaea9e2
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..c79e82a4b
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0210836ec
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png
new file mode 100644
index 000000000..0ddbe1c5f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png
new file mode 100644
index 000000000..6a3e242e2
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png
new file mode 100644
index 000000000..627d0be43
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png
new file mode 100644
index 000000000..b85e842b4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9c18c4761
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png
new file mode 100644
index 000000000..3cba81fa4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png
new file mode 100644
index 000000000..9c7da82a0
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png
new file mode 100644
index 000000000..48f25c250
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png
new file mode 100644
index 000000000..25bcca44e
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png
new file mode 100644
index 000000000..d57f9dafb
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png
new file mode 100644
index 000000000..56a52cd85
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png
new file mode 100644
index 000000000..b1e67a634
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png
new file mode 100644
index 000000000..cb78d2acf
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png b/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png
new file mode 100644
index 000000000..0ef8547a0
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..4214c25d1
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png
new file mode 100644
index 000000000..6b2f061a4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..d00da71dc
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_find_in_page.png
new file mode 100644
index 000000000..6f76def11
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..3717dcd22
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0f551225a
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png
new file mode 100644
index 000000000..366e2de53
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png
new file mode 100644
index 000000000..d292d9cf4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png
new file mode 100644
index 000000000..b596690f5
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png
new file mode 100644
index 000000000..ce5190cdb
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..b41371693
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png
new file mode 100644
index 000000000..c166d6834
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png
new file mode 100644
index 000000000..7be0dce10
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png
new file mode 100644
index 000000000..1efaa4eb2
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png
new file mode 100644
index 000000000..14d873f2f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..7af83edd5
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..836cb2187
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png
new file mode 100644
index 000000000..3ccfcc417
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png
new file mode 100644
index 000000000..d46d1674f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png
new file mode 100644
index 000000000..3e2fe209b
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..f09bce589
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png
new file mode 100644
index 000000000..7b6420e46
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..161817679
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..41bd4bbf5
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..5b352ef2c
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..c1cc5225f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..c771e70e9
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..5f84b6bfa
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png
new file mode 100644
index 000000000..5102eca6b
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png
new file mode 100644
index 000000000..e51b11c6f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9029fa88e
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png
new file mode 100644
index 000000000..ffb6c4cfa
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..ac132447f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png
new file mode 100644
index 000000000..6f8534347
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..9d2f3af66
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..8d44365df
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..ee42f2d76
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png
new file mode 100644
index 000000000..9c58b9afd
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..c75e3e0b7
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png
new file mode 100644
index 000000000..9b241b603
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..7c227907a
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png
new file mode 100644
index 000000000..c9bef326d
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..66055fa27
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..b97a1bd2e
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..cb240876a
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..9d49a4ede
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..2692be602
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..ee1f3a046
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png
new file mode 100644
index 000000000..9432d22d4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png
new file mode 100644
index 000000000..333dbabc0
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..092a88818
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png
new file mode 100644
index 000000000..e8e6c2961
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..32754ea08
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png
new file mode 100644
index 000000000..be379e7e2
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..9e6182bb7
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..b19b72624
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..cf01c0faa
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png
new file mode 100644
index 000000000..1cb7e1891
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..19bca9489
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png
new file mode 100644
index 000000000..c30c4dd9b
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..d8fc03389
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png
new file mode 100644
index 000000000..572292e8f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..73a97fbf9
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..4bba353c2
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..95584d084
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..53afb5597
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..21bead54f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..b73903865
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png
new file mode 100644
index 000000000..d4457bd8f
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png
new file mode 100644
index 000000000..b25619ccf
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..92492c391
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png
new file mode 100644
index 000000000..d2cea43b4
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..0c865eaea
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png
new file mode 100644
index 000000000..507e2d426
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..e8c1b71d3
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..6c48b7601
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..5b4d833d3
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png
new file mode 100644
index 000000000..b341c0e16
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..d28fbe4b5
Binary files /dev/null and b/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/angle.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/angle.xml
new file mode 100644
index 000000000..4709b71b3
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/angle.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml
new file mode 100644
index 000000000..38fbc261b
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_camera_green.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_camera_green.xml
new file mode 100644
index 000000000..f168c5131
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_camera_green.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_done_all_24dp.xml
new file mode 100644
index 000000000..07de58256
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_done_all_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_find_in_page.xml
new file mode 100644
index 000000000..d2ac3ac62
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_find_in_page.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_flash_on_24dp.xml
new file mode 100644
index 000000000..a3c81cc38
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_flash_on_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml
new file mode 100644
index 000000000..0234f6551
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_launcher_background.xml
new file mode 100644
index 000000000..d5fccc538
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_menu_tag.xml
new file mode 100644
index 000000000..0fc39f435
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_menu_tag.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_monochrome.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_monochrome.xml
new file mode 100644
index 000000000..b7abf9780
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_monochrome.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_palette.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_palette.xml
new file mode 100644
index 000000000..c0bccf28f
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_palette.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
new file mode 100644
index 000000000..1de4266fb
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_settings.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_settings.xml
new file mode 100644
index 000000000..ca2916e55
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_settings.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_bell.xml
new file mode 100644
index 000000000..4e8870e8e
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_bell.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_game.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_game.xml
new file mode 100644
index 000000000..4a8c8fc8d
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_game.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_gift.xml
new file mode 100644
index 000000000..9267e7036
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_gift.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_magnet.xml
new file mode 100644
index 000000000..32c78e9c4
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_magnet.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_rocket.xml
new file mode 100644
index 000000000..6acc86aec
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_rocket.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_star.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_star.xml
new file mode 100644
index 000000000..692f1fd53
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_star.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_tv.xml
new file mode 100644
index 000000000..13a82b0a1
--- /dev/null
+++ b/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_tv.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/angle.png b/android/build/generated/res/pngs/release/drawable-hdpi/angle.png
new file mode 100644
index 000000000..b897052d8
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..c87d18f3b
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_camera_green.png
new file mode 100644
index 000000000..955174e6f
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..0dc7956a6
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_find_in_page.png
new file mode 100644
index 000000000..7158eff43
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..1c0746fc9
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d7d992571
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_launcher_background.png
new file mode 100644
index 000000000..363b6a9e0
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_menu_tag.png
new file mode 100644
index 000000000..3618c97e4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_monochrome.png
new file mode 100644
index 000000000..7db0d7390
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_palette.png
new file mode 100644
index 000000000..b85356fb4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..4bfda5809
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_settings.png
new file mode 100644
index 000000000..bd3008e25
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_bell.png
new file mode 100644
index 000000000..49ffd9736
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_game.png
new file mode 100644
index 000000000..69a057099
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_gift.png
new file mode 100644
index 000000000..6e11ad223
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..99bbe4776
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..48b8460e7
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_star.png
new file mode 100644
index 000000000..4df985450
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_tv.png
new file mode 100644
index 000000000..c02e65369
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/angle.png b/android/build/generated/res/pngs/release/drawable-ldpi/angle.png
new file mode 100644
index 000000000..bcdbdc4b7
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..e9e66b88a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_camera_green.png
new file mode 100644
index 000000000..c496a12d3
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..1baf0e9e3
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_find_in_page.png
new file mode 100644
index 000000000..dc206e2c6
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..8ac870d9a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..dccf26c80
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_launcher_background.png
new file mode 100644
index 000000000..43cfb67a1
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_menu_tag.png
new file mode 100644
index 000000000..80028e2e1
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_monochrome.png
new file mode 100644
index 000000000..d1a72653f
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_palette.png
new file mode 100644
index 000000000..3786b0fe3
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..f5a5b19e5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_settings.png
new file mode 100644
index 000000000..382e400b8
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_bell.png
new file mode 100644
index 000000000..23fa57500
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_game.png
new file mode 100644
index 000000000..7c4872047
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_gift.png
new file mode 100644
index 000000000..48b1a9f49
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_magnet.png
new file mode 100644
index 000000000..0dd6ecebe
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_rocket.png
new file mode 100644
index 000000000..55fe94ca5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_star.png
new file mode 100644
index 000000000..ae992b857
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_tv.png
new file mode 100644
index 000000000..6e7767fe5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/angle.png b/android/build/generated/res/pngs/release/drawable-mdpi/angle.png
new file mode 100644
index 000000000..9ef4eeed9
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..237988f09
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_camera_green.png
new file mode 100644
index 000000000..6c71e046a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..9e210b497
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_find_in_page.png
new file mode 100644
index 000000000..0360147dc
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..8a01d844a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..36b83fdbc
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_launcher_background.png
new file mode 100644
index 000000000..770f39302
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_menu_tag.png
new file mode 100644
index 000000000..bc069c86f
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_monochrome.png
new file mode 100644
index 000000000..bc69f01b8
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_palette.png
new file mode 100644
index 000000000..5f7a1f1bb
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..f77882fff
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_settings.png
new file mode 100644
index 000000000..3b2a1b336
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_bell.png
new file mode 100644
index 000000000..4bc57c5ce
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_game.png
new file mode 100644
index 000000000..8e5921407
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_gift.png
new file mode 100644
index 000000000..c2d4c4159
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..1212583e5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..37bfa831d
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_star.png
new file mode 100644
index 000000000..5e9eef985
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_tv.png
new file mode 100644
index 000000000..913dc8988
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/angle.png b/android/build/generated/res/pngs/release/drawable-xhdpi/angle.png
new file mode 100644
index 000000000..7a9ace843
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..ff8612755
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_camera_green.png
new file mode 100644
index 000000000..6a6611c0b
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..2014f7049
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..d8f23ecaf
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..f1f1013d2
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..4909a67fc
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..b6bd57460
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..2a160ad82
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_monochrome.png
new file mode 100644
index 000000000..e7a67cdcf
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_palette.png
new file mode 100644
index 000000000..b69894e0c
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..be3e00b72
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_settings.png
new file mode 100644
index 000000000..a454e25ba
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..125ba276e
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_game.png
new file mode 100644
index 000000000..bade4f67d
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..6134405b6
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..2bd3e7560
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..01c0dc5f5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_star.png
new file mode 100644
index 000000000..8761261db
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..b07facd4a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/angle.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/angle.png
new file mode 100644
index 000000000..5a894b742
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..fafb4fa2d
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_camera_green.png
new file mode 100644
index 000000000..1891e9368
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..fba240668
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..ed872e070
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..309acb79d
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d20911d50
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..feb609be3
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..4ba1e99c8
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_monochrome.png
new file mode 100644
index 000000000..715bef9d0
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_palette.png
new file mode 100644
index 000000000..7c269466e
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..cd031f1fe
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_settings.png
new file mode 100644
index 000000000..7900c0b83
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..485fe4f19
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_game.png
new file mode 100644
index 000000000..9f419aeb4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..70e6166c4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..637eb225d
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..a98d8040b
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_star.png
new file mode 100644
index 000000000..f749fe108
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..edf6cb904
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/angle.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/angle.png
new file mode 100644
index 000000000..56996a325
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/angle.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_arrow_back_24dp.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..bd11d94b0
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_arrow_back_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_camera_green.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_camera_green.png
new file mode 100644
index 000000000..1de8ac3d4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_camera_green.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_done_all_24dp.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_done_all_24dp.png
new file mode 100644
index 000000000..a051f280c
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_done_all_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_find_in_page.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_find_in_page.png
new file mode 100644
index 000000000..03007b147
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_find_in_page.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_flash_on_24dp.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_flash_on_24dp.png
new file mode 100644
index 000000000..c5ba1b179
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_flash_on_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_info_outline_white_24px.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d026b5532
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_info_outline_white_24px.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_launcher_background.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_launcher_background.png
new file mode 100644
index 000000000..a6fb2ec45
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_launcher_background.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_menu_tag.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_menu_tag.png
new file mode 100644
index 000000000..08e53e598
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_menu_tag.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_monochrome.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_monochrome.png
new file mode 100644
index 000000000..e8b0ace3a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_monochrome.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_palette.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_palette.png
new file mode 100644
index 000000000..e62c58ba4
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_palette.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_photo_filter_white_24dp.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..0142a4968
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_settings.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_settings.png
new file mode 100644
index 000000000..e5f1a46d3
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_settings.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_bell.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_bell.png
new file mode 100644
index 000000000..ab2751c6e
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_bell.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_game.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_game.png
new file mode 100644
index 000000000..c1fad34eb
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_game.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_gift.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_gift.png
new file mode 100644
index 000000000..b9911dcbc
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_gift.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_magnet.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_magnet.png
new file mode 100644
index 000000000..6ecebdefa
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_magnet.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_rocket.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_rocket.png
new file mode 100644
index 000000000..237ecf25a
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_rocket.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_star.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_star.png
new file mode 100644
index 000000000..b8dec44c5
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_star.png differ
diff --git a/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_tv.png b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_tv.png
new file mode 100644
index 000000000..0cb344daa
Binary files /dev/null and b/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_tv.png differ
diff --git a/android/build/generated/source/buildConfig/androidTest/debug/com/documentscanner/test/BuildConfig.java b/android/build/generated/source/buildConfig/androidTest/debug/com/documentscanner/test/BuildConfig.java
new file mode 100644
index 000000000..0ea02a717
--- /dev/null
+++ b/android/build/generated/source/buildConfig/androidTest/debug/com/documentscanner/test/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.documentscanner.test;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "com.documentscanner.test";
+ 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/android/build/generated/source/buildConfig/debug/com/documentscanner/BuildConfig.java b/android/build/generated/source/buildConfig/debug/com/documentscanner/BuildConfig.java
new file mode 100644
index 000000000..80e9842e0
--- /dev/null
+++ b/android/build/generated/source/buildConfig/debug/com/documentscanner/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.documentscanner;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "com.documentscanner";
+ 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/android/build/generated/source/buildConfig/release/com/documentscanner/BuildConfig.java b/android/build/generated/source/buildConfig/release/com/documentscanner/BuildConfig.java
new file mode 100644
index 000000000..e39dea861
--- /dev/null
+++ b/android/build/generated/source/buildConfig/release/com/documentscanner/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.documentscanner;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = false;
+ public static final String APPLICATION_ID = "com.documentscanner";
+ public static final String BUILD_TYPE = "release";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git a/android/build/generated/source/r/androidTest/debug/android/support/design/R.java b/android/build/generated/source/r/androidTest/debug/android/support/design/R.java
new file mode 100644
index 000000000..1d50719ef
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/android/support/design/R.java
@@ -0,0 +1,1592 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.design;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ public static final int design_bottom_sheet_slide_in = 0x7f05000c;
+ public static final int design_bottom_sheet_slide_out = 0x7f05000d;
+ public static final int design_fab_in = 0x7f05000e;
+ public static final int design_fab_out = 0x7f05000f;
+ public static final int design_snackbar_in = 0x7f050010;
+ public static final int design_snackbar_out = 0x7f050011;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01003e;
+ public static final int actionBarItemBackground = 0x7f01003f;
+ public static final int actionBarPopupTheme = 0x7f010038;
+ public static final int actionBarSize = 0x7f01003d;
+ public static final int actionBarSplitStyle = 0x7f01003a;
+ public static final int actionBarStyle = 0x7f010039;
+ public static final int actionBarTabBarStyle = 0x7f010034;
+ public static final int actionBarTabStyle = 0x7f010033;
+ public static final int actionBarTabTextStyle = 0x7f010035;
+ public static final int actionBarTheme = 0x7f01003b;
+ public static final int actionBarWidgetTheme = 0x7f01003c;
+ public static final int actionButtonStyle = 0x7f010058;
+ public static final int actionDropDownStyle = 0x7f010054;
+ public static final int actionLayout = 0x7f0100e2;
+ public static final int actionMenuTextAppearance = 0x7f010040;
+ public static final int actionMenuTextColor = 0x7f010041;
+ public static final int actionModeBackground = 0x7f010044;
+ public static final int actionModeCloseButtonStyle = 0x7f010043;
+ public static final int actionModeCloseDrawable = 0x7f010046;
+ public static final int actionModeCopyDrawable = 0x7f010048;
+ public static final int actionModeCutDrawable = 0x7f010047;
+ public static final int actionModeFindDrawable = 0x7f01004c;
+ public static final int actionModePasteDrawable = 0x7f010049;
+ public static final int actionModePopupWindowStyle = 0x7f01004e;
+ public static final int actionModeSelectAllDrawable = 0x7f01004a;
+ public static final int actionModeShareDrawable = 0x7f01004b;
+ public static final int actionModeSplitBackground = 0x7f010045;
+ public static final int actionModeStyle = 0x7f010042;
+ public static final int actionModeWebSearchDrawable = 0x7f01004d;
+ public static final int actionOverflowButtonStyle = 0x7f010036;
+ public static final int actionOverflowMenuStyle = 0x7f010037;
+ public static final int actionProviderClass = 0x7f0100e4;
+ public static final int actionViewClass = 0x7f0100e3;
+ public static final int activityChooserViewStyle = 0x7f010060;
+ public static final int alertDialogButtonGroupStyle = 0x7f010083;
+ public static final int alertDialogCenterButtons = 0x7f010084;
+ public static final int alertDialogStyle = 0x7f010082;
+ public static final int alertDialogTheme = 0x7f010085;
+ public static final int allowStacking = 0x7f01009b;
+ public static final int arrowHeadLength = 0x7f0100bc;
+ public static final int arrowShaftLength = 0x7f0100bd;
+ public static final int autoCompleteTextViewStyle = 0x7f01008a;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f010134;
+ public static final int backgroundTintMode = 0x7f010135;
+ public static final int barLength = 0x7f0100be;
+ public static final int behavior_hideable = 0x7f010098;
+ public static final int behavior_overlapTop = 0x7f0100f3;
+ public static final int behavior_peekHeight = 0x7f010097;
+ public static final int borderWidth = 0x7f0100c3;
+ public static final int borderlessButtonStyle = 0x7f01005d;
+ public static final int bottomSheetDialogTheme = 0x7f0100b5;
+ public static final int bottomSheetStyle = 0x7f0100b6;
+ public static final int buttonBarButtonStyle = 0x7f01005a;
+ public static final int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static final int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static final int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static final int buttonBarStyle = 0x7f010059;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f01008b;
+ public static final int buttonStyleSmall = 0x7f01008c;
+ public static final int buttonTint = 0x7f0100ad;
+ public static final int buttonTintMode = 0x7f0100ae;
+ public static final int checkboxStyle = 0x7f01008d;
+ public static final int checkedTextViewStyle = 0x7f01008e;
+ public static final int closeIcon = 0x7f0100f8;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f01012b;
+ public static final int collapseIcon = 0x7f01012a;
+ public static final int collapsedTitleGravity = 0x7f0100aa;
+ public static final int collapsedTitleTextAppearance = 0x7f0100a6;
+ public static final int color = 0x7f0100b8;
+ public static final int colorAccent = 0x7f01007b;
+ public static final int colorButtonNormal = 0x7f01007f;
+ public static final int colorControlActivated = 0x7f01007d;
+ public static final int colorControlHighlight = 0x7f01007e;
+ public static final int colorControlNormal = 0x7f01007c;
+ public static final int colorPrimary = 0x7f010079;
+ public static final int colorPrimaryDark = 0x7f01007a;
+ public static final int colorSwitchThumbNormal = 0x7f010080;
+ public static final int commitIcon = 0x7f0100fd;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int contentScrim = 0x7f0100a7;
+ public static final int controlBackground = 0x7f010081;
+ public static final int counterEnabled = 0x7f01011d;
+ public static final int counterMaxLength = 0x7f01011e;
+ public static final int counterOverflowTextAppearance = 0x7f010120;
+ public static final int counterTextAppearance = 0x7f01011f;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f0100f7;
+ public static final int dialogPreferredPadding = 0x7f010052;
+ public static final int dialogTheme = 0x7f010051;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01005f;
+ public static final int dividerPadding = 0x7f0100e0;
+ public static final int dividerVertical = 0x7f01005e;
+ public static final int drawableSize = 0x7f0100ba;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010071;
+ public static final int dropdownListPreferredItemHeight = 0x7f010055;
+ public static final int editTextBackground = 0x7f010066;
+ public static final int editTextColor = 0x7f010065;
+ public static final int editTextStyle = 0x7f01008f;
+ public static final int elevation = 0x7f01001a;
+ public static final int errorEnabled = 0x7f01011b;
+ public static final int errorTextAppearance = 0x7f01011c;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int expanded = 0x7f010024;
+ public static final int expandedTitleGravity = 0x7f0100ab;
+ public static final int expandedTitleMargin = 0x7f0100a0;
+ public static final int expandedTitleMarginBottom = 0x7f0100a4;
+ public static final int expandedTitleMarginEnd = 0x7f0100a3;
+ public static final int expandedTitleMarginStart = 0x7f0100a1;
+ public static final int expandedTitleMarginTop = 0x7f0100a2;
+ public static final int expandedTitleTextAppearance = 0x7f0100a5;
+ public static final int fabSize = 0x7f0100c1;
+ public static final int foregroundInsidePadding = 0x7f0100c5;
+ public static final int gapBetweenBars = 0x7f0100bb;
+ public static final int goIcon = 0x7f0100f9;
+ public static final int headerLayout = 0x7f0100eb;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int hintAnimationEnabled = 0x7f010121;
+ public static final int hintEnabled = 0x7f01011a;
+ public static final int hintTextAppearance = 0x7f010119;
+ public static final int homeAsUpIndicator = 0x7f010057;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f0100f5;
+ public static final int imageButtonStyle = 0x7f010067;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int insetForeground = 0x7f0100f2;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemBackground = 0x7f0100e9;
+ public static final int itemIconTint = 0x7f0100e7;
+ public static final int itemPadding = 0x7f010014;
+ public static final int itemTextAppearance = 0x7f0100ea;
+ public static final int itemTextColor = 0x7f0100e8;
+ public static final int keylines = 0x7f0100af;
+ public static final int layout = 0x7f0100f4;
+ public static final int layoutManager = 0x7f0100ee;
+ public static final int layout_anchor = 0x7f0100b2;
+ public static final int layout_anchorGravity = 0x7f0100b4;
+ public static final int layout_behavior = 0x7f0100b1;
+ public static final int layout_collapseMode = 0x7f01009e;
+ public static final int layout_collapseParallaxMultiplier = 0x7f01009f;
+ public static final int layout_keyline = 0x7f0100b3;
+ public static final int layout_scrollFlags = 0x7f010025;
+ public static final int layout_scrollInterpolator = 0x7f010026;
+ public static final int listChoiceBackgroundIndicator = 0x7f010078;
+ public static final int listDividerAlertDialog = 0x7f010053;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010072;
+ public static final int listPreferredItemHeight = 0x7f01006c;
+ public static final int listPreferredItemHeightLarge = 0x7f01006e;
+ public static final int listPreferredItemHeightSmall = 0x7f01006d;
+ public static final int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static final int listPreferredItemPaddingRight = 0x7f010070;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f01012e;
+ public static final int maxActionInlineWidth = 0x7f010101;
+ public static final int maxButtonHeight = 0x7f010129;
+ public static final int measureWithLargestChild = 0x7f0100de;
+ public static final int menu = 0x7f0100e6;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f01012d;
+ public static final int navigationIcon = 0x7f01012c;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f0100ec;
+ public static final int paddingEnd = 0x7f010132;
+ public static final int paddingStart = 0x7f010131;
+ public static final int panelBackground = 0x7f010075;
+ public static final int panelMenuListTheme = 0x7f010077;
+ public static final int panelMenuListWidth = 0x7f010076;
+ public static final int popupMenuStyle = 0x7f010063;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f010064;
+ public static final int preserveIconSpacing = 0x7f0100e5;
+ public static final int pressedTranslationZ = 0x7f0100c2;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f0100ff;
+ public static final int queryHint = 0x7f0100f6;
+ public static final int radioButtonStyle = 0x7f010090;
+ public static final int ratingBarStyle = 0x7f010091;
+ public static final int ratingBarStyleIndicator = 0x7f010092;
+ public static final int ratingBarStyleSmall = 0x7f010093;
+ public static final int reverseLayout = 0x7f0100f0;
+ public static final int rippleColor = 0x7f0100c0;
+ public static final int searchHintIcon = 0x7f0100fb;
+ public static final int searchIcon = 0x7f0100fa;
+ public static final int searchViewStyle = 0x7f01006b;
+ public static final int seekBarStyle = 0x7f010094;
+ public static final int selectableItemBackground = 0x7f01005b;
+ public static final int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static final int showAsAction = 0x7f0100e1;
+ public static final int showDividers = 0x7f0100df;
+ public static final int showText = 0x7f010108;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spanCount = 0x7f0100ef;
+ public static final int spinBars = 0x7f0100b9;
+ public static final int spinnerDropDownItemStyle = 0x7f010056;
+ public static final int spinnerStyle = 0x7f010095;
+ public static final int splitTrack = 0x7f010107;
+ public static final int srcCompat = 0x7f010027;
+ public static final int stackFromEnd = 0x7f0100f1;
+ public static final int state_above_anchor = 0x7f0100ed;
+ public static final int statusBarBackground = 0x7f0100b0;
+ public static final int statusBarScrim = 0x7f0100a8;
+ public static final int submitBackground = 0x7f010100;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f010123;
+ public static final int subtitleTextColor = 0x7f010130;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f0100fe;
+ public static final int switchMinWidth = 0x7f010105;
+ public static final int switchPadding = 0x7f010106;
+ public static final int switchStyle = 0x7f010096;
+ public static final int switchTextAppearance = 0x7f010104;
+ public static final int tabBackground = 0x7f01010c;
+ public static final int tabContentStart = 0x7f01010b;
+ public static final int tabGravity = 0x7f01010e;
+ public static final int tabIndicatorColor = 0x7f010109;
+ public static final int tabIndicatorHeight = 0x7f01010a;
+ public static final int tabMaxWidth = 0x7f010110;
+ public static final int tabMinWidth = 0x7f01010f;
+ public static final int tabMode = 0x7f01010d;
+ public static final int tabPadding = 0x7f010118;
+ public static final int tabPaddingBottom = 0x7f010117;
+ public static final int tabPaddingEnd = 0x7f010116;
+ public static final int tabPaddingStart = 0x7f010114;
+ public static final int tabPaddingTop = 0x7f010115;
+ public static final int tabSelectedTextColor = 0x7f010113;
+ public static final int tabTextAppearance = 0x7f010111;
+ public static final int tabTextColor = 0x7f010112;
+ public static final int textAllCaps = 0x7f010028;
+ public static final int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static final int textAppearanceListItem = 0x7f010073;
+ public static final int textAppearanceListItemSmall = 0x7f010074;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static final int textAppearanceSearchResultTitle = 0x7f010068;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static final int textColorAlertDialogListItem = 0x7f010086;
+ public static final int textColorError = 0x7f0100b7;
+ public static final int textColorSearchUrl = 0x7f01006a;
+ public static final int theme = 0x7f010133;
+ public static final int thickness = 0x7f0100bf;
+ public static final int thumbTextPadding = 0x7f010103;
+ public static final int title = 0x7f010003;
+ public static final int titleEnabled = 0x7f0100ac;
+ public static final int titleMarginBottom = 0x7f010128;
+ public static final int titleMarginEnd = 0x7f010126;
+ public static final int titleMarginStart = 0x7f010125;
+ public static final int titleMarginTop = 0x7f010127;
+ public static final int titleMargins = 0x7f010124;
+ public static final int titleTextAppearance = 0x7f010122;
+ public static final int titleTextColor = 0x7f01012f;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarId = 0x7f0100a9;
+ public static final int toolbarNavigationButtonStyle = 0x7f010062;
+ public static final int toolbarStyle = 0x7f010061;
+ public static final int track = 0x7f010102;
+ public static final int useCompatPadding = 0x7f0100c4;
+ public static final int voiceIcon = 0x7f0100fc;
+ public static final int windowActionBar = 0x7f010029;
+ public static final int windowActionBarOverlay = 0x7f01002b;
+ public static final int windowActionModeOverlay = 0x7f01002c;
+ public static final int windowFixedHeightMajor = 0x7f010030;
+ public static final int windowFixedHeightMinor = 0x7f01002e;
+ public static final int windowFixedWidthMajor = 0x7f01002d;
+ public static final int windowFixedWidthMinor = 0x7f01002f;
+ public static final int windowMinWidthMajor = 0x7f010031;
+ public static final int windowMinWidthMinor = 0x7f010032;
+ public static final int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static final int abc_allow_stacked_button_bar = 0x7f080000;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static final int abc_color_highlight_material = 0x7f0c004b;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static final int abc_primary_text_material_dark = 0x7f0c004e;
+ public static final int abc_primary_text_material_light = 0x7f0c004f;
+ public static final int abc_search_url_text = 0x7f0c0050;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static final int abc_secondary_text_material_light = 0x7f0c0052;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static final int bright_foreground_material_dark = 0x7f0c000f;
+ public static final int bright_foreground_material_light = 0x7f0c0010;
+ public static final int button_material_dark = 0x7f0c0011;
+ public static final int button_material_light = 0x7f0c0012;
+ public static final int design_fab_shadow_end_color = 0x7f0c0017;
+ public static final int design_fab_shadow_mid_color = 0x7f0c0018;
+ public static final int design_fab_shadow_start_color = 0x7f0c0019;
+ public static final int design_fab_stroke_end_inner_color = 0x7f0c001a;
+ public static final int design_fab_stroke_end_outer_color = 0x7f0c001b;
+ public static final int design_fab_stroke_top_inner_color = 0x7f0c001c;
+ public static final int design_fab_stroke_top_outer_color = 0x7f0c001d;
+ public static final int design_snackbar_background_color = 0x7f0c001e;
+ public static final int design_textinput_error_color_dark = 0x7f0c001f;
+ public static final int design_textinput_error_color_light = 0x7f0c0020;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static final int dim_foreground_material_dark = 0x7f0c0023;
+ public static final int dim_foreground_material_light = 0x7f0c0024;
+ public static final int foreground_material_dark = 0x7f0c0025;
+ public static final int foreground_material_light = 0x7f0c0026;
+ public static final int highlighted_text_material_dark = 0x7f0c0027;
+ public static final int highlighted_text_material_light = 0x7f0c0028;
+ public static final int hint_foreground_material_dark = 0x7f0c0029;
+ public static final int hint_foreground_material_light = 0x7f0c002a;
+ public static final int material_blue_grey_800 = 0x7f0c002b;
+ public static final int material_blue_grey_900 = 0x7f0c002c;
+ public static final int material_blue_grey_950 = 0x7f0c002d;
+ public static final int material_deep_teal_200 = 0x7f0c002e;
+ public static final int material_deep_teal_500 = 0x7f0c002f;
+ public static final int material_grey_100 = 0x7f0c0030;
+ public static final int material_grey_300 = 0x7f0c0031;
+ public static final int material_grey_50 = 0x7f0c0032;
+ public static final int material_grey_600 = 0x7f0c0033;
+ public static final int material_grey_800 = 0x7f0c0034;
+ public static final int material_grey_850 = 0x7f0c0035;
+ public static final int material_grey_900 = 0x7f0c0036;
+ public static final int primary_dark_material_dark = 0x7f0c0037;
+ public static final int primary_dark_material_light = 0x7f0c0038;
+ public static final int primary_material_dark = 0x7f0c0039;
+ public static final int primary_material_light = 0x7f0c003a;
+ public static final int primary_text_default_material_dark = 0x7f0c003b;
+ public static final int primary_text_default_material_light = 0x7f0c003c;
+ public static final int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static final int primary_text_disabled_material_light = 0x7f0c003e;
+ public static final int ripple_material_dark = 0x7f0c003f;
+ public static final int ripple_material_light = 0x7f0c0040;
+ public static final int secondary_text_default_material_dark = 0x7f0c0041;
+ public static final int secondary_text_default_material_light = 0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static final int switch_thumb_material_dark = 0x7f0c0053;
+ public static final int switch_thumb_material_light = 0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static final int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static final int abc_action_bar_default_height_material = 0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static final int abc_action_button_min_height_material = 0x7f090021;
+ public static final int abc_action_button_min_width_material = 0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static final int abc_button_inset_horizontal_material = 0x7f090024;
+ public static final int abc_button_inset_vertical_material = 0x7f090025;
+ public static final int abc_button_padding_horizontal_material = 0x7f090026;
+ public static final int abc_button_padding_vertical_material = 0x7f090027;
+ public static final int abc_config_prefDialogWidth = 0x7f090005;
+ public static final int abc_control_corner_material = 0x7f090028;
+ public static final int abc_control_inset_material = 0x7f090029;
+ public static final int abc_control_padding_material = 0x7f09002a;
+ public static final int abc_dialog_fixed_height_major = 0x7f090006;
+ public static final int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static final int abc_dialog_fixed_width_major = 0x7f090008;
+ public static final int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static final int abc_dialog_min_width_major = 0x7f09000a;
+ public static final int abc_dialog_min_width_minor = 0x7f09000b;
+ public static final int abc_dialog_padding_material = 0x7f09002c;
+ public static final int abc_dialog_padding_top_material = 0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static final int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static final int abc_dropdownitem_icon_width = 0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static final int abc_edit_text_inset_top_material = 0x7f090035;
+ public static final int abc_floating_window_z = 0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static final int abc_panel_menu_list_width = 0x7f090038;
+ public static final int abc_search_view_preferred_width = 0x7f090039;
+ public static final int abc_search_view_text_min_width = 0x7f09000c;
+ public static final int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static final int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static final int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static final int abc_switch_padding = 0x7f090018;
+ public static final int abc_text_size_body_1_material = 0x7f09003d;
+ public static final int abc_text_size_body_2_material = 0x7f09003e;
+ public static final int abc_text_size_button_material = 0x7f09003f;
+ public static final int abc_text_size_caption_material = 0x7f090040;
+ public static final int abc_text_size_display_1_material = 0x7f090041;
+ public static final int abc_text_size_display_2_material = 0x7f090042;
+ public static final int abc_text_size_display_3_material = 0x7f090043;
+ public static final int abc_text_size_display_4_material = 0x7f090044;
+ public static final int abc_text_size_headline_material = 0x7f090045;
+ public static final int abc_text_size_large_material = 0x7f090046;
+ public static final int abc_text_size_medium_material = 0x7f090047;
+ public static final int abc_text_size_menu_material = 0x7f090048;
+ public static final int abc_text_size_small_material = 0x7f090049;
+ public static final int abc_text_size_subhead_material = 0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static final int abc_text_size_title_material = 0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static final int design_appbar_elevation = 0x7f09004d;
+ public static final int design_bottom_sheet_modal_elevation = 0x7f09004e;
+ public static final int design_bottom_sheet_modal_peek_height = 0x7f09004f;
+ public static final int design_fab_border_width = 0x7f090050;
+ public static final int design_fab_elevation = 0x7f090051;
+ public static final int design_fab_image_size = 0x7f090052;
+ public static final int design_fab_size_mini = 0x7f090053;
+ public static final int design_fab_size_normal = 0x7f090054;
+ public static final int design_fab_translation_z_pressed = 0x7f090055;
+ public static final int design_navigation_elevation = 0x7f090056;
+ public static final int design_navigation_icon_padding = 0x7f090057;
+ public static final int design_navigation_icon_size = 0x7f090058;
+ public static final int design_navigation_max_width = 0x7f090010;
+ public static final int design_navigation_padding_bottom = 0x7f090059;
+ public static final int design_navigation_separator_vertical_padding = 0x7f09005a;
+ public static final int design_snackbar_action_inline_max_width = 0x7f090011;
+ public static final int design_snackbar_background_corner_radius = 0x7f090012;
+ public static final int design_snackbar_elevation = 0x7f09005b;
+ public static final int design_snackbar_extra_spacing_horizontal = 0x7f090013;
+ public static final int design_snackbar_max_width = 0x7f090014;
+ public static final int design_snackbar_min_width = 0x7f090015;
+ public static final int design_snackbar_padding_horizontal = 0x7f09005c;
+ public static final int design_snackbar_padding_vertical = 0x7f09005d;
+ public static final int design_snackbar_padding_vertical_2lines = 0x7f090016;
+ public static final int design_snackbar_text_size = 0x7f09005e;
+ public static final int design_tab_max_width = 0x7f09005f;
+ public static final int design_tab_scrollable_min_width = 0x7f090017;
+ public static final int design_tab_text_size = 0x7f090060;
+ public static final int design_tab_text_size_2line = 0x7f090061;
+ public static final int disabled_alpha_material_dark = 0x7f090062;
+ public static final int disabled_alpha_material_light = 0x7f090063;
+ public static final int highlight_alpha_material_colored = 0x7f090065;
+ public static final int highlight_alpha_material_dark = 0x7f090066;
+ public static final int highlight_alpha_material_light = 0x7f090067;
+ public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static final int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ public static final int notification_large_icon_height = 0x7f09006d;
+ public static final int notification_large_icon_width = 0x7f09006e;
+ public static final int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_star_black_16dp = 0x7f020021;
+ public static final int abc_ic_star_black_36dp = 0x7f020022;
+ public static final int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static final int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static final int abc_item_background_holo_dark = 0x7f020026;
+ public static final int abc_item_background_holo_light = 0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static final int abc_list_focused_holo = 0x7f020029;
+ public static final int abc_list_longpressed_holo = 0x7f02002a;
+ public static final int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static final int abc_list_pressed_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static final int abc_list_selector_holo_dark = 0x7f020031;
+ public static final int abc_list_selector_holo_light = 0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static final int abc_ratingbar_full_material = 0x7f020035;
+ public static final int abc_ratingbar_indicator_material = 0x7f020036;
+ public static final int abc_ratingbar_small_material = 0x7f020037;
+ public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static final int abc_seekbar_thumb_material = 0x7f02003d;
+ public static final int abc_seekbar_track_material = 0x7f02003e;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020040;
+ public static final int abc_switch_thumb_material = 0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static final int abc_tab_indicator_material = 0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static final int abc_text_cursor_material = 0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static final int abc_textfield_search_material = 0x7f02004a;
+ public static final int design_fab_background = 0x7f02004d;
+ public static final int design_snackbar_background = 0x7f02004e;
+ public static final int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d008a;
+ public static final int action_bar = 0x7f0d0064;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0063;
+ public static final int action_bar_root = 0x7f0d005f;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d0045;
+ public static final int action_bar_title = 0x7f0d0044;
+ public static final int action_context_bar = 0x7f0d0065;
+ public static final int action_divider = 0x7f0d008e;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0061;
+ public static final int action_mode_bar_stub = 0x7f0d0060;
+ public static final int action_mode_close_button = 0x7f0d0046;
+ public static final int activity_chooser_view_content = 0x7f0d0047;
+ public static final int alertTitle = 0x7f0d0053;
+ public static final int always = 0x7f0d003d;
+ public static final int beginning = 0x7f0d003b;
+ public static final int bottom = 0x7f0d0020;
+ public static final int buttonPanel = 0x7f0d004e;
+ public static final int cancel_action = 0x7f0d008b;
+ public static final int center = 0x7f0d0021;
+ public static final int center_horizontal = 0x7f0d0022;
+ public static final int center_vertical = 0x7f0d0023;
+ public static final int checkbox = 0x7f0d005c;
+ public static final int chronometer = 0x7f0d0091;
+ public static final int clip_horizontal = 0x7f0d002f;
+ public static final int clip_vertical = 0x7f0d0030;
+ public static final int collapseActionView = 0x7f0d003e;
+ public static final int contentPanel = 0x7f0d0054;
+ public static final int custom = 0x7f0d005a;
+ public static final int customPanel = 0x7f0d0059;
+ public static final int decor_content_parent = 0x7f0d0062;
+ public static final int default_activity_button = 0x7f0d004a;
+ public static final int design_bottom_sheet = 0x7f0d007e;
+ public static final int design_menu_item_action_area = 0x7f0d0085;
+ public static final int design_menu_item_action_area_stub = 0x7f0d0084;
+ public static final int design_menu_item_text = 0x7f0d0083;
+ public static final int design_navigation_view = 0x7f0d0082;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d0066;
+ public static final int end = 0x7f0d0024;
+ public static final int end_padder = 0x7f0d0096;
+ public static final int enterAlways = 0x7f0d0015;
+ public static final int enterAlwaysCollapsed = 0x7f0d0016;
+ public static final int exitUntilCollapsed = 0x7f0d0017;
+ public static final int expand_activities_button = 0x7f0d0048;
+ public static final int expanded_menu = 0x7f0d005b;
+ public static final int fill = 0x7f0d0031;
+ public static final int fill_horizontal = 0x7f0d0032;
+ public static final int fill_vertical = 0x7f0d0025;
+ public static final int fixed = 0x7f0d0042;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d004c;
+ public static final int ifRoom = 0x7f0d003f;
+ public static final int image = 0x7f0d0049;
+ public static final int info = 0x7f0d0095;
+ public static final int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static final int left = 0x7f0d0026;
+ public static final int line1 = 0x7f0d008f;
+ public static final int line3 = 0x7f0d0093;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d004b;
+ public static final int media_actions = 0x7f0d008d;
+ public static final int middle = 0x7f0d003c;
+ public static final int mini = 0x7f0d0033;
+ public static final int multiply = 0x7f0d002a;
+ public static final int navigation_header_container = 0x7f0d0081;
+ public static final int never = 0x7f0d0040;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parallax = 0x7f0d001e;
+ public static final int parentPanel = 0x7f0d0050;
+ public static final int pin = 0x7f0d001f;
+ public static final int progress_circular = 0x7f0d0006;
+ public static final int progress_horizontal = 0x7f0d0007;
+ public static final int radio = 0x7f0d005e;
+ public static final int right = 0x7f0d0027;
+ public static final int screen = 0x7f0d002b;
+ public static final int scroll = 0x7f0d0018;
+ public static final int scrollIndicatorDown = 0x7f0d0058;
+ public static final int scrollIndicatorUp = 0x7f0d0055;
+ public static final int scrollView = 0x7f0d0056;
+ public static final int scrollable = 0x7f0d0043;
+ public static final int search_badge = 0x7f0d0068;
+ public static final int search_bar = 0x7f0d0067;
+ public static final int search_button = 0x7f0d0069;
+ public static final int search_close_btn = 0x7f0d006e;
+ public static final int search_edit_frame = 0x7f0d006a;
+ public static final int search_go_btn = 0x7f0d0070;
+ public static final int search_mag_icon = 0x7f0d006b;
+ public static final int search_plate = 0x7f0d006c;
+ public static final int search_src_text = 0x7f0d006d;
+ public static final int search_voice_btn = 0x7f0d0071;
+ public static final int select_dialog_listview = 0x7f0d0072;
+ public static final int shortcut = 0x7f0d005d;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int snackbar_action = 0x7f0d0080;
+ public static final int snackbar_text = 0x7f0d007f;
+ public static final int snap = 0x7f0d0019;
+ public static final int spacer = 0x7f0d004f;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d002c;
+ public static final int src_in = 0x7f0d002d;
+ public static final int src_over = 0x7f0d002e;
+ public static final int start = 0x7f0d0028;
+ public static final int status_bar_latest_event_content = 0x7f0d008c;
+ public static final int submit_area = 0x7f0d006f;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0094;
+ public static final int text2 = 0x7f0d0092;
+ public static final int textSpacerNoButtons = 0x7f0d0057;
+ public static final int time = 0x7f0d0090;
+ public static final int title = 0x7f0d004d;
+ public static final int title_template = 0x7f0d0052;
+ public static final int top = 0x7f0d0029;
+ public static final int topPanel = 0x7f0d0051;
+ public static final int touch_outside = 0x7f0d007d;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int view_offset_helper = 0x7f0d000a;
+ public static final int withText = 0x7f0d0041;
+ public static final int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static final int abc_config_activityShortDur = 0x7f0b0003;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int bottom_sheet_slide_duration = 0x7f0b0004;
+ public static final int cancel_button_image_alpha = 0x7f0b0005;
+ public static final int design_snackbar_text_max_lines = 0x7f0b0001;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static final int abc_alert_dialog_material = 0x7f04000a;
+ public static final int abc_dialog_title_material = 0x7f04000b;
+ public static final int abc_expanded_menu_layout = 0x7f04000c;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static final int abc_list_menu_item_icon = 0x7f04000e;
+ public static final int abc_list_menu_item_layout = 0x7f04000f;
+ public static final int abc_list_menu_item_radio = 0x7f040010;
+ public static final int abc_popup_menu_item_layout = 0x7f040011;
+ public static final int abc_screen_content_include = 0x7f040012;
+ public static final int abc_screen_simple = 0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static final int abc_screen_toolbar = 0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static final int abc_search_view = 0x7f040017;
+ public static final int abc_select_dialog_material = 0x7f040018;
+ public static final int design_bottom_sheet_dialog = 0x7f04001f;
+ public static final int design_layout_snackbar = 0x7f040020;
+ public static final int design_layout_snackbar_include = 0x7f040021;
+ public static final int design_layout_tab_icon = 0x7f040022;
+ public static final int design_layout_tab_text = 0x7f040023;
+ public static final int design_menu_item_action_area = 0x7f040024;
+ public static final int design_navigation_item = 0x7f040025;
+ public static final int design_navigation_item_header = 0x7f040026;
+ public static final int design_navigation_item_separator = 0x7f040027;
+ public static final int design_navigation_item_subheader = 0x7f040028;
+ public static final int design_navigation_menu = 0x7f040029;
+ public static final int design_navigation_menu_item = 0x7f04002a;
+ public static final int notification_media_action = 0x7f04002e;
+ public static final int notification_media_cancel_action = 0x7f04002f;
+ public static final int notification_template_big_media = 0x7f040030;
+ public static final int notification_template_big_media_narrow = 0x7f040031;
+ public static final int notification_template_lines = 0x7f040032;
+ public static final int notification_template_media = 0x7f040033;
+ public static final int notification_template_part_chronometer = 0x7f040034;
+ public static final int notification_template_part_time = 0x7f040035;
+ public static final int select_dialog_item_material = 0x7f040039;
+ public static final int select_dialog_multichoice_material = 0x7f04003a;
+ public static final int select_dialog_singlechoice_material = 0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_capital_off = 0x7f070008;
+ public static final int abc_capital_on = 0x7f070009;
+ public static final int abc_search_hint = 0x7f07000a;
+ public static final int abc_searchview_description_clear = 0x7f07000b;
+ public static final int abc_searchview_description_query = 0x7f07000c;
+ public static final int abc_searchview_description_search = 0x7f07000d;
+ public static final int abc_searchview_description_submit = 0x7f07000e;
+ public static final int abc_searchview_description_voice = 0x7f07000f;
+ public static final int abc_shareactionprovider_share_with = 0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static final int abc_toolbar_collapse_description = 0x7f070012;
+ public static final int appbar_scrolling_view_behavior = 0x7f07005a;
+ public static final int bottom_sheet_behavior = 0x7f07005b;
+ public static final int character_counter_pattern = 0x7f070068;
+ public static final int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static final int Animation_Design_BottomSheetDialog = 0x7f0a008d;
+ public static final int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static final int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static final int Base_Theme_AppCompat = 0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static final int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static final int Base_Widget_Design_TabLayout = 0x7f0a00bd;
+ public static final int Platform_AppCompat = 0x7f0a0018;
+ public static final int Platform_AppCompat_Light = 0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static final int Platform_V11_AppCompat = 0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static final int Platform_V14_AppCompat = 0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static final int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0a00eb;
+ public static final int TextAppearance_Design_Counter = 0x7f0a00ec;
+ public static final int TextAppearance_Design_Counter_Overflow = 0x7f0a00ed;
+ public static final int TextAppearance_Design_Error = 0x7f0a00ee;
+ public static final int TextAppearance_Design_Hint = 0x7f0a00ef;
+ public static final int TextAppearance_Design_Snackbar_Message = 0x7f0a00f0;
+ public static final int TextAppearance_Design_Tab = 0x7f0a00f1;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static final int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static final int Theme_AppCompat = 0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static final int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static final int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static final int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static final int Theme_Design = 0x7f0a0106;
+ public static final int Theme_Design_BottomSheetDialog = 0x7f0a0107;
+ public static final int Theme_Design_Light = 0x7f0a0108;
+ public static final int Theme_Design_Light_BottomSheetDialog = 0x7f0a0109;
+ public static final int Theme_Design_Light_NoActionBar = 0x7f0a010a;
+ public static final int Theme_Design_NoActionBar = 0x7f0a010b;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static final int Widget_AppCompat_Button = 0x7f0a011e;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static final int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static final int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static final int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static final int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static final int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static final int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static final int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ public static final int Widget_Design_AppBarLayout = 0x7f0a0159;
+ public static final int Widget_Design_BottomSheet_Modal = 0x7f0a015a;
+ public static final int Widget_Design_CollapsingToolbar = 0x7f0a015b;
+ public static final int Widget_Design_CoordinatorLayout = 0x7f0a015c;
+ public static final int Widget_Design_FloatingActionButton = 0x7f0a015d;
+ public static final int Widget_Design_NavigationView = 0x7f0a015e;
+ public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f0a015f;
+ public static final int Widget_Design_Snackbar = 0x7f0a0160;
+ public static final int Widget_Design_TabLayout = 0x7f0a0001;
+ public static final int Widget_Design_TextInputLayout = 0x7f0a0161;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 };
+ public static final int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 };
+ public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ public static final int AppBarLayout_android_background = 0;
+ public static final int AppBarLayout_elevation = 1;
+ public static final int AppBarLayout_expanded = 2;
+ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static final int AppCompatImageView_android_src = 0;
+ public static final int AppCompatImageView_srcCompat = 1;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static final int AppCompatTheme_actionBarDivider = 23;
+ public static final int AppCompatTheme_actionBarItemBackground = 24;
+ public static final int AppCompatTheme_actionBarPopupTheme = 17;
+ public static final int AppCompatTheme_actionBarSize = 22;
+ public static final int AppCompatTheme_actionBarSplitStyle = 19;
+ public static final int AppCompatTheme_actionBarStyle = 18;
+ public static final int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static final int AppCompatTheme_actionBarTabStyle = 12;
+ public static final int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static final int AppCompatTheme_actionBarTheme = 20;
+ public static final int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static final int AppCompatTheme_actionButtonStyle = 49;
+ public static final int AppCompatTheme_actionDropDownStyle = 45;
+ public static final int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static final int AppCompatTheme_actionMenuTextColor = 26;
+ public static final int AppCompatTheme_actionModeBackground = 29;
+ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static final int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static final int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static final int AppCompatTheme_actionModeCutDrawable = 32;
+ public static final int AppCompatTheme_actionModeFindDrawable = 37;
+ public static final int AppCompatTheme_actionModePasteDrawable = 34;
+ public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static final int AppCompatTheme_actionModeShareDrawable = 36;
+ public static final int AppCompatTheme_actionModeSplitBackground = 30;
+ public static final int AppCompatTheme_actionModeStyle = 27;
+ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static final int AppCompatTheme_activityChooserViewStyle = 57;
+ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static final int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static final int AppCompatTheme_alertDialogStyle = 91;
+ public static final int AppCompatTheme_alertDialogTheme = 94;
+ public static final int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static final int AppCompatTheme_android_windowIsFloating = 0;
+ public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static final int AppCompatTheme_borderlessButtonStyle = 54;
+ public static final int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static final int AppCompatTheme_buttonBarStyle = 50;
+ public static final int AppCompatTheme_buttonStyle = 100;
+ public static final int AppCompatTheme_buttonStyleSmall = 101;
+ public static final int AppCompatTheme_checkboxStyle = 102;
+ public static final int AppCompatTheme_checkedTextViewStyle = 103;
+ public static final int AppCompatTheme_colorAccent = 84;
+ public static final int AppCompatTheme_colorButtonNormal = 88;
+ public static final int AppCompatTheme_colorControlActivated = 86;
+ public static final int AppCompatTheme_colorControlHighlight = 87;
+ public static final int AppCompatTheme_colorControlNormal = 85;
+ public static final int AppCompatTheme_colorPrimary = 82;
+ public static final int AppCompatTheme_colorPrimaryDark = 83;
+ public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static final int AppCompatTheme_controlBackground = 90;
+ public static final int AppCompatTheme_dialogPreferredPadding = 43;
+ public static final int AppCompatTheme_dialogTheme = 42;
+ public static final int AppCompatTheme_dividerHorizontal = 56;
+ public static final int AppCompatTheme_dividerVertical = 55;
+ public static final int AppCompatTheme_dropDownListViewStyle = 74;
+ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static final int AppCompatTheme_editTextBackground = 63;
+ public static final int AppCompatTheme_editTextColor = 62;
+ public static final int AppCompatTheme_editTextStyle = 104;
+ public static final int AppCompatTheme_homeAsUpIndicator = 48;
+ public static final int AppCompatTheme_imageButtonStyle = 64;
+ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static final int AppCompatTheme_listDividerAlertDialog = 44;
+ public static final int AppCompatTheme_listPopupWindowStyle = 75;
+ public static final int AppCompatTheme_listPreferredItemHeight = 69;
+ public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static final int AppCompatTheme_panelBackground = 78;
+ public static final int AppCompatTheme_panelMenuListTheme = 80;
+ public static final int AppCompatTheme_panelMenuListWidth = 79;
+ public static final int AppCompatTheme_popupMenuStyle = 60;
+ public static final int AppCompatTheme_popupWindowStyle = 61;
+ public static final int AppCompatTheme_radioButtonStyle = 105;
+ public static final int AppCompatTheme_ratingBarStyle = 106;
+ public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static final int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static final int AppCompatTheme_searchViewStyle = 68;
+ public static final int AppCompatTheme_seekBarStyle = 109;
+ public static final int AppCompatTheme_selectableItemBackground = 52;
+ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static final int AppCompatTheme_spinnerStyle = 110;
+ public static final int AppCompatTheme_switchStyle = 111;
+ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static final int AppCompatTheme_textAppearanceListItem = 76;
+ public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static final int AppCompatTheme_textColorSearchUrl = 67;
+ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static final int AppCompatTheme_toolbarStyle = 58;
+ public static final int AppCompatTheme_windowActionBar = 2;
+ public static final int AppCompatTheme_windowActionBarOverlay = 4;
+ public static final int AppCompatTheme_windowActionModeOverlay = 5;
+ public static final int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static final int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static final int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static final int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static final int AppCompatTheme_windowMinWidthMajor = 10;
+ public static final int AppCompatTheme_windowMinWidthMinor = 11;
+ public static final int AppCompatTheme_windowNoTitle = 3;
+ public static final int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 };
+ public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
+ public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ public static final int[] ButtonBarLayout = { 0x7f01009b };
+ public static final int ButtonBarLayout_allowStacking = 0;
+ public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009e, 0x7f01009f };
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ public static final int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac };
+ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ public static final int CollapsingToolbarLayout_contentScrim = 8;
+ public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ public static final int CollapsingToolbarLayout_statusBarScrim = 9;
+ public static final int CollapsingToolbarLayout_title = 0;
+ public static final int CollapsingToolbarLayout_titleEnabled = 13;
+ public static final int CollapsingToolbarLayout_toolbarId = 10;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] CoordinatorLayout = { 0x7f0100af, 0x7f0100b0 };
+ public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 };
+ public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ public static final int CoordinatorLayout_keylines = 0;
+ public static final int CoordinatorLayout_statusBarBackground = 1;
+ public static final int[] DesignTheme = { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 };
+ public static final int DesignTheme_bottomSheetDialogTheme = 0;
+ public static final int DesignTheme_bottomSheetStyle = 1;
+ public static final int DesignTheme_textColorError = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] FloatingActionButton = { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 };
+ public static final int FloatingActionButton_backgroundTint = 6;
+ public static final int FloatingActionButton_backgroundTintMode = 7;
+ public static final int FloatingActionButton_borderWidth = 4;
+ public static final int FloatingActionButton_elevation = 0;
+ public static final int FloatingActionButton_fabSize = 2;
+ public static final int FloatingActionButton_pressedTranslationZ = 3;
+ public static final int FloatingActionButton_rippleColor = 1;
+ public static final int FloatingActionButton_useCompatPadding = 5;
+ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c5 };
+ public static final int ForegroundLinearLayout_android_foreground = 0;
+ public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
+ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb };
+ public static final int NavigationView_android_background = 0;
+ public static final int NavigationView_android_fitsSystemWindows = 1;
+ public static final int NavigationView_android_maxWidth = 2;
+ public static final int NavigationView_elevation = 3;
+ public static final int NavigationView_headerLayout = 9;
+ public static final int NavigationView_itemBackground = 7;
+ public static final int NavigationView_itemIconTint = 5;
+ public static final int NavigationView_itemTextAppearance = 8;
+ public static final int NavigationView_itemTextColor = 6;
+ public static final int NavigationView_menu = 4;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static final int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static final int RecyclerView_android_orientation = 0;
+ public static final int RecyclerView_layoutManager = 1;
+ public static final int RecyclerView_reverseLayout = 3;
+ public static final int RecyclerView_spanCount = 2;
+ public static final int RecyclerView_stackFromEnd = 4;
+ public static final int[] ScrimInsetsFrameLayout = { 0x7f0100f2 };
+ public static final int ScrimInsetsFrameLayout_insetForeground = 0;
+ public static final int[] ScrollingViewBehavior_Params = { 0x7f0100f3 };
+ public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f010101 };
+ public static final int SnackbarLayout_android_maxWidth = 0;
+ public static final int SnackbarLayout_elevation = 1;
+ public static final int SnackbarLayout_maxActionInlineWidth = 2;
+ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 3;
+ public static final int Spinner_android_entries = 0;
+ public static final int Spinner_android_popupBackground = 1;
+ public static final int Spinner_android_prompt = 2;
+ public static final int Spinner_popupTheme = 4;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f };
+ public static final int TabItem_android_icon = 0;
+ public static final int TabItem_android_layout = 1;
+ public static final int TabItem_android_text = 2;
+ public static final int[] TabLayout = { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 };
+ public static final int TabLayout_tabBackground = 3;
+ public static final int TabLayout_tabContentStart = 2;
+ public static final int TabLayout_tabGravity = 5;
+ public static final int TabLayout_tabIndicatorColor = 0;
+ public static final int TabLayout_tabIndicatorHeight = 1;
+ public static final int TabLayout_tabMaxWidth = 7;
+ public static final int TabLayout_tabMinWidth = 6;
+ public static final int TabLayout_tabMode = 4;
+ public static final int TabLayout_tabPadding = 15;
+ public static final int TabLayout_tabPaddingBottom = 14;
+ public static final int TabLayout_tabPaddingEnd = 13;
+ public static final int TabLayout_tabPaddingStart = 11;
+ public static final int TabLayout_tabPaddingTop = 12;
+ public static final int TabLayout_tabSelectedTextColor = 10;
+ public static final int TabLayout_tabTextAppearance = 8;
+ public static final int TabLayout_tabTextColor = 9;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 };
+ public static final int TextInputLayout_android_hint = 1;
+ public static final int TextInputLayout_android_textColorHint = 0;
+ public static final int TextInputLayout_counterEnabled = 6;
+ public static final int TextInputLayout_counterMaxLength = 7;
+ public static final int TextInputLayout_counterOverflowTextAppearance = 9;
+ public static final int TextInputLayout_counterTextAppearance = 8;
+ public static final int TextInputLayout_errorEnabled = 4;
+ public static final int TextInputLayout_errorTextAppearance = 5;
+ public static final int TextInputLayout_hintAnimationEnabled = 10;
+ public static final int TextInputLayout_hintEnabled = 3;
+ public static final int TextInputLayout_hintTextAppearance = 2;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/android/support/v7/appcompat/R.java b/android/build/generated/source/r/androidTest/debug/android/support/v7/appcompat/R.java
new file mode 100644
index 000000000..21d47ee8d
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/android/support/v7/appcompat/R.java
@@ -0,0 +1,1281 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01003e;
+ public static final int actionBarItemBackground = 0x7f01003f;
+ public static final int actionBarPopupTheme = 0x7f010038;
+ public static final int actionBarSize = 0x7f01003d;
+ public static final int actionBarSplitStyle = 0x7f01003a;
+ public static final int actionBarStyle = 0x7f010039;
+ public static final int actionBarTabBarStyle = 0x7f010034;
+ public static final int actionBarTabStyle = 0x7f010033;
+ public static final int actionBarTabTextStyle = 0x7f010035;
+ public static final int actionBarTheme = 0x7f01003b;
+ public static final int actionBarWidgetTheme = 0x7f01003c;
+ public static final int actionButtonStyle = 0x7f010058;
+ public static final int actionDropDownStyle = 0x7f010054;
+ public static final int actionLayout = 0x7f0100e2;
+ public static final int actionMenuTextAppearance = 0x7f010040;
+ public static final int actionMenuTextColor = 0x7f010041;
+ public static final int actionModeBackground = 0x7f010044;
+ public static final int actionModeCloseButtonStyle = 0x7f010043;
+ public static final int actionModeCloseDrawable = 0x7f010046;
+ public static final int actionModeCopyDrawable = 0x7f010048;
+ public static final int actionModeCutDrawable = 0x7f010047;
+ public static final int actionModeFindDrawable = 0x7f01004c;
+ public static final int actionModePasteDrawable = 0x7f010049;
+ public static final int actionModePopupWindowStyle = 0x7f01004e;
+ public static final int actionModeSelectAllDrawable = 0x7f01004a;
+ public static final int actionModeShareDrawable = 0x7f01004b;
+ public static final int actionModeSplitBackground = 0x7f010045;
+ public static final int actionModeStyle = 0x7f010042;
+ public static final int actionModeWebSearchDrawable = 0x7f01004d;
+ public static final int actionOverflowButtonStyle = 0x7f010036;
+ public static final int actionOverflowMenuStyle = 0x7f010037;
+ public static final int actionProviderClass = 0x7f0100e4;
+ public static final int actionViewClass = 0x7f0100e3;
+ public static final int activityChooserViewStyle = 0x7f010060;
+ public static final int alertDialogButtonGroupStyle = 0x7f010083;
+ public static final int alertDialogCenterButtons = 0x7f010084;
+ public static final int alertDialogStyle = 0x7f010082;
+ public static final int alertDialogTheme = 0x7f010085;
+ public static final int allowStacking = 0x7f01009b;
+ public static final int arrowHeadLength = 0x7f0100bc;
+ public static final int arrowShaftLength = 0x7f0100bd;
+ public static final int autoCompleteTextViewStyle = 0x7f01008a;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f010134;
+ public static final int backgroundTintMode = 0x7f010135;
+ public static final int barLength = 0x7f0100be;
+ public static final int borderlessButtonStyle = 0x7f01005d;
+ public static final int buttonBarButtonStyle = 0x7f01005a;
+ public static final int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static final int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static final int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static final int buttonBarStyle = 0x7f010059;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f01008b;
+ public static final int buttonStyleSmall = 0x7f01008c;
+ public static final int buttonTint = 0x7f0100ad;
+ public static final int buttonTintMode = 0x7f0100ae;
+ public static final int checkboxStyle = 0x7f01008d;
+ public static final int checkedTextViewStyle = 0x7f01008e;
+ public static final int closeIcon = 0x7f0100f8;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f01012b;
+ public static final int collapseIcon = 0x7f01012a;
+ public static final int color = 0x7f0100b8;
+ public static final int colorAccent = 0x7f01007b;
+ public static final int colorButtonNormal = 0x7f01007f;
+ public static final int colorControlActivated = 0x7f01007d;
+ public static final int colorControlHighlight = 0x7f01007e;
+ public static final int colorControlNormal = 0x7f01007c;
+ public static final int colorPrimary = 0x7f010079;
+ public static final int colorPrimaryDark = 0x7f01007a;
+ public static final int colorSwitchThumbNormal = 0x7f010080;
+ public static final int commitIcon = 0x7f0100fd;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int controlBackground = 0x7f010081;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f0100f7;
+ public static final int dialogPreferredPadding = 0x7f010052;
+ public static final int dialogTheme = 0x7f010051;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01005f;
+ public static final int dividerPadding = 0x7f0100e0;
+ public static final int dividerVertical = 0x7f01005e;
+ public static final int drawableSize = 0x7f0100ba;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010071;
+ public static final int dropdownListPreferredItemHeight = 0x7f010055;
+ public static final int editTextBackground = 0x7f010066;
+ public static final int editTextColor = 0x7f010065;
+ public static final int editTextStyle = 0x7f01008f;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int gapBetweenBars = 0x7f0100bb;
+ public static final int goIcon = 0x7f0100f9;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f010057;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f0100f5;
+ public static final int imageButtonStyle = 0x7f010067;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f0100f4;
+ public static final int listChoiceBackgroundIndicator = 0x7f010078;
+ public static final int listDividerAlertDialog = 0x7f010053;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010072;
+ public static final int listPreferredItemHeight = 0x7f01006c;
+ public static final int listPreferredItemHeightLarge = 0x7f01006e;
+ public static final int listPreferredItemHeightSmall = 0x7f01006d;
+ public static final int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static final int listPreferredItemPaddingRight = 0x7f010070;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f01012e;
+ public static final int maxButtonHeight = 0x7f010129;
+ public static final int measureWithLargestChild = 0x7f0100de;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f01012d;
+ public static final int navigationIcon = 0x7f01012c;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f0100ec;
+ public static final int paddingEnd = 0x7f010132;
+ public static final int paddingStart = 0x7f010131;
+ public static final int panelBackground = 0x7f010075;
+ public static final int panelMenuListTheme = 0x7f010077;
+ public static final int panelMenuListWidth = 0x7f010076;
+ public static final int popupMenuStyle = 0x7f010063;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f010064;
+ public static final int preserveIconSpacing = 0x7f0100e5;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f0100ff;
+ public static final int queryHint = 0x7f0100f6;
+ public static final int radioButtonStyle = 0x7f010090;
+ public static final int ratingBarStyle = 0x7f010091;
+ public static final int ratingBarStyleIndicator = 0x7f010092;
+ public static final int ratingBarStyleSmall = 0x7f010093;
+ public static final int searchHintIcon = 0x7f0100fb;
+ public static final int searchIcon = 0x7f0100fa;
+ public static final int searchViewStyle = 0x7f01006b;
+ public static final int seekBarStyle = 0x7f010094;
+ public static final int selectableItemBackground = 0x7f01005b;
+ public static final int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static final int showAsAction = 0x7f0100e1;
+ public static final int showDividers = 0x7f0100df;
+ public static final int showText = 0x7f010108;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spinBars = 0x7f0100b9;
+ public static final int spinnerDropDownItemStyle = 0x7f010056;
+ public static final int spinnerStyle = 0x7f010095;
+ public static final int splitTrack = 0x7f010107;
+ public static final int srcCompat = 0x7f010027;
+ public static final int state_above_anchor = 0x7f0100ed;
+ public static final int submitBackground = 0x7f010100;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f010123;
+ public static final int subtitleTextColor = 0x7f010130;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f0100fe;
+ public static final int switchMinWidth = 0x7f010105;
+ public static final int switchPadding = 0x7f010106;
+ public static final int switchStyle = 0x7f010096;
+ public static final int switchTextAppearance = 0x7f010104;
+ public static final int textAllCaps = 0x7f010028;
+ public static final int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static final int textAppearanceListItem = 0x7f010073;
+ public static final int textAppearanceListItemSmall = 0x7f010074;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static final int textAppearanceSearchResultTitle = 0x7f010068;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static final int textColorAlertDialogListItem = 0x7f010086;
+ public static final int textColorSearchUrl = 0x7f01006a;
+ public static final int theme = 0x7f010133;
+ public static final int thickness = 0x7f0100bf;
+ public static final int thumbTextPadding = 0x7f010103;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f010128;
+ public static final int titleMarginEnd = 0x7f010126;
+ public static final int titleMarginStart = 0x7f010125;
+ public static final int titleMarginTop = 0x7f010127;
+ public static final int titleMargins = 0x7f010124;
+ public static final int titleTextAppearance = 0x7f010122;
+ public static final int titleTextColor = 0x7f01012f;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f010062;
+ public static final int toolbarStyle = 0x7f010061;
+ public static final int track = 0x7f010102;
+ public static final int voiceIcon = 0x7f0100fc;
+ public static final int windowActionBar = 0x7f010029;
+ public static final int windowActionBarOverlay = 0x7f01002b;
+ public static final int windowActionModeOverlay = 0x7f01002c;
+ public static final int windowFixedHeightMajor = 0x7f010030;
+ public static final int windowFixedHeightMinor = 0x7f01002e;
+ public static final int windowFixedWidthMajor = 0x7f01002d;
+ public static final int windowFixedWidthMinor = 0x7f01002f;
+ public static final int windowMinWidthMajor = 0x7f010031;
+ public static final int windowMinWidthMinor = 0x7f010032;
+ public static final int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static final int abc_allow_stacked_button_bar = 0x7f080000;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static final int abc_color_highlight_material = 0x7f0c004b;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static final int abc_primary_text_material_dark = 0x7f0c004e;
+ public static final int abc_primary_text_material_light = 0x7f0c004f;
+ public static final int abc_search_url_text = 0x7f0c0050;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static final int abc_secondary_text_material_light = 0x7f0c0052;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static final int bright_foreground_material_dark = 0x7f0c000f;
+ public static final int bright_foreground_material_light = 0x7f0c0010;
+ public static final int button_material_dark = 0x7f0c0011;
+ public static final int button_material_light = 0x7f0c0012;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static final int dim_foreground_material_dark = 0x7f0c0023;
+ public static final int dim_foreground_material_light = 0x7f0c0024;
+ public static final int foreground_material_dark = 0x7f0c0025;
+ public static final int foreground_material_light = 0x7f0c0026;
+ public static final int highlighted_text_material_dark = 0x7f0c0027;
+ public static final int highlighted_text_material_light = 0x7f0c0028;
+ public static final int hint_foreground_material_dark = 0x7f0c0029;
+ public static final int hint_foreground_material_light = 0x7f0c002a;
+ public static final int material_blue_grey_800 = 0x7f0c002b;
+ public static final int material_blue_grey_900 = 0x7f0c002c;
+ public static final int material_blue_grey_950 = 0x7f0c002d;
+ public static final int material_deep_teal_200 = 0x7f0c002e;
+ public static final int material_deep_teal_500 = 0x7f0c002f;
+ public static final int material_grey_100 = 0x7f0c0030;
+ public static final int material_grey_300 = 0x7f0c0031;
+ public static final int material_grey_50 = 0x7f0c0032;
+ public static final int material_grey_600 = 0x7f0c0033;
+ public static final int material_grey_800 = 0x7f0c0034;
+ public static final int material_grey_850 = 0x7f0c0035;
+ public static final int material_grey_900 = 0x7f0c0036;
+ public static final int primary_dark_material_dark = 0x7f0c0037;
+ public static final int primary_dark_material_light = 0x7f0c0038;
+ public static final int primary_material_dark = 0x7f0c0039;
+ public static final int primary_material_light = 0x7f0c003a;
+ public static final int primary_text_default_material_dark = 0x7f0c003b;
+ public static final int primary_text_default_material_light = 0x7f0c003c;
+ public static final int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static final int primary_text_disabled_material_light = 0x7f0c003e;
+ public static final int ripple_material_dark = 0x7f0c003f;
+ public static final int ripple_material_light = 0x7f0c0040;
+ public static final int secondary_text_default_material_dark = 0x7f0c0041;
+ public static final int secondary_text_default_material_light = 0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static final int switch_thumb_material_dark = 0x7f0c0053;
+ public static final int switch_thumb_material_light = 0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static final int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static final int abc_action_bar_default_height_material = 0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static final int abc_action_button_min_height_material = 0x7f090021;
+ public static final int abc_action_button_min_width_material = 0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static final int abc_button_inset_horizontal_material = 0x7f090024;
+ public static final int abc_button_inset_vertical_material = 0x7f090025;
+ public static final int abc_button_padding_horizontal_material = 0x7f090026;
+ public static final int abc_button_padding_vertical_material = 0x7f090027;
+ public static final int abc_config_prefDialogWidth = 0x7f090005;
+ public static final int abc_control_corner_material = 0x7f090028;
+ public static final int abc_control_inset_material = 0x7f090029;
+ public static final int abc_control_padding_material = 0x7f09002a;
+ public static final int abc_dialog_fixed_height_major = 0x7f090006;
+ public static final int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static final int abc_dialog_fixed_width_major = 0x7f090008;
+ public static final int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static final int abc_dialog_min_width_major = 0x7f09000a;
+ public static final int abc_dialog_min_width_minor = 0x7f09000b;
+ public static final int abc_dialog_padding_material = 0x7f09002c;
+ public static final int abc_dialog_padding_top_material = 0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static final int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static final int abc_dropdownitem_icon_width = 0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static final int abc_edit_text_inset_top_material = 0x7f090035;
+ public static final int abc_floating_window_z = 0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static final int abc_panel_menu_list_width = 0x7f090038;
+ public static final int abc_search_view_preferred_width = 0x7f090039;
+ public static final int abc_search_view_text_min_width = 0x7f09000c;
+ public static final int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static final int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static final int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static final int abc_switch_padding = 0x7f090018;
+ public static final int abc_text_size_body_1_material = 0x7f09003d;
+ public static final int abc_text_size_body_2_material = 0x7f09003e;
+ public static final int abc_text_size_button_material = 0x7f09003f;
+ public static final int abc_text_size_caption_material = 0x7f090040;
+ public static final int abc_text_size_display_1_material = 0x7f090041;
+ public static final int abc_text_size_display_2_material = 0x7f090042;
+ public static final int abc_text_size_display_3_material = 0x7f090043;
+ public static final int abc_text_size_display_4_material = 0x7f090044;
+ public static final int abc_text_size_headline_material = 0x7f090045;
+ public static final int abc_text_size_large_material = 0x7f090046;
+ public static final int abc_text_size_medium_material = 0x7f090047;
+ public static final int abc_text_size_menu_material = 0x7f090048;
+ public static final int abc_text_size_small_material = 0x7f090049;
+ public static final int abc_text_size_subhead_material = 0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static final int abc_text_size_title_material = 0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static final int disabled_alpha_material_dark = 0x7f090062;
+ public static final int disabled_alpha_material_light = 0x7f090063;
+ public static final int highlight_alpha_material_colored = 0x7f090065;
+ public static final int highlight_alpha_material_dark = 0x7f090066;
+ public static final int highlight_alpha_material_light = 0x7f090067;
+ public static final int notification_large_icon_height = 0x7f09006d;
+ public static final int notification_large_icon_width = 0x7f09006e;
+ public static final int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_star_black_16dp = 0x7f020021;
+ public static final int abc_ic_star_black_36dp = 0x7f020022;
+ public static final int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static final int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static final int abc_item_background_holo_dark = 0x7f020026;
+ public static final int abc_item_background_holo_light = 0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static final int abc_list_focused_holo = 0x7f020029;
+ public static final int abc_list_longpressed_holo = 0x7f02002a;
+ public static final int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static final int abc_list_pressed_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static final int abc_list_selector_holo_dark = 0x7f020031;
+ public static final int abc_list_selector_holo_light = 0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static final int abc_ratingbar_full_material = 0x7f020035;
+ public static final int abc_ratingbar_indicator_material = 0x7f020036;
+ public static final int abc_ratingbar_small_material = 0x7f020037;
+ public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static final int abc_seekbar_thumb_material = 0x7f02003d;
+ public static final int abc_seekbar_track_material = 0x7f02003e;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020040;
+ public static final int abc_switch_thumb_material = 0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static final int abc_tab_indicator_material = 0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static final int abc_text_cursor_material = 0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static final int abc_textfield_search_material = 0x7f02004a;
+ public static final int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d008a;
+ public static final int action_bar = 0x7f0d0064;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0063;
+ public static final int action_bar_root = 0x7f0d005f;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d0045;
+ public static final int action_bar_title = 0x7f0d0044;
+ public static final int action_context_bar = 0x7f0d0065;
+ public static final int action_divider = 0x7f0d008e;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0061;
+ public static final int action_mode_bar_stub = 0x7f0d0060;
+ public static final int action_mode_close_button = 0x7f0d0046;
+ public static final int activity_chooser_view_content = 0x7f0d0047;
+ public static final int alertTitle = 0x7f0d0053;
+ public static final int always = 0x7f0d003d;
+ public static final int beginning = 0x7f0d003b;
+ public static final int buttonPanel = 0x7f0d004e;
+ public static final int cancel_action = 0x7f0d008b;
+ public static final int checkbox = 0x7f0d005c;
+ public static final int chronometer = 0x7f0d0091;
+ public static final int collapseActionView = 0x7f0d003e;
+ public static final int contentPanel = 0x7f0d0054;
+ public static final int custom = 0x7f0d005a;
+ public static final int customPanel = 0x7f0d0059;
+ public static final int decor_content_parent = 0x7f0d0062;
+ public static final int default_activity_button = 0x7f0d004a;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d0066;
+ public static final int end = 0x7f0d0024;
+ public static final int end_padder = 0x7f0d0096;
+ public static final int expand_activities_button = 0x7f0d0048;
+ public static final int expanded_menu = 0x7f0d005b;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d004c;
+ public static final int ifRoom = 0x7f0d003f;
+ public static final int image = 0x7f0d0049;
+ public static final int info = 0x7f0d0095;
+ public static final int line1 = 0x7f0d008f;
+ public static final int line3 = 0x7f0d0093;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d004b;
+ public static final int media_actions = 0x7f0d008d;
+ public static final int middle = 0x7f0d003c;
+ public static final int multiply = 0x7f0d002a;
+ public static final int never = 0x7f0d0040;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parentPanel = 0x7f0d0050;
+ public static final int progress_circular = 0x7f0d0006;
+ public static final int progress_horizontal = 0x7f0d0007;
+ public static final int radio = 0x7f0d005e;
+ public static final int screen = 0x7f0d002b;
+ public static final int scrollIndicatorDown = 0x7f0d0058;
+ public static final int scrollIndicatorUp = 0x7f0d0055;
+ public static final int scrollView = 0x7f0d0056;
+ public static final int search_badge = 0x7f0d0068;
+ public static final int search_bar = 0x7f0d0067;
+ public static final int search_button = 0x7f0d0069;
+ public static final int search_close_btn = 0x7f0d006e;
+ public static final int search_edit_frame = 0x7f0d006a;
+ public static final int search_go_btn = 0x7f0d0070;
+ public static final int search_mag_icon = 0x7f0d006b;
+ public static final int search_plate = 0x7f0d006c;
+ public static final int search_src_text = 0x7f0d006d;
+ public static final int search_voice_btn = 0x7f0d0071;
+ public static final int select_dialog_listview = 0x7f0d0072;
+ public static final int shortcut = 0x7f0d005d;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int spacer = 0x7f0d004f;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d002c;
+ public static final int src_in = 0x7f0d002d;
+ public static final int src_over = 0x7f0d002e;
+ public static final int status_bar_latest_event_content = 0x7f0d008c;
+ public static final int submit_area = 0x7f0d006f;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0094;
+ public static final int text2 = 0x7f0d0092;
+ public static final int textSpacerNoButtons = 0x7f0d0057;
+ public static final int time = 0x7f0d0090;
+ public static final int title = 0x7f0d004d;
+ public static final int title_template = 0x7f0d0052;
+ public static final int topPanel = 0x7f0d0051;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int withText = 0x7f0d0041;
+ public static final int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static final int abc_config_activityShortDur = 0x7f0b0003;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int cancel_button_image_alpha = 0x7f0b0005;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static final int abc_alert_dialog_material = 0x7f04000a;
+ public static final int abc_dialog_title_material = 0x7f04000b;
+ public static final int abc_expanded_menu_layout = 0x7f04000c;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static final int abc_list_menu_item_icon = 0x7f04000e;
+ public static final int abc_list_menu_item_layout = 0x7f04000f;
+ public static final int abc_list_menu_item_radio = 0x7f040010;
+ public static final int abc_popup_menu_item_layout = 0x7f040011;
+ public static final int abc_screen_content_include = 0x7f040012;
+ public static final int abc_screen_simple = 0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static final int abc_screen_toolbar = 0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static final int abc_search_view = 0x7f040017;
+ public static final int abc_select_dialog_material = 0x7f040018;
+ public static final int notification_media_action = 0x7f04002e;
+ public static final int notification_media_cancel_action = 0x7f04002f;
+ public static final int notification_template_big_media = 0x7f040030;
+ public static final int notification_template_big_media_narrow = 0x7f040031;
+ public static final int notification_template_lines = 0x7f040032;
+ public static final int notification_template_media = 0x7f040033;
+ public static final int notification_template_part_chronometer = 0x7f040034;
+ public static final int notification_template_part_time = 0x7f040035;
+ public static final int select_dialog_item_material = 0x7f040039;
+ public static final int select_dialog_multichoice_material = 0x7f04003a;
+ public static final int select_dialog_singlechoice_material = 0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_capital_off = 0x7f070008;
+ public static final int abc_capital_on = 0x7f070009;
+ public static final int abc_search_hint = 0x7f07000a;
+ public static final int abc_searchview_description_clear = 0x7f07000b;
+ public static final int abc_searchview_description_query = 0x7f07000c;
+ public static final int abc_searchview_description_search = 0x7f07000d;
+ public static final int abc_searchview_description_submit = 0x7f07000e;
+ public static final int abc_searchview_description_voice = 0x7f07000f;
+ public static final int abc_shareactionprovider_share_with = 0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static final int abc_toolbar_collapse_description = 0x7f070012;
+ public static final int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static final int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static final int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static final int Base_Theme_AppCompat = 0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static final int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static final int Platform_AppCompat = 0x7f0a0018;
+ public static final int Platform_AppCompat_Light = 0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static final int Platform_V11_AppCompat = 0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static final int Platform_V14_AppCompat = 0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static final int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static final int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static final int Theme_AppCompat = 0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static final int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static final int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static final int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static final int Widget_AppCompat_Button = 0x7f0a011e;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static final int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static final int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static final int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static final int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static final int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static final int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static final int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static final int AppCompatImageView_android_src = 0;
+ public static final int AppCompatImageView_srcCompat = 1;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static final int AppCompatTheme_actionBarDivider = 23;
+ public static final int AppCompatTheme_actionBarItemBackground = 24;
+ public static final int AppCompatTheme_actionBarPopupTheme = 17;
+ public static final int AppCompatTheme_actionBarSize = 22;
+ public static final int AppCompatTheme_actionBarSplitStyle = 19;
+ public static final int AppCompatTheme_actionBarStyle = 18;
+ public static final int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static final int AppCompatTheme_actionBarTabStyle = 12;
+ public static final int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static final int AppCompatTheme_actionBarTheme = 20;
+ public static final int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static final int AppCompatTheme_actionButtonStyle = 49;
+ public static final int AppCompatTheme_actionDropDownStyle = 45;
+ public static final int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static final int AppCompatTheme_actionMenuTextColor = 26;
+ public static final int AppCompatTheme_actionModeBackground = 29;
+ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static final int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static final int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static final int AppCompatTheme_actionModeCutDrawable = 32;
+ public static final int AppCompatTheme_actionModeFindDrawable = 37;
+ public static final int AppCompatTheme_actionModePasteDrawable = 34;
+ public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static final int AppCompatTheme_actionModeShareDrawable = 36;
+ public static final int AppCompatTheme_actionModeSplitBackground = 30;
+ public static final int AppCompatTheme_actionModeStyle = 27;
+ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static final int AppCompatTheme_activityChooserViewStyle = 57;
+ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static final int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static final int AppCompatTheme_alertDialogStyle = 91;
+ public static final int AppCompatTheme_alertDialogTheme = 94;
+ public static final int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static final int AppCompatTheme_android_windowIsFloating = 0;
+ public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static final int AppCompatTheme_borderlessButtonStyle = 54;
+ public static final int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static final int AppCompatTheme_buttonBarStyle = 50;
+ public static final int AppCompatTheme_buttonStyle = 100;
+ public static final int AppCompatTheme_buttonStyleSmall = 101;
+ public static final int AppCompatTheme_checkboxStyle = 102;
+ public static final int AppCompatTheme_checkedTextViewStyle = 103;
+ public static final int AppCompatTheme_colorAccent = 84;
+ public static final int AppCompatTheme_colorButtonNormal = 88;
+ public static final int AppCompatTheme_colorControlActivated = 86;
+ public static final int AppCompatTheme_colorControlHighlight = 87;
+ public static final int AppCompatTheme_colorControlNormal = 85;
+ public static final int AppCompatTheme_colorPrimary = 82;
+ public static final int AppCompatTheme_colorPrimaryDark = 83;
+ public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static final int AppCompatTheme_controlBackground = 90;
+ public static final int AppCompatTheme_dialogPreferredPadding = 43;
+ public static final int AppCompatTheme_dialogTheme = 42;
+ public static final int AppCompatTheme_dividerHorizontal = 56;
+ public static final int AppCompatTheme_dividerVertical = 55;
+ public static final int AppCompatTheme_dropDownListViewStyle = 74;
+ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static final int AppCompatTheme_editTextBackground = 63;
+ public static final int AppCompatTheme_editTextColor = 62;
+ public static final int AppCompatTheme_editTextStyle = 104;
+ public static final int AppCompatTheme_homeAsUpIndicator = 48;
+ public static final int AppCompatTheme_imageButtonStyle = 64;
+ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static final int AppCompatTheme_listDividerAlertDialog = 44;
+ public static final int AppCompatTheme_listPopupWindowStyle = 75;
+ public static final int AppCompatTheme_listPreferredItemHeight = 69;
+ public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static final int AppCompatTheme_panelBackground = 78;
+ public static final int AppCompatTheme_panelMenuListTheme = 80;
+ public static final int AppCompatTheme_panelMenuListWidth = 79;
+ public static final int AppCompatTheme_popupMenuStyle = 60;
+ public static final int AppCompatTheme_popupWindowStyle = 61;
+ public static final int AppCompatTheme_radioButtonStyle = 105;
+ public static final int AppCompatTheme_ratingBarStyle = 106;
+ public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static final int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static final int AppCompatTheme_searchViewStyle = 68;
+ public static final int AppCompatTheme_seekBarStyle = 109;
+ public static final int AppCompatTheme_selectableItemBackground = 52;
+ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static final int AppCompatTheme_spinnerStyle = 110;
+ public static final int AppCompatTheme_switchStyle = 111;
+ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static final int AppCompatTheme_textAppearanceListItem = 76;
+ public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static final int AppCompatTheme_textColorSearchUrl = 67;
+ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static final int AppCompatTheme_toolbarStyle = 58;
+ public static final int AppCompatTheme_windowActionBar = 2;
+ public static final int AppCompatTheme_windowActionBarOverlay = 4;
+ public static final int AppCompatTheme_windowActionModeOverlay = 5;
+ public static final int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static final int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static final int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static final int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static final int AppCompatTheme_windowMinWidthMajor = 10;
+ public static final int AppCompatTheme_windowMinWidthMinor = 11;
+ public static final int AppCompatTheme_windowNoTitle = 3;
+ public static final int[] ButtonBarLayout = { 0x7f01009b };
+ public static final int ButtonBarLayout_allowStacking = 0;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static final int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 3;
+ public static final int Spinner_android_entries = 0;
+ public static final int Spinner_android_popupBackground = 1;
+ public static final int Spinner_android_prompt = 2;
+ public static final int Spinner_popupTheme = 4;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/android/support/v7/recyclerview/R.java b/android/build/generated/source/r/androidTest/debug/android/support/v7/recyclerview/R.java
new file mode 100644
index 000000000..9b4503fda
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/android/support/v7/recyclerview/R.java
@@ -0,0 +1,32 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.recyclerview;
+
+public final class R {
+ public static final class attr {
+ public static final int layoutManager = 0x7f0100ee;
+ public static final int reverseLayout = 0x7f0100f0;
+ public static final int spanCount = 0x7f0100ef;
+ public static final int stackFromEnd = 0x7f0100f1;
+ }
+ public static final class dimen {
+ public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static final int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ }
+ public static final class id {
+ public static final int item_touch_helper_previous_elevation = 0x7f0d0005;
+ }
+ public static final class styleable {
+ public static final int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static final int RecyclerView_android_orientation = 0;
+ public static final int RecyclerView_layoutManager = 1;
+ public static final int RecyclerView_reverseLayout = 3;
+ public static final int RecyclerView_spanCount = 2;
+ public static final int RecyclerView_stackFromEnd = 4;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/com/documentscanner/R.java b/android/build/generated/source/r/androidTest/debug/com/documentscanner/R.java
new file mode 100644
index 000000000..c072b77e4
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/com/documentscanner/R.java
@@ -0,0 +1,1857 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.documentscanner;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ public static final int catalyst_push_up_in = 0x7f05000a;
+ public static final int catalyst_push_up_out = 0x7f05000b;
+ public static final int design_bottom_sheet_slide_in = 0x7f05000c;
+ public static final int design_bottom_sheet_slide_out = 0x7f05000d;
+ public static final int design_fab_in = 0x7f05000e;
+ public static final int design_fab_out = 0x7f05000f;
+ public static final int design_snackbar_in = 0x7f050010;
+ public static final int design_snackbar_out = 0x7f050011;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01003e;
+ public static final int actionBarItemBackground = 0x7f01003f;
+ public static final int actionBarPopupTheme = 0x7f010038;
+ public static final int actionBarSize = 0x7f01003d;
+ public static final int actionBarSplitStyle = 0x7f01003a;
+ public static final int actionBarStyle = 0x7f010039;
+ public static final int actionBarTabBarStyle = 0x7f010034;
+ public static final int actionBarTabStyle = 0x7f010033;
+ public static final int actionBarTabTextStyle = 0x7f010035;
+ public static final int actionBarTheme = 0x7f01003b;
+ public static final int actionBarWidgetTheme = 0x7f01003c;
+ public static final int actionButtonStyle = 0x7f010058;
+ public static final int actionDropDownStyle = 0x7f010054;
+ public static final int actionLayout = 0x7f0100e2;
+ public static final int actionMenuTextAppearance = 0x7f010040;
+ public static final int actionMenuTextColor = 0x7f010041;
+ public static final int actionModeBackground = 0x7f010044;
+ public static final int actionModeCloseButtonStyle = 0x7f010043;
+ public static final int actionModeCloseDrawable = 0x7f010046;
+ public static final int actionModeCopyDrawable = 0x7f010048;
+ public static final int actionModeCutDrawable = 0x7f010047;
+ public static final int actionModeFindDrawable = 0x7f01004c;
+ public static final int actionModePasteDrawable = 0x7f010049;
+ public static final int actionModePopupWindowStyle = 0x7f01004e;
+ public static final int actionModeSelectAllDrawable = 0x7f01004a;
+ public static final int actionModeShareDrawable = 0x7f01004b;
+ public static final int actionModeSplitBackground = 0x7f010045;
+ public static final int actionModeStyle = 0x7f010042;
+ public static final int actionModeWebSearchDrawable = 0x7f01004d;
+ public static final int actionOverflowButtonStyle = 0x7f010036;
+ public static final int actionOverflowMenuStyle = 0x7f010037;
+ public static final int actionProviderClass = 0x7f0100e4;
+ public static final int actionViewClass = 0x7f0100e3;
+ public static final int activityChooserViewStyle = 0x7f010060;
+ public static final int actualImageScaleType = 0x7f0100d1;
+ public static final int alertDialogButtonGroupStyle = 0x7f010083;
+ public static final int alertDialogCenterButtons = 0x7f010084;
+ public static final int alertDialogStyle = 0x7f010082;
+ public static final int alertDialogTheme = 0x7f010085;
+ public static final int allowStacking = 0x7f01009b;
+ public static final int arrowHeadLength = 0x7f0100bc;
+ public static final int arrowShaftLength = 0x7f0100bd;
+ public static final int autoCompleteTextViewStyle = 0x7f01008a;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundImage = 0x7f0100d2;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f010134;
+ public static final int backgroundTintMode = 0x7f010135;
+ public static final int barLength = 0x7f0100be;
+ public static final int behavior_hideable = 0x7f010098;
+ public static final int behavior_overlapTop = 0x7f0100f3;
+ public static final int behavior_peekHeight = 0x7f010097;
+ public static final int borderWidth = 0x7f0100c3;
+ public static final int borderlessButtonStyle = 0x7f01005d;
+ public static final int bottomSheetDialogTheme = 0x7f0100b5;
+ public static final int bottomSheetStyle = 0x7f0100b6;
+ public static final int buttonBarButtonStyle = 0x7f01005a;
+ public static final int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static final int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static final int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static final int buttonBarStyle = 0x7f010059;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f01008b;
+ public static final int buttonStyleSmall = 0x7f01008c;
+ public static final int buttonTint = 0x7f0100ad;
+ public static final int buttonTintMode = 0x7f0100ae;
+ public static final int camera_id = 0x7f01009d;
+ public static final int checkboxStyle = 0x7f01008d;
+ public static final int checkedTextViewStyle = 0x7f01008e;
+ public static final int closeIcon = 0x7f0100f8;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f01012b;
+ public static final int collapseIcon = 0x7f01012a;
+ public static final int collapsedTitleGravity = 0x7f0100aa;
+ public static final int collapsedTitleTextAppearance = 0x7f0100a6;
+ public static final int color = 0x7f0100b8;
+ public static final int colorAccent = 0x7f01007b;
+ public static final int colorButtonNormal = 0x7f01007f;
+ public static final int colorControlActivated = 0x7f01007d;
+ public static final int colorControlHighlight = 0x7f01007e;
+ public static final int colorControlNormal = 0x7f01007c;
+ public static final int colorPrimary = 0x7f010079;
+ public static final int colorPrimaryDark = 0x7f01007a;
+ public static final int colorSwitchThumbNormal = 0x7f010080;
+ public static final int commitIcon = 0x7f0100fd;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int contentScrim = 0x7f0100a7;
+ public static final int controlBackground = 0x7f010081;
+ public static final int counterEnabled = 0x7f01011d;
+ public static final int counterMaxLength = 0x7f01011e;
+ public static final int counterOverflowTextAppearance = 0x7f010120;
+ public static final int counterTextAppearance = 0x7f01011f;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f0100f7;
+ public static final int dialogPreferredPadding = 0x7f010052;
+ public static final int dialogTheme = 0x7f010051;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01005f;
+ public static final int dividerPadding = 0x7f0100e0;
+ public static final int dividerVertical = 0x7f01005e;
+ public static final int drawableSize = 0x7f0100ba;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010071;
+ public static final int dropdownListPreferredItemHeight = 0x7f010055;
+ public static final int editTextBackground = 0x7f010066;
+ public static final int editTextColor = 0x7f010065;
+ public static final int editTextStyle = 0x7f01008f;
+ public static final int elevation = 0x7f01001a;
+ public static final int errorEnabled = 0x7f01011b;
+ public static final int errorTextAppearance = 0x7f01011c;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int expanded = 0x7f010024;
+ public static final int expandedTitleGravity = 0x7f0100ab;
+ public static final int expandedTitleMargin = 0x7f0100a0;
+ public static final int expandedTitleMarginBottom = 0x7f0100a4;
+ public static final int expandedTitleMarginEnd = 0x7f0100a3;
+ public static final int expandedTitleMarginStart = 0x7f0100a1;
+ public static final int expandedTitleMarginTop = 0x7f0100a2;
+ public static final int expandedTitleTextAppearance = 0x7f0100a5;
+ public static final int fabSize = 0x7f0100c1;
+ public static final int fadeDuration = 0x7f0100c6;
+ public static final int failureImage = 0x7f0100cc;
+ public static final int failureImageScaleType = 0x7f0100cd;
+ public static final int foregroundInsidePadding = 0x7f0100c5;
+ public static final int gapBetweenBars = 0x7f0100bb;
+ public static final int goIcon = 0x7f0100f9;
+ public static final int headerLayout = 0x7f0100eb;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int hintAnimationEnabled = 0x7f010121;
+ public static final int hintEnabled = 0x7f01011a;
+ public static final int hintTextAppearance = 0x7f010119;
+ public static final int homeAsUpIndicator = 0x7f010057;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f0100f5;
+ public static final int imageButtonStyle = 0x7f010067;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int insetForeground = 0x7f0100f2;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemBackground = 0x7f0100e9;
+ public static final int itemIconTint = 0x7f0100e7;
+ public static final int itemPadding = 0x7f010014;
+ public static final int itemTextAppearance = 0x7f0100ea;
+ public static final int itemTextColor = 0x7f0100e8;
+ public static final int keylines = 0x7f0100af;
+ public static final int layout = 0x7f0100f4;
+ public static final int layoutManager = 0x7f0100ee;
+ public static final int layout_anchor = 0x7f0100b2;
+ public static final int layout_anchorGravity = 0x7f0100b4;
+ public static final int layout_behavior = 0x7f0100b1;
+ public static final int layout_collapseMode = 0x7f01009e;
+ public static final int layout_collapseParallaxMultiplier = 0x7f01009f;
+ public static final int layout_keyline = 0x7f0100b3;
+ public static final int layout_scrollFlags = 0x7f010025;
+ public static final int layout_scrollInterpolator = 0x7f010026;
+ public static final int listChoiceBackgroundIndicator = 0x7f010078;
+ public static final int listDividerAlertDialog = 0x7f010053;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010072;
+ public static final int listPreferredItemHeight = 0x7f01006c;
+ public static final int listPreferredItemHeightLarge = 0x7f01006e;
+ public static final int listPreferredItemHeightSmall = 0x7f01006d;
+ public static final int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static final int listPreferredItemPaddingRight = 0x7f010070;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f01012e;
+ public static final int maxActionInlineWidth = 0x7f010101;
+ public static final int maxButtonHeight = 0x7f010129;
+ public static final int measureWithLargestChild = 0x7f0100de;
+ public static final int menu = 0x7f0100e6;
+ public static final int metaButtonBarButtonStyle = 0x7f01009a;
+ public static final int metaButtonBarStyle = 0x7f010099;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f01012d;
+ public static final int navigationIcon = 0x7f01012c;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f0100ec;
+ public static final int overlayImage = 0x7f0100d3;
+ public static final int paddingEnd = 0x7f010132;
+ public static final int paddingStart = 0x7f010131;
+ public static final int panelBackground = 0x7f010075;
+ public static final int panelMenuListTheme = 0x7f010077;
+ public static final int panelMenuListWidth = 0x7f010076;
+ public static final int placeholderImage = 0x7f0100c8;
+ public static final int placeholderImageScaleType = 0x7f0100c9;
+ public static final int popupMenuStyle = 0x7f010063;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f010064;
+ public static final int preserveIconSpacing = 0x7f0100e5;
+ public static final int pressedStateOverlayImage = 0x7f0100d4;
+ public static final int pressedTranslationZ = 0x7f0100c2;
+ public static final int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static final int progressBarImage = 0x7f0100ce;
+ public static final int progressBarImageScaleType = 0x7f0100cf;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f0100ff;
+ public static final int queryHint = 0x7f0100f6;
+ public static final int radioButtonStyle = 0x7f010090;
+ public static final int ratingBarStyle = 0x7f010091;
+ public static final int ratingBarStyleIndicator = 0x7f010092;
+ public static final int ratingBarStyleSmall = 0x7f010093;
+ public static final int retryImage = 0x7f0100ca;
+ public static final int retryImageScaleType = 0x7f0100cb;
+ public static final int reverseLayout = 0x7f0100f0;
+ public static final int rippleColor = 0x7f0100c0;
+ public static final int roundAsCircle = 0x7f0100d5;
+ public static final int roundBottomLeft = 0x7f0100da;
+ public static final int roundBottomRight = 0x7f0100d9;
+ public static final int roundTopLeft = 0x7f0100d7;
+ public static final int roundTopRight = 0x7f0100d8;
+ public static final int roundWithOverlayColor = 0x7f0100db;
+ public static final int roundedCornerRadius = 0x7f0100d6;
+ public static final int roundingBorderColor = 0x7f0100dd;
+ public static final int roundingBorderWidth = 0x7f0100dc;
+ public static final int searchHintIcon = 0x7f0100fb;
+ public static final int searchIcon = 0x7f0100fa;
+ public static final int searchViewStyle = 0x7f01006b;
+ public static final int seekBarStyle = 0x7f010094;
+ public static final int selectableItemBackground = 0x7f01005b;
+ public static final int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static final int showAsAction = 0x7f0100e1;
+ public static final int showDividers = 0x7f0100df;
+ public static final int showText = 0x7f010108;
+ public static final int show_fps = 0x7f01009c;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spanCount = 0x7f0100ef;
+ public static final int spinBars = 0x7f0100b9;
+ public static final int spinnerDropDownItemStyle = 0x7f010056;
+ public static final int spinnerStyle = 0x7f010095;
+ public static final int splitTrack = 0x7f010107;
+ public static final int srcCompat = 0x7f010027;
+ public static final int stackFromEnd = 0x7f0100f1;
+ public static final int state_above_anchor = 0x7f0100ed;
+ public static final int statusBarBackground = 0x7f0100b0;
+ public static final int statusBarScrim = 0x7f0100a8;
+ public static final int submitBackground = 0x7f010100;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f010123;
+ public static final int subtitleTextColor = 0x7f010130;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f0100fe;
+ public static final int switchMinWidth = 0x7f010105;
+ public static final int switchPadding = 0x7f010106;
+ public static final int switchStyle = 0x7f010096;
+ public static final int switchTextAppearance = 0x7f010104;
+ public static final int tabBackground = 0x7f01010c;
+ public static final int tabContentStart = 0x7f01010b;
+ public static final int tabGravity = 0x7f01010e;
+ public static final int tabIndicatorColor = 0x7f010109;
+ public static final int tabIndicatorHeight = 0x7f01010a;
+ public static final int tabMaxWidth = 0x7f010110;
+ public static final int tabMinWidth = 0x7f01010f;
+ public static final int tabMode = 0x7f01010d;
+ public static final int tabPadding = 0x7f010118;
+ public static final int tabPaddingBottom = 0x7f010117;
+ public static final int tabPaddingEnd = 0x7f010116;
+ public static final int tabPaddingStart = 0x7f010114;
+ public static final int tabPaddingTop = 0x7f010115;
+ public static final int tabSelectedTextColor = 0x7f010113;
+ public static final int tabTextAppearance = 0x7f010111;
+ public static final int tabTextColor = 0x7f010112;
+ public static final int textAllCaps = 0x7f010028;
+ public static final int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static final int textAppearanceListItem = 0x7f010073;
+ public static final int textAppearanceListItemSmall = 0x7f010074;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static final int textAppearanceSearchResultTitle = 0x7f010068;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static final int textColorAlertDialogListItem = 0x7f010086;
+ public static final int textColorError = 0x7f0100b7;
+ public static final int textColorSearchUrl = 0x7f01006a;
+ public static final int theme = 0x7f010133;
+ public static final int thickness = 0x7f0100bf;
+ public static final int thumbTextPadding = 0x7f010103;
+ public static final int title = 0x7f010003;
+ public static final int titleEnabled = 0x7f0100ac;
+ public static final int titleMarginBottom = 0x7f010128;
+ public static final int titleMarginEnd = 0x7f010126;
+ public static final int titleMarginStart = 0x7f010125;
+ public static final int titleMarginTop = 0x7f010127;
+ public static final int titleMargins = 0x7f010124;
+ public static final int titleTextAppearance = 0x7f010122;
+ public static final int titleTextColor = 0x7f01012f;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarId = 0x7f0100a9;
+ public static final int toolbarNavigationButtonStyle = 0x7f010062;
+ public static final int toolbarStyle = 0x7f010061;
+ public static final int track = 0x7f010102;
+ public static final int useCompatPadding = 0x7f0100c4;
+ public static final int viewAspectRatio = 0x7f0100c7;
+ public static final int voiceIcon = 0x7f0100fc;
+ public static final int windowActionBar = 0x7f010029;
+ public static final int windowActionBarOverlay = 0x7f01002b;
+ public static final int windowActionModeOverlay = 0x7f01002c;
+ public static final int windowFixedHeightMajor = 0x7f010030;
+ public static final int windowFixedHeightMinor = 0x7f01002e;
+ public static final int windowFixedWidthMajor = 0x7f01002d;
+ public static final int windowFixedWidthMinor = 0x7f01002f;
+ public static final int windowMinWidthMajor = 0x7f010031;
+ public static final int windowMinWidthMinor = 0x7f010032;
+ public static final int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static final int abc_allow_stacked_button_bar = 0x7f080000;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static final int abc_color_highlight_material = 0x7f0c004b;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static final int abc_primary_text_material_dark = 0x7f0c004e;
+ public static final int abc_primary_text_material_light = 0x7f0c004f;
+ public static final int abc_search_url_text = 0x7f0c0050;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static final int abc_secondary_text_material_light = 0x7f0c0052;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int black_overlay = 0x7f0c000a;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static final int bright_foreground_material_dark = 0x7f0c000f;
+ public static final int bright_foreground_material_light = 0x7f0c0010;
+ public static final int button_material_dark = 0x7f0c0011;
+ public static final int button_material_light = 0x7f0c0012;
+ public static final int catalyst_redbox_background = 0x7f0c0013;
+ public static final int colorAccent = 0x7f0c0014;
+ public static final int colorPrimary = 0x7f0c0015;
+ public static final int colorPrimaryDark = 0x7f0c0016;
+ public static final int design_fab_shadow_end_color = 0x7f0c0017;
+ public static final int design_fab_shadow_mid_color = 0x7f0c0018;
+ public static final int design_fab_shadow_start_color = 0x7f0c0019;
+ public static final int design_fab_stroke_end_inner_color = 0x7f0c001a;
+ public static final int design_fab_stroke_end_outer_color = 0x7f0c001b;
+ public static final int design_fab_stroke_top_inner_color = 0x7f0c001c;
+ public static final int design_fab_stroke_top_outer_color = 0x7f0c001d;
+ public static final int design_snackbar_background_color = 0x7f0c001e;
+ public static final int design_textinput_error_color_dark = 0x7f0c001f;
+ public static final int design_textinput_error_color_light = 0x7f0c0020;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static final int dim_foreground_material_dark = 0x7f0c0023;
+ public static final int dim_foreground_material_light = 0x7f0c0024;
+ public static final int foreground_material_dark = 0x7f0c0025;
+ public static final int foreground_material_light = 0x7f0c0026;
+ public static final int highlighted_text_material_dark = 0x7f0c0027;
+ public static final int highlighted_text_material_light = 0x7f0c0028;
+ public static final int hint_foreground_material_dark = 0x7f0c0029;
+ public static final int hint_foreground_material_light = 0x7f0c002a;
+ public static final int material_blue_grey_800 = 0x7f0c002b;
+ public static final int material_blue_grey_900 = 0x7f0c002c;
+ public static final int material_blue_grey_950 = 0x7f0c002d;
+ public static final int material_deep_teal_200 = 0x7f0c002e;
+ public static final int material_deep_teal_500 = 0x7f0c002f;
+ public static final int material_grey_100 = 0x7f0c0030;
+ public static final int material_grey_300 = 0x7f0c0031;
+ public static final int material_grey_50 = 0x7f0c0032;
+ public static final int material_grey_600 = 0x7f0c0033;
+ public static final int material_grey_800 = 0x7f0c0034;
+ public static final int material_grey_850 = 0x7f0c0035;
+ public static final int material_grey_900 = 0x7f0c0036;
+ public static final int primary_dark_material_dark = 0x7f0c0037;
+ public static final int primary_dark_material_light = 0x7f0c0038;
+ public static final int primary_material_dark = 0x7f0c0039;
+ public static final int primary_material_light = 0x7f0c003a;
+ public static final int primary_text_default_material_dark = 0x7f0c003b;
+ public static final int primary_text_default_material_light = 0x7f0c003c;
+ public static final int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static final int primary_text_disabled_material_light = 0x7f0c003e;
+ public static final int ripple_material_dark = 0x7f0c003f;
+ public static final int ripple_material_light = 0x7f0c0040;
+ public static final int secondary_text_default_material_dark = 0x7f0c0041;
+ public static final int secondary_text_default_material_light = 0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static final int switch_thumb_material_dark = 0x7f0c0053;
+ public static final int switch_thumb_material_light = 0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static final int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static final int abc_action_bar_default_height_material = 0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static final int abc_action_button_min_height_material = 0x7f090021;
+ public static final int abc_action_button_min_width_material = 0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static final int abc_button_inset_horizontal_material = 0x7f090024;
+ public static final int abc_button_inset_vertical_material = 0x7f090025;
+ public static final int abc_button_padding_horizontal_material = 0x7f090026;
+ public static final int abc_button_padding_vertical_material = 0x7f090027;
+ public static final int abc_config_prefDialogWidth = 0x7f090005;
+ public static final int abc_control_corner_material = 0x7f090028;
+ public static final int abc_control_inset_material = 0x7f090029;
+ public static final int abc_control_padding_material = 0x7f09002a;
+ public static final int abc_dialog_fixed_height_major = 0x7f090006;
+ public static final int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static final int abc_dialog_fixed_width_major = 0x7f090008;
+ public static final int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static final int abc_dialog_min_width_major = 0x7f09000a;
+ public static final int abc_dialog_min_width_minor = 0x7f09000b;
+ public static final int abc_dialog_padding_material = 0x7f09002c;
+ public static final int abc_dialog_padding_top_material = 0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static final int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static final int abc_dropdownitem_icon_width = 0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static final int abc_edit_text_inset_top_material = 0x7f090035;
+ public static final int abc_floating_window_z = 0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static final int abc_panel_menu_list_width = 0x7f090038;
+ public static final int abc_search_view_preferred_width = 0x7f090039;
+ public static final int abc_search_view_text_min_width = 0x7f09000c;
+ public static final int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static final int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static final int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static final int abc_switch_padding = 0x7f090018;
+ public static final int abc_text_size_body_1_material = 0x7f09003d;
+ public static final int abc_text_size_body_2_material = 0x7f09003e;
+ public static final int abc_text_size_button_material = 0x7f09003f;
+ public static final int abc_text_size_caption_material = 0x7f090040;
+ public static final int abc_text_size_display_1_material = 0x7f090041;
+ public static final int abc_text_size_display_2_material = 0x7f090042;
+ public static final int abc_text_size_display_3_material = 0x7f090043;
+ public static final int abc_text_size_display_4_material = 0x7f090044;
+ public static final int abc_text_size_headline_material = 0x7f090045;
+ public static final int abc_text_size_large_material = 0x7f090046;
+ public static final int abc_text_size_medium_material = 0x7f090047;
+ public static final int abc_text_size_menu_material = 0x7f090048;
+ public static final int abc_text_size_small_material = 0x7f090049;
+ public static final int abc_text_size_subhead_material = 0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static final int abc_text_size_title_material = 0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static final int activity_horizontal_margin = 0x7f090019;
+ public static final int activity_vertical_margin = 0x7f09004c;
+ public static final int design_appbar_elevation = 0x7f09004d;
+ public static final int design_bottom_sheet_modal_elevation = 0x7f09004e;
+ public static final int design_bottom_sheet_modal_peek_height = 0x7f09004f;
+ public static final int design_fab_border_width = 0x7f090050;
+ public static final int design_fab_elevation = 0x7f090051;
+ public static final int design_fab_image_size = 0x7f090052;
+ public static final int design_fab_size_mini = 0x7f090053;
+ public static final int design_fab_size_normal = 0x7f090054;
+ public static final int design_fab_translation_z_pressed = 0x7f090055;
+ public static final int design_navigation_elevation = 0x7f090056;
+ public static final int design_navigation_icon_padding = 0x7f090057;
+ public static final int design_navigation_icon_size = 0x7f090058;
+ public static final int design_navigation_max_width = 0x7f090010;
+ public static final int design_navigation_padding_bottom = 0x7f090059;
+ public static final int design_navigation_separator_vertical_padding = 0x7f09005a;
+ public static final int design_snackbar_action_inline_max_width = 0x7f090011;
+ public static final int design_snackbar_background_corner_radius = 0x7f090012;
+ public static final int design_snackbar_elevation = 0x7f09005b;
+ public static final int design_snackbar_extra_spacing_horizontal = 0x7f090013;
+ public static final int design_snackbar_max_width = 0x7f090014;
+ public static final int design_snackbar_min_width = 0x7f090015;
+ public static final int design_snackbar_padding_horizontal = 0x7f09005c;
+ public static final int design_snackbar_padding_vertical = 0x7f09005d;
+ public static final int design_snackbar_padding_vertical_2lines = 0x7f090016;
+ public static final int design_snackbar_text_size = 0x7f09005e;
+ public static final int design_tab_max_width = 0x7f09005f;
+ public static final int design_tab_scrollable_min_width = 0x7f090017;
+ public static final int design_tab_text_size = 0x7f090060;
+ public static final int design_tab_text_size_2line = 0x7f090061;
+ public static final int disabled_alpha_material_dark = 0x7f090062;
+ public static final int disabled_alpha_material_light = 0x7f090063;
+ public static final int fab_margin = 0x7f090064;
+ public static final int highlight_alpha_material_colored = 0x7f090065;
+ public static final int highlight_alpha_material_dark = 0x7f090066;
+ public static final int highlight_alpha_material_light = 0x7f090067;
+ public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static final int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ public static final int nav_header_height = 0x7f09006b;
+ public static final int nav_header_vertical_spacing = 0x7f09006c;
+ public static final int notification_large_icon_height = 0x7f09006d;
+ public static final int notification_large_icon_width = 0x7f09006e;
+ public static final int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_star_black_16dp = 0x7f020021;
+ public static final int abc_ic_star_black_36dp = 0x7f020022;
+ public static final int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static final int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static final int abc_item_background_holo_dark = 0x7f020026;
+ public static final int abc_item_background_holo_light = 0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static final int abc_list_focused_holo = 0x7f020029;
+ public static final int abc_list_longpressed_holo = 0x7f02002a;
+ public static final int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static final int abc_list_pressed_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static final int abc_list_selector_holo_dark = 0x7f020031;
+ public static final int abc_list_selector_holo_light = 0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static final int abc_ratingbar_full_material = 0x7f020035;
+ public static final int abc_ratingbar_indicator_material = 0x7f020036;
+ public static final int abc_ratingbar_small_material = 0x7f020037;
+ public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static final int abc_seekbar_thumb_material = 0x7f02003d;
+ public static final int abc_seekbar_track_material = 0x7f02003e;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020040;
+ public static final int abc_switch_thumb_material = 0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static final int abc_tab_indicator_material = 0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static final int abc_text_cursor_material = 0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static final int abc_textfield_search_material = 0x7f02004a;
+ public static final int angle = 0x7f02004b;
+ public static final int button_background = 0x7f02004c;
+ public static final int design_fab_background = 0x7f02004d;
+ public static final int design_snackbar_background = 0x7f02004e;
+ public static final int ic_arrow_back_24dp = 0x7f02004f;
+ public static final int ic_camera_green = 0x7f020050;
+ public static final int ic_delete_white_24dp = 0x7f020051;
+ public static final int ic_done_all_24dp = 0x7f020052;
+ public static final int ic_find_in_page = 0x7f020053;
+ public static final int ic_flash_on_24dp = 0x7f020054;
+ public static final int ic_info_outline_white_24px = 0x7f020055;
+ public static final int ic_launcher_background = 0x7f020056;
+ public static final int ic_launcher_foreground = 0x7f020057;
+ public static final int ic_menu_camera = 0x7f020058;
+ public static final int ic_menu_gallery = 0x7f020059;
+ public static final int ic_menu_manage = 0x7f02005a;
+ public static final int ic_menu_send = 0x7f02005b;
+ public static final int ic_menu_share = 0x7f02005c;
+ public static final int ic_menu_slideshow = 0x7f02005d;
+ public static final int ic_menu_tag = 0x7f02005e;
+ public static final int ic_monochrome = 0x7f02005f;
+ public static final int ic_palette = 0x7f020060;
+ public static final int ic_photo_filter_white_24dp = 0x7f020061;
+ public static final int ic_settings = 0x7f020062;
+ public static final int ic_tag_bell = 0x7f020063;
+ public static final int ic_tag_game = 0x7f020064;
+ public static final int ic_tag_gift = 0x7f020065;
+ public static final int ic_tag_magnet = 0x7f020066;
+ public static final int ic_tag_rocket = 0x7f020067;
+ public static final int ic_tag_star = 0x7f020068;
+ public static final int ic_tag_tv = 0x7f020069;
+ public static final int notification_template_icon_bg = 0x7f02006c;
+ public static final int round_button = 0x7f02006a;
+ public static final int side_nav_bar = 0x7f02006b;
+ }
+ public static final class id {
+ public static final int about_container = 0x7f0d0074;
+ public static final int about_markdown = 0x7f0d0075;
+ public static final int about_shareapp = 0x7f0d0076;
+ public static final int about_view = 0x7f0d0073;
+ public static final int action0 = 0x7f0d008a;
+ public static final int action_about = 0x7f0d00a9;
+ public static final int action_bar = 0x7f0d0064;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0063;
+ public static final int action_bar_root = 0x7f0d005f;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d0045;
+ public static final int action_bar_title = 0x7f0d0044;
+ public static final int action_context_bar = 0x7f0d0065;
+ public static final int action_delete = 0x7f0d00a6;
+ public static final int action_divider = 0x7f0d008e;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0061;
+ public static final int action_mode_bar_stub = 0x7f0d0060;
+ public static final int action_mode_close_button = 0x7f0d0046;
+ public static final int action_share = 0x7f0d00a8;
+ public static final int action_tag = 0x7f0d00a7;
+ public static final int activity_chooser_view_content = 0x7f0d0047;
+ public static final int alertTitle = 0x7f0d0053;
+ public static final int always = 0x7f0d003d;
+ public static final int any = 0x7f0d001b;
+ public static final int back = 0x7f0d001c;
+ public static final int beginning = 0x7f0d003b;
+ public static final int bottom = 0x7f0d0020;
+ public static final int buttonBell = 0x7f0d00a1;
+ public static final int buttonGame = 0x7f0d00a2;
+ public static final int buttonGift = 0x7f0d009f;
+ public static final int buttonMagnet = 0x7f0d00a4;
+ public static final int buttonPanel = 0x7f0d004e;
+ public static final int buttonRocket = 0x7f0d009e;
+ public static final int buttonStar = 0x7f0d00a3;
+ public static final int buttonTv = 0x7f0d00a0;
+ public static final int cancel_action = 0x7f0d008b;
+ public static final int catalyst_redbox_title = 0x7f0d0099;
+ public static final int center = 0x7f0d0021;
+ public static final int centerCrop = 0x7f0d0034;
+ public static final int centerInside = 0x7f0d0035;
+ public static final int center_horizontal = 0x7f0d0022;
+ public static final int center_vertical = 0x7f0d0023;
+ public static final int checkbox = 0x7f0d005c;
+ public static final int chronometer = 0x7f0d0091;
+ public static final int clip_horizontal = 0x7f0d002f;
+ public static final int clip_vertical = 0x7f0d0030;
+ public static final int collapseActionView = 0x7f0d003e;
+ public static final int colorSquare = 0x7f0d0087;
+ public static final int contentPanel = 0x7f0d0054;
+ public static final int custom = 0x7f0d005a;
+ public static final int customPanel = 0x7f0d0059;
+ public static final int decor_content_parent = 0x7f0d0062;
+ public static final int default_activity_button = 0x7f0d004a;
+ public static final int design_bottom_sheet = 0x7f0d007e;
+ public static final int design_menu_item_action_area = 0x7f0d0085;
+ public static final int design_menu_item_action_area_stub = 0x7f0d0084;
+ public static final int design_menu_item_text = 0x7f0d0083;
+ public static final int design_navigation_view = 0x7f0d0082;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d0066;
+ public static final int end = 0x7f0d0024;
+ public static final int end_padder = 0x7f0d0096;
+ public static final int enterAlways = 0x7f0d0015;
+ public static final int enterAlwaysCollapsed = 0x7f0d0016;
+ public static final int exitUntilCollapsed = 0x7f0d0017;
+ public static final int expand_activities_button = 0x7f0d0048;
+ public static final int expanded_menu = 0x7f0d005b;
+ public static final int fill = 0x7f0d0031;
+ public static final int fill_horizontal = 0x7f0d0032;
+ public static final int fill_vertical = 0x7f0d0025;
+ public static final int fitCenter = 0x7f0d0036;
+ public static final int fitEnd = 0x7f0d0037;
+ public static final int fitStart = 0x7f0d0038;
+ public static final int fitXY = 0x7f0d0039;
+ public static final int fixed = 0x7f0d0042;
+ public static final int focusCrop = 0x7f0d003a;
+ public static final int fps_text = 0x7f0d0086;
+ public static final int front = 0x7f0d001d;
+ public static final int gallery_image = 0x7f0d0088;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int hud = 0x7f0d007b;
+ public static final int icon = 0x7f0d004c;
+ public static final int ifRoom = 0x7f0d003f;
+ public static final int image = 0x7f0d0049;
+ public static final int imgDisplay = 0x7f0d0089;
+ public static final int info = 0x7f0d0095;
+ public static final int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static final int left = 0x7f0d0026;
+ public static final int line1 = 0x7f0d008f;
+ public static final int line3 = 0x7f0d0093;
+ public static final int linearLayout = 0x7f0d009d;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d004b;
+ public static final int media_actions = 0x7f0d008d;
+ public static final int middle = 0x7f0d003c;
+ public static final int mini = 0x7f0d0033;
+ public static final int multiply = 0x7f0d002a;
+ public static final int navigation_header_container = 0x7f0d0081;
+ public static final int never = 0x7f0d0040;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int pager = 0x7f0d0077;
+ public static final int parallax = 0x7f0d001e;
+ public static final int parentPanel = 0x7f0d0050;
+ public static final int pin = 0x7f0d001f;
+ public static final int progress_circular = 0x7f0d0006;
+ public static final int progress_horizontal = 0x7f0d0007;
+ public static final int radio = 0x7f0d005e;
+ public static final int recyclerview = 0x7f0d0078;
+ public static final int right = 0x7f0d0027;
+ public static final int rn_frame_file = 0x7f0d0098;
+ public static final int rn_frame_method = 0x7f0d0097;
+ public static final int rn_redbox_reloadjs = 0x7f0d009b;
+ public static final int rn_redbox_stack = 0x7f0d009a;
+ public static final int scannedAnimation = 0x7f0d007a;
+ public static final int screen = 0x7f0d002b;
+ public static final int scroll = 0x7f0d0018;
+ public static final int scrollIndicatorDown = 0x7f0d0058;
+ public static final int scrollIndicatorUp = 0x7f0d0055;
+ public static final int scrollView = 0x7f0d0056;
+ public static final int scrollable = 0x7f0d0043;
+ public static final int search_badge = 0x7f0d0068;
+ public static final int search_bar = 0x7f0d0067;
+ public static final int search_button = 0x7f0d0069;
+ public static final int search_close_btn = 0x7f0d006e;
+ public static final int search_edit_frame = 0x7f0d006a;
+ public static final int search_go_btn = 0x7f0d0070;
+ public static final int search_mag_icon = 0x7f0d006b;
+ public static final int search_plate = 0x7f0d006c;
+ public static final int search_src_text = 0x7f0d006d;
+ public static final int search_voice_btn = 0x7f0d0071;
+ public static final int select_dialog_listview = 0x7f0d0072;
+ public static final int shortcut = 0x7f0d005d;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int snackbar_action = 0x7f0d0080;
+ public static final int snackbar_text = 0x7f0d007f;
+ public static final int snap = 0x7f0d0019;
+ public static final int spacer = 0x7f0d004f;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d002c;
+ public static final int src_in = 0x7f0d002d;
+ public static final int src_over = 0x7f0d002e;
+ public static final int start = 0x7f0d0028;
+ public static final int status_bar_latest_event_content = 0x7f0d008c;
+ public static final int submit_area = 0x7f0d006f;
+ public static final int surfaceView = 0x7f0d0079;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int tag_done = 0x7f0d00a5;
+ public static final int text = 0x7f0d0094;
+ public static final int text2 = 0x7f0d0092;
+ public static final int textSpacerNoButtons = 0x7f0d0057;
+ public static final int textView = 0x7f0d009c;
+ public static final int time = 0x7f0d0090;
+ public static final int title = 0x7f0d004d;
+ public static final int title_template = 0x7f0d0052;
+ public static final int top = 0x7f0d0029;
+ public static final int topPanel = 0x7f0d0051;
+ public static final int touch_outside = 0x7f0d007d;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int view_offset_helper = 0x7f0d000a;
+ public static final int wait_spinner = 0x7f0d007c;
+ public static final int withText = 0x7f0d0041;
+ public static final int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static final int abc_config_activityShortDur = 0x7f0b0003;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int bottom_sheet_slide_duration = 0x7f0b0004;
+ public static final int cancel_button_image_alpha = 0x7f0b0005;
+ public static final int design_snackbar_text_max_lines = 0x7f0b0001;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static final int abc_alert_dialog_material = 0x7f04000a;
+ public static final int abc_dialog_title_material = 0x7f04000b;
+ public static final int abc_expanded_menu_layout = 0x7f04000c;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static final int abc_list_menu_item_icon = 0x7f04000e;
+ public static final int abc_list_menu_item_layout = 0x7f04000f;
+ public static final int abc_list_menu_item_radio = 0x7f040010;
+ public static final int abc_popup_menu_item_layout = 0x7f040011;
+ public static final int abc_screen_content_include = 0x7f040012;
+ public static final int abc_screen_simple = 0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static final int abc_screen_toolbar = 0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static final int abc_search_view = 0x7f040017;
+ public static final int abc_select_dialog_material = 0x7f040018;
+ public static final int about_view = 0x7f040019;
+ public static final int activity_fullscreen_view = 0x7f04001a;
+ public static final int activity_gallery = 0x7f04001b;
+ public static final int activity_main = 0x7f04001c;
+ public static final int activity_open_note_scanner = 0x7f04001d;
+ public static final int activity_settings = 0x7f04001e;
+ public static final int design_bottom_sheet_dialog = 0x7f04001f;
+ public static final int design_layout_snackbar = 0x7f040020;
+ public static final int design_layout_snackbar_include = 0x7f040021;
+ public static final int design_layout_tab_icon = 0x7f040022;
+ public static final int design_layout_tab_text = 0x7f040023;
+ public static final int design_menu_item_action_area = 0x7f040024;
+ public static final int design_navigation_item = 0x7f040025;
+ public static final int design_navigation_item_header = 0x7f040026;
+ public static final int design_navigation_item_separator = 0x7f040027;
+ public static final int design_navigation_item_subheader = 0x7f040028;
+ public static final int design_navigation_menu = 0x7f040029;
+ public static final int design_navigation_menu_item = 0x7f04002a;
+ public static final int fps_view = 0x7f04002b;
+ public static final int gallery_item = 0x7f04002c;
+ public static final int layout_fullscreen_image = 0x7f04002d;
+ public static final int notification_media_action = 0x7f04002e;
+ public static final int notification_media_cancel_action = 0x7f04002f;
+ public static final int notification_template_big_media = 0x7f040030;
+ public static final int notification_template_big_media_narrow = 0x7f040031;
+ public static final int notification_template_lines = 0x7f040032;
+ public static final int notification_template_media = 0x7f040033;
+ public static final int notification_template_part_chronometer = 0x7f040034;
+ public static final int notification_template_part_time = 0x7f040035;
+ public static final int redbox_item_frame = 0x7f040036;
+ public static final int redbox_item_title = 0x7f040037;
+ public static final int redbox_view = 0x7f040038;
+ public static final int select_dialog_item_material = 0x7f040039;
+ public static final int select_dialog_multichoice_material = 0x7f04003a;
+ public static final int select_dialog_singlechoice_material = 0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item = 0x7f04003c;
+ public static final int tageditor_view = 0x7f04003d;
+ }
+ public static final class menu {
+ public static final int menu_gallery = 0x7f0e0000;
+ public static final int menu_imagepager = 0x7f0e0001;
+ }
+ public static final class mipmap {
+ public static final int ic_launcher = 0x7f030000;
+ public static final int ic_launcher_round = 0x7f030001;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_capital_off = 0x7f070008;
+ public static final int abc_capital_on = 0x7f070009;
+ public static final int abc_search_hint = 0x7f07000a;
+ public static final int abc_searchview_description_clear = 0x7f07000b;
+ public static final int abc_searchview_description_query = 0x7f07000c;
+ public static final int abc_searchview_description_search = 0x7f07000d;
+ public static final int abc_searchview_description_submit = 0x7f07000e;
+ public static final int abc_searchview_description_voice = 0x7f07000f;
+ public static final int abc_shareactionprovider_share_with = 0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static final int abc_toolbar_collapse_description = 0x7f070012;
+ public static final int about_filename = 0x7f070014;
+ public static final int action_about = 0x7f070015;
+ public static final int action_delete = 0x7f070016;
+ public static final int action_share = 0x7f070017;
+ public static final int action_tag = 0x7f070018;
+ public static final int activateunknown = 0x7f070019;
+ public static final int answer_cancel = 0x7f07001a;
+ public static final int answer_later = 0x7f07001b;
+ public static final int answer_no = 0x7f07001c;
+ public static final int answer_yes = 0x7f07001d;
+ public static final int app_name = 0x7f07001e;
+ public static final int appbar_scrolling_view_behavior = 0x7f07005a;
+ public static final int ask_install_opencv = 0x7f07001f;
+ public static final int autoMode = 0x7f070020;
+ public static final int automatic_tagging = 0x7f070021;
+ public static final int automatic_tagging_summary = 0x7f070022;
+ public static final int basic_settings = 0x7f070023;
+ public static final int bitcoin_summary = 0x7f070024;
+ public static final int bottom_sheet_behavior = 0x7f07005b;
+ public static final int bug_rotate = 0x7f070025;
+ public static final int bug_rotate_summary = 0x7f070026;
+ public static final int bwMode = 0x7f070027;
+ public static final int catalyst_debugjs = 0x7f070028;
+ public static final int catalyst_debugjs_off = 0x7f07005c;
+ public static final int catalyst_element_inspector = 0x7f070029;
+ public static final int catalyst_element_inspector_off = 0x7f07005d;
+ public static final int catalyst_hot_module_replacement = 0x7f07005e;
+ public static final int catalyst_hot_module_replacement_off = 0x7f07005f;
+ public static final int catalyst_jsload_error = 0x7f07002a;
+ public static final int catalyst_jsload_message = 0x7f07002b;
+ public static final int catalyst_jsload_title = 0x7f07002c;
+ public static final int catalyst_live_reload = 0x7f070060;
+ public static final int catalyst_live_reload_off = 0x7f070061;
+ public static final int catalyst_perf_monitor = 0x7f070062;
+ public static final int catalyst_perf_monitor_off = 0x7f070063;
+ public static final int catalyst_reloadjs = 0x7f07002d;
+ public static final int catalyst_remotedbg_error = 0x7f070064;
+ public static final int catalyst_remotedbg_message = 0x7f070065;
+ public static final int catalyst_settings = 0x7f07002e;
+ public static final int catalyst_settings_title = 0x7f07002f;
+ public static final int catalyst_start_profile = 0x7f070066;
+ public static final int catalyst_stop_profile = 0x7f070067;
+ public static final int character_counter_pattern = 0x7f070068;
+ public static final int colorMode = 0x7f070030;
+ public static final int confirm_delete_multiple_text = 0x7f070031;
+ public static final int confirm_delete_text = 0x7f070032;
+ public static final int confirm_install_opencv = 0x7f070033;
+ public static final int confirm_title = 0x7f070034;
+ public static final int dogecoin_summary = 0x7f070069;
+ public static final int donate = 0x7f070035;
+ public static final int donate_summary = 0x7f070036;
+ public static final int downloading = 0x7f070037;
+ public static final int downloading_opencv = 0x7f070038;
+ public static final int feedback_and_contributions = 0x7f070039;
+ public static final int filterModeOff = 0x7f07003a;
+ public static final int filterModeOn = 0x7f07003b;
+ public static final int github_project = 0x7f07003c;
+ public static final int github_project_summary = 0x7f07003d;
+ public static final int githubdownload = 0x7f07003e;
+ public static final int googleplay = 0x7f07003f;
+ public static final int images_scanned = 0x7f070040;
+ public static final int install_opencv = 0x7f070041;
+ public static final int manualMode = 0x7f070042;
+ public static final int match_aspect = 0x7f070043;
+ public static final int match_aspect_summary = 0x7f070044;
+ public static final int messageactivateunknown = 0x7f070045;
+ public static final int paypal_summary = 0x7f070046;
+ public static final int scanningToast = 0x7f070047;
+ public static final int send_message = 0x7f070048;
+ public static final int send_message_summary = 0x7f070049;
+ public static final int settings = 0x7f07004a;
+ public static final int share_app = 0x7f07004b;
+ public static final int share_app_body = 0x7f07004c;
+ public static final int share_app_subject = 0x7f07004d;
+ public static final int share_app_using = 0x7f07004e;
+ public static final int share_snackbar = 0x7f07004f;
+ public static final int stats_optin_text = 0x7f070050;
+ public static final int stats_optin_title = 0x7f070051;
+ public static final int status_bar_notification_info_overflow = 0x7f070013;
+ public static final int storage_folder = 0x7f070052;
+ public static final int storage_folder_summary = 0x7f070053;
+ public static final int telegram = 0x7f070054;
+ public static final int telegram_summary = 0x7f070055;
+ public static final int title_activity_full_image = 0x7f070056;
+ public static final int title_activity_gallery = 0x7f070057;
+ public static final int title_activity_open_note_scanner = 0x7f07006a;
+ public static final int usage_stats = 0x7f070058;
+ public static final int usage_stats_summary = 0x7f070059;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static final int Animation_Catalyst_RedBox = 0x7f0a008c;
+ public static final int Animation_Design_BottomSheetDialog = 0x7f0a008d;
+ public static final int AppTheme = 0x7f0a008e;
+ public static final int AppTheme_AppBarOverlay = 0x7f0a008f;
+ public static final int AppTheme_NoActionBar = 0x7f0a0037;
+ public static final int AppTheme_PopupOverlay = 0x7f0a0090;
+ public static final int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static final int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static final int Base_Theme_AppCompat = 0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static final int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static final int Base_Widget_Design_TabLayout = 0x7f0a00bd;
+ public static final int FullscreenActionBarStyle = 0x7f0a00be;
+ public static final int Platform_AppCompat = 0x7f0a0018;
+ public static final int Platform_AppCompat_Light = 0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static final int Platform_V11_AppCompat = 0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static final int Platform_V14_AppCompat = 0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static final int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0a00eb;
+ public static final int TextAppearance_Design_Counter = 0x7f0a00ec;
+ public static final int TextAppearance_Design_Counter_Overflow = 0x7f0a00ed;
+ public static final int TextAppearance_Design_Error = 0x7f0a00ee;
+ public static final int TextAppearance_Design_Hint = 0x7f0a00ef;
+ public static final int TextAppearance_Design_Snackbar_Message = 0x7f0a00f0;
+ public static final int TextAppearance_Design_Tab = 0x7f0a00f1;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static final int Theme = 0x7f0a00f5;
+ public static final int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static final int Theme_AppCompat = 0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static final int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static final int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static final int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static final int Theme_Catalyst = 0x7f0a0104;
+ public static final int Theme_Catalyst_RedBox = 0x7f0a0105;
+ public static final int Theme_Design = 0x7f0a0106;
+ public static final int Theme_Design_BottomSheetDialog = 0x7f0a0107;
+ public static final int Theme_Design_Light = 0x7f0a0108;
+ public static final int Theme_Design_Light_BottomSheetDialog = 0x7f0a0109;
+ public static final int Theme_Design_Light_NoActionBar = 0x7f0a010a;
+ public static final int Theme_Design_NoActionBar = 0x7f0a010b;
+ public static final int Theme_ReactNative_AppCompat_Light = 0x7f0a010c;
+ public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0a010d;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static final int Widget_AppCompat_Button = 0x7f0a011e;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static final int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static final int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static final int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static final int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static final int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static final int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static final int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ public static final int Widget_Design_AppBarLayout = 0x7f0a0159;
+ public static final int Widget_Design_BottomSheet_Modal = 0x7f0a015a;
+ public static final int Widget_Design_CollapsingToolbar = 0x7f0a015b;
+ public static final int Widget_Design_CoordinatorLayout = 0x7f0a015c;
+ public static final int Widget_Design_FloatingActionButton = 0x7f0a015d;
+ public static final int Widget_Design_NavigationView = 0x7f0a015e;
+ public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f0a015f;
+ public static final int Widget_Design_Snackbar = 0x7f0a0160;
+ public static final int Widget_Design_TabLayout = 0x7f0a0001;
+ public static final int Widget_Design_TextInputLayout = 0x7f0a0161;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 };
+ public static final int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 };
+ public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ public static final int AppBarLayout_android_background = 0;
+ public static final int AppBarLayout_elevation = 1;
+ public static final int AppBarLayout_expanded = 2;
+ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static final int AppCompatImageView_android_src = 0;
+ public static final int AppCompatImageView_srcCompat = 1;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static final int AppCompatTheme_actionBarDivider = 23;
+ public static final int AppCompatTheme_actionBarItemBackground = 24;
+ public static final int AppCompatTheme_actionBarPopupTheme = 17;
+ public static final int AppCompatTheme_actionBarSize = 22;
+ public static final int AppCompatTheme_actionBarSplitStyle = 19;
+ public static final int AppCompatTheme_actionBarStyle = 18;
+ public static final int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static final int AppCompatTheme_actionBarTabStyle = 12;
+ public static final int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static final int AppCompatTheme_actionBarTheme = 20;
+ public static final int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static final int AppCompatTheme_actionButtonStyle = 49;
+ public static final int AppCompatTheme_actionDropDownStyle = 45;
+ public static final int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static final int AppCompatTheme_actionMenuTextColor = 26;
+ public static final int AppCompatTheme_actionModeBackground = 29;
+ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static final int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static final int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static final int AppCompatTheme_actionModeCutDrawable = 32;
+ public static final int AppCompatTheme_actionModeFindDrawable = 37;
+ public static final int AppCompatTheme_actionModePasteDrawable = 34;
+ public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static final int AppCompatTheme_actionModeShareDrawable = 36;
+ public static final int AppCompatTheme_actionModeSplitBackground = 30;
+ public static final int AppCompatTheme_actionModeStyle = 27;
+ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static final int AppCompatTheme_activityChooserViewStyle = 57;
+ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static final int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static final int AppCompatTheme_alertDialogStyle = 91;
+ public static final int AppCompatTheme_alertDialogTheme = 94;
+ public static final int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static final int AppCompatTheme_android_windowIsFloating = 0;
+ public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static final int AppCompatTheme_borderlessButtonStyle = 54;
+ public static final int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static final int AppCompatTheme_buttonBarStyle = 50;
+ public static final int AppCompatTheme_buttonStyle = 100;
+ public static final int AppCompatTheme_buttonStyleSmall = 101;
+ public static final int AppCompatTheme_checkboxStyle = 102;
+ public static final int AppCompatTheme_checkedTextViewStyle = 103;
+ public static final int AppCompatTheme_colorAccent = 84;
+ public static final int AppCompatTheme_colorButtonNormal = 88;
+ public static final int AppCompatTheme_colorControlActivated = 86;
+ public static final int AppCompatTheme_colorControlHighlight = 87;
+ public static final int AppCompatTheme_colorControlNormal = 85;
+ public static final int AppCompatTheme_colorPrimary = 82;
+ public static final int AppCompatTheme_colorPrimaryDark = 83;
+ public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static final int AppCompatTheme_controlBackground = 90;
+ public static final int AppCompatTheme_dialogPreferredPadding = 43;
+ public static final int AppCompatTheme_dialogTheme = 42;
+ public static final int AppCompatTheme_dividerHorizontal = 56;
+ public static final int AppCompatTheme_dividerVertical = 55;
+ public static final int AppCompatTheme_dropDownListViewStyle = 74;
+ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static final int AppCompatTheme_editTextBackground = 63;
+ public static final int AppCompatTheme_editTextColor = 62;
+ public static final int AppCompatTheme_editTextStyle = 104;
+ public static final int AppCompatTheme_homeAsUpIndicator = 48;
+ public static final int AppCompatTheme_imageButtonStyle = 64;
+ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static final int AppCompatTheme_listDividerAlertDialog = 44;
+ public static final int AppCompatTheme_listPopupWindowStyle = 75;
+ public static final int AppCompatTheme_listPreferredItemHeight = 69;
+ public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static final int AppCompatTheme_panelBackground = 78;
+ public static final int AppCompatTheme_panelMenuListTheme = 80;
+ public static final int AppCompatTheme_panelMenuListWidth = 79;
+ public static final int AppCompatTheme_popupMenuStyle = 60;
+ public static final int AppCompatTheme_popupWindowStyle = 61;
+ public static final int AppCompatTheme_radioButtonStyle = 105;
+ public static final int AppCompatTheme_ratingBarStyle = 106;
+ public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static final int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static final int AppCompatTheme_searchViewStyle = 68;
+ public static final int AppCompatTheme_seekBarStyle = 109;
+ public static final int AppCompatTheme_selectableItemBackground = 52;
+ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static final int AppCompatTheme_spinnerStyle = 110;
+ public static final int AppCompatTheme_switchStyle = 111;
+ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static final int AppCompatTheme_textAppearanceListItem = 76;
+ public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static final int AppCompatTheme_textColorSearchUrl = 67;
+ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static final int AppCompatTheme_toolbarStyle = 58;
+ public static final int AppCompatTheme_windowActionBar = 2;
+ public static final int AppCompatTheme_windowActionBarOverlay = 4;
+ public static final int AppCompatTheme_windowActionModeOverlay = 5;
+ public static final int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static final int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static final int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static final int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static final int AppCompatTheme_windowMinWidthMajor = 10;
+ public static final int AppCompatTheme_windowMinWidthMinor = 11;
+ public static final int AppCompatTheme_windowNoTitle = 3;
+ public static final int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 };
+ public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
+ public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ public static final int[] ButtonBarContainerTheme = { 0x7f010099, 0x7f01009a };
+ public static final int ButtonBarContainerTheme_metaButtonBarButtonStyle = 1;
+ public static final int ButtonBarContainerTheme_metaButtonBarStyle = 0;
+ public static final int[] ButtonBarLayout = { 0x7f01009b };
+ public static final int ButtonBarLayout_allowStacking = 0;
+ public static final int[] CameraBridgeViewBase = { 0x7f01009c, 0x7f01009d };
+ public static final int CameraBridgeViewBase_camera_id = 1;
+ public static final int CameraBridgeViewBase_show_fps = 0;
+ public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009e, 0x7f01009f };
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ public static final int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac };
+ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ public static final int CollapsingToolbarLayout_contentScrim = 8;
+ public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ public static final int CollapsingToolbarLayout_statusBarScrim = 9;
+ public static final int CollapsingToolbarLayout_title = 0;
+ public static final int CollapsingToolbarLayout_titleEnabled = 13;
+ public static final int CollapsingToolbarLayout_toolbarId = 10;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] CoordinatorLayout = { 0x7f0100af, 0x7f0100b0 };
+ public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 };
+ public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ public static final int CoordinatorLayout_keylines = 0;
+ public static final int CoordinatorLayout_statusBarBackground = 1;
+ public static final int[] DesignTheme = { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 };
+ public static final int DesignTheme_bottomSheetDialogTheme = 0;
+ public static final int DesignTheme_bottomSheetStyle = 1;
+ public static final int DesignTheme_textColorError = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] FloatingActionButton = { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 };
+ public static final int FloatingActionButton_backgroundTint = 6;
+ public static final int FloatingActionButton_backgroundTintMode = 7;
+ public static final int FloatingActionButton_borderWidth = 4;
+ public static final int FloatingActionButton_elevation = 0;
+ public static final int FloatingActionButton_fabSize = 2;
+ public static final int FloatingActionButton_pressedTranslationZ = 3;
+ public static final int FloatingActionButton_rippleColor = 1;
+ public static final int FloatingActionButton_useCompatPadding = 5;
+ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c5 };
+ public static final int ForegroundLinearLayout_android_foreground = 0;
+ public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
+ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ public static final int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static final int GenericDraweeView_actualImageScaleType = 11;
+ public static final int GenericDraweeView_backgroundImage = 12;
+ public static final int GenericDraweeView_fadeDuration = 0;
+ public static final int GenericDraweeView_failureImage = 6;
+ public static final int GenericDraweeView_failureImageScaleType = 7;
+ public static final int GenericDraweeView_overlayImage = 13;
+ public static final int GenericDraweeView_placeholderImage = 2;
+ public static final int GenericDraweeView_placeholderImageScaleType = 3;
+ public static final int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeView_progressBarImage = 8;
+ public static final int GenericDraweeView_progressBarImageScaleType = 9;
+ public static final int GenericDraweeView_retryImage = 4;
+ public static final int GenericDraweeView_retryImageScaleType = 5;
+ public static final int GenericDraweeView_roundAsCircle = 15;
+ public static final int GenericDraweeView_roundBottomLeft = 20;
+ public static final int GenericDraweeView_roundBottomRight = 19;
+ public static final int GenericDraweeView_roundTopLeft = 17;
+ public static final int GenericDraweeView_roundTopRight = 18;
+ public static final int GenericDraweeView_roundWithOverlayColor = 21;
+ public static final int GenericDraweeView_roundedCornerRadius = 16;
+ public static final int GenericDraweeView_roundingBorderColor = 23;
+ public static final int GenericDraweeView_roundingBorderWidth = 22;
+ public static final int GenericDraweeView_viewAspectRatio = 1;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb };
+ public static final int NavigationView_android_background = 0;
+ public static final int NavigationView_android_fitsSystemWindows = 1;
+ public static final int NavigationView_android_maxWidth = 2;
+ public static final int NavigationView_elevation = 3;
+ public static final int NavigationView_headerLayout = 9;
+ public static final int NavigationView_itemBackground = 7;
+ public static final int NavigationView_itemIconTint = 5;
+ public static final int NavigationView_itemTextAppearance = 8;
+ public static final int NavigationView_itemTextColor = 6;
+ public static final int NavigationView_menu = 4;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static final int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static final int RecyclerView_android_orientation = 0;
+ public static final int RecyclerView_layoutManager = 1;
+ public static final int RecyclerView_reverseLayout = 3;
+ public static final int RecyclerView_spanCount = 2;
+ public static final int RecyclerView_stackFromEnd = 4;
+ public static final int[] ScrimInsetsFrameLayout = { 0x7f0100f2 };
+ public static final int ScrimInsetsFrameLayout_insetForeground = 0;
+ public static final int[] ScrollingViewBehavior_Params = { 0x7f0100f3 };
+ public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f010101 };
+ public static final int SnackbarLayout_android_maxWidth = 0;
+ public static final int SnackbarLayout_elevation = 1;
+ public static final int SnackbarLayout_maxActionInlineWidth = 2;
+ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 3;
+ public static final int Spinner_android_entries = 0;
+ public static final int Spinner_android_popupBackground = 1;
+ public static final int Spinner_android_prompt = 2;
+ public static final int Spinner_popupTheme = 4;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f };
+ public static final int TabItem_android_icon = 0;
+ public static final int TabItem_android_layout = 1;
+ public static final int TabItem_android_text = 2;
+ public static final int[] TabLayout = { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 };
+ public static final int TabLayout_tabBackground = 3;
+ public static final int TabLayout_tabContentStart = 2;
+ public static final int TabLayout_tabGravity = 5;
+ public static final int TabLayout_tabIndicatorColor = 0;
+ public static final int TabLayout_tabIndicatorHeight = 1;
+ public static final int TabLayout_tabMaxWidth = 7;
+ public static final int TabLayout_tabMinWidth = 6;
+ public static final int TabLayout_tabMode = 4;
+ public static final int TabLayout_tabPadding = 15;
+ public static final int TabLayout_tabPaddingBottom = 14;
+ public static final int TabLayout_tabPaddingEnd = 13;
+ public static final int TabLayout_tabPaddingStart = 11;
+ public static final int TabLayout_tabPaddingTop = 12;
+ public static final int TabLayout_tabSelectedTextColor = 10;
+ public static final int TabLayout_tabTextAppearance = 8;
+ public static final int TabLayout_tabTextColor = 9;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 };
+ public static final int TextInputLayout_android_hint = 1;
+ public static final int TextInputLayout_android_textColorHint = 0;
+ public static final int TextInputLayout_counterEnabled = 6;
+ public static final int TextInputLayout_counterMaxLength = 7;
+ public static final int TextInputLayout_counterOverflowTextAppearance = 9;
+ public static final int TextInputLayout_counterTextAppearance = 8;
+ public static final int TextInputLayout_errorEnabled = 4;
+ public static final int TextInputLayout_errorTextAppearance = 5;
+ public static final int TextInputLayout_hintAnimationEnabled = 10;
+ public static final int TextInputLayout_hintEnabled = 3;
+ public static final int TextInputLayout_hintTextAppearance = 2;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+ public static final class xml {
+ public static final int preferences = 0x7f060000;
+ public static final int settings = 0x7f060001;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/com/documentscanner/test/R.java b/android/build/generated/source/r/androidTest/debug/com/documentscanner/test/R.java
new file mode 100644
index 000000000..aa902aaba
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/com/documentscanner/test/R.java
@@ -0,0 +1,9645 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.documentscanner.test;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in=0x7f050000;
+ public static final int abc_fade_out=0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom=0x7f050002;
+ public static final int abc_popup_enter=0x7f050003;
+ public static final int abc_popup_exit=0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
+ public static final int abc_slide_in_bottom=0x7f050006;
+ public static final int abc_slide_in_top=0x7f050007;
+ public static final int abc_slide_out_bottom=0x7f050008;
+ public static final int abc_slide_out_top=0x7f050009;
+ public static final int catalyst_push_up_in=0x7f05000a;
+ public static final int catalyst_push_up_out=0x7f05000b;
+ public static final int design_bottom_sheet_slide_in=0x7f05000c;
+ public static final int design_bottom_sheet_slide_out=0x7f05000d;
+ public static final int design_fab_in=0x7f05000e;
+ public static final int design_fab_out=0x7f05000f;
+ public static final int design_snackbar_in=0x7f050010;
+ public static final int design_snackbar_out=0x7f050011;
+ }
+ public static final class attr {
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarDivider=0x7f01003e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarItemBackground=0x7f01003f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarPopupTheme=0x7f010038;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ */
+ public static final int actionBarSize=0x7f01003d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarSplitStyle=0x7f01003a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarStyle=0x7f010039;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabBarStyle=0x7f010034;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabStyle=0x7f010033;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabTextStyle=0x7f010035;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTheme=0x7f01003b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarWidgetTheme=0x7f01003c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionButtonStyle=0x7f010058;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionDropDownStyle=0x7f010054;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionLayout=0x7f0100e2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionMenuTextAppearance=0x7f010040;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int actionMenuTextColor=0x7f010041;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeBackground=0x7f010044;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCloseButtonStyle=0x7f010043;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCloseDrawable=0x7f010046;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCopyDrawable=0x7f010048;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCutDrawable=0x7f010047;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeFindDrawable=0x7f01004c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModePasteDrawable=0x7f010049;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModePopupWindowStyle=0x7f01004e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeSelectAllDrawable=0x7f01004a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeShareDrawable=0x7f01004b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeSplitBackground=0x7f010045;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeStyle=0x7f010042;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeWebSearchDrawable=0x7f01004d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionOverflowButtonStyle=0x7f010036;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionOverflowMenuStyle=0x7f010037;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int actionProviderClass=0x7f0100e4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int actionViewClass=0x7f0100e3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int activityChooserViewStyle=0x7f010060;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static final int actualImageScaleType=0x7f0100d1;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogButtonGroupStyle=0x7f010083;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int alertDialogCenterButtons=0x7f010084;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogStyle=0x7f010082;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogTheme=0x7f010085;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int allowStacking=0x7f01009b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int arrowHeadLength=0x7f0100bc;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int arrowShaftLength=0x7f0100bd;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int autoCompleteTextViewStyle=0x7f01008a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int background=0x7f01000c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int backgroundImage=0x7f0100d2;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int backgroundSplit=0x7f01000e;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int backgroundStacked=0x7f01000d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int backgroundTint=0x7f010134;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static final int backgroundTintMode=0x7f010135;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int barLength=0x7f0100be;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int behavior_hideable=0x7f010098;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int behavior_overlapTop=0x7f0100f3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int behavior_peekHeight=0x7f010097;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int borderWidth=0x7f0100c3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int borderlessButtonStyle=0x7f01005d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int bottomSheetDialogTheme=0x7f0100b5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int bottomSheetStyle=0x7f0100b6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarButtonStyle=0x7f01005a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarNegativeButtonStyle=0x7f010088;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarNeutralButtonStyle=0x7f010089;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarPositiveButtonStyle=0x7f010087;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarStyle=0x7f010059;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonPanelSideLayout=0x7f01001f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonStyle=0x7f01008b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonStyleSmall=0x7f01008c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int buttonTint=0x7f0100ad;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static final int buttonTintMode=0x7f0100ae;
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static final int camera_id=0x7f01009d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int checkboxStyle=0x7f01008d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int checkedTextViewStyle=0x7f01008e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int closeIcon=0x7f0100f8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int closeItemLayout=0x7f01001c;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int collapseContentDescription=0x7f01012b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int collapseIcon=0x7f01012a;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static final int collapsedTitleGravity=0x7f0100aa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int collapsedTitleTextAppearance=0x7f0100a6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int color=0x7f0100b8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorAccent=0x7f01007b;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorButtonNormal=0x7f01007f;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlActivated=0x7f01007d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlHighlight=0x7f01007e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlNormal=0x7f01007c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorPrimary=0x7f010079;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorPrimaryDark=0x7f01007a;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorSwitchThumbNormal=0x7f010080;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int commitIcon=0x7f0100fd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetEnd=0x7f010017;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetLeft=0x7f010018;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetRight=0x7f010019;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetStart=0x7f010016;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentScrim=0x7f0100a7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int controlBackground=0x7f010081;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int counterEnabled=0x7f01011d;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int counterMaxLength=0x7f01011e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int counterOverflowTextAppearance=0x7f010120;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int counterTextAppearance=0x7f01011f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int customNavigationLayout=0x7f01000f;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int defaultQueryHint=0x7f0100f7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dialogPreferredPadding=0x7f010052;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dialogTheme=0x7f010051;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ */
+ public static final int displayOptions=0x7f010005;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int divider=0x7f01000b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dividerHorizontal=0x7f01005f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dividerPadding=0x7f0100e0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dividerVertical=0x7f01005e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int drawableSize=0x7f0100ba;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int drawerArrowStyle=0x7f010000;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dropDownListViewStyle=0x7f010071;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dropdownListPreferredItemHeight=0x7f010055;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int editTextBackground=0x7f010066;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int editTextColor=0x7f010065;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int editTextStyle=0x7f01008f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int elevation=0x7f01001a;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int errorEnabled=0x7f01011b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int errorTextAppearance=0x7f01011c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expanded=0x7f010024;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static final int expandedTitleGravity=0x7f0100ab;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expandedTitleMargin=0x7f0100a0;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expandedTitleMarginBottom=0x7f0100a4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expandedTitleMarginEnd=0x7f0100a3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expandedTitleMarginStart=0x7f0100a1;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int expandedTitleMarginTop=0x7f0100a2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int expandedTitleTextAppearance=0x7f0100a5;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ */
+ public static final int fabSize=0x7f0100c1;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int fadeDuration=0x7f0100c6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int failureImage=0x7f0100cc;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static final int failureImageScaleType=0x7f0100cd;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int foregroundInsidePadding=0x7f0100c5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int gapBetweenBars=0x7f0100bb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int goIcon=0x7f0100f9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int headerLayout=0x7f0100eb;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int height=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int hideOnContentScroll=0x7f010015;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int hintAnimationEnabled=0x7f010121;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int hintEnabled=0x7f01011a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int hintTextAppearance=0x7f010119;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int homeAsUpIndicator=0x7f010057;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int homeLayout=0x7f010010;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int icon=0x7f010009;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int iconifiedByDefault=0x7f0100f5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int imageButtonStyle=0x7f010067;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int indeterminateProgressStyle=0x7f010012;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int initialActivityCount=0x7f01001d;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int insetForeground=0x7f0100f2;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int isLightTheme=0x7f010002;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int itemBackground=0x7f0100e9;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int itemIconTint=0x7f0100e7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int itemPadding=0x7f010014;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int itemTextAppearance=0x7f0100ea;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int itemTextColor=0x7f0100e8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int keylines=0x7f0100af;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int layout=0x7f0100f4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int layoutManager=0x7f0100ee;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int layout_anchor=0x7f0100b2;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static final int layout_anchorGravity=0x7f0100b4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int layout_behavior=0x7f0100b1;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ */
+ public static final int layout_collapseMode=0x7f01009e;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int layout_collapseParallaxMultiplier=0x7f01009f;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int layout_keyline=0x7f0100b3;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ */
+ public static final int layout_scrollFlags=0x7f010025;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int layout_scrollInterpolator=0x7f010026;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listChoiceBackgroundIndicator=0x7f010078;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listDividerAlertDialog=0x7f010053;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listItemLayout=0x7f010023;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listLayout=0x7f010020;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listPopupWindowStyle=0x7f010072;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeight=0x7f01006c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightLarge=0x7f01006e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightSmall=0x7f01006d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingLeft=0x7f01006f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingRight=0x7f010070;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int logo=0x7f01000a;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int logoDescription=0x7f01012e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int maxActionInlineWidth=0x7f010101;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int maxButtonHeight=0x7f010129;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int measureWithLargestChild=0x7f0100de;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int menu=0x7f0100e6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int metaButtonBarButtonStyle=0x7f01009a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int metaButtonBarStyle=0x7f010099;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int multiChoiceItemLayout=0x7f010021;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int navigationContentDescription=0x7f01012d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int navigationIcon=0x7f01012c;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ */
+ public static final int navigationMode=0x7f010004;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int overlapAnchor=0x7f0100ec;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int overlayImage=0x7f0100d3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int paddingEnd=0x7f010132;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int paddingStart=0x7f010131;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int panelBackground=0x7f010075;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int panelMenuListTheme=0x7f010077;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int panelMenuListWidth=0x7f010076;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int placeholderImage=0x7f0100c8;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static final int placeholderImageScaleType=0x7f0100c9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupMenuStyle=0x7f010063;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupTheme=0x7f01001b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupWindowStyle=0x7f010064;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int preserveIconSpacing=0x7f0100e5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int pressedStateOverlayImage=0x7f0100d4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int pressedTranslationZ=0x7f0100c2;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int progressBarAutoRotateInterval=0x7f0100d0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int progressBarImage=0x7f0100ce;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static final int progressBarImageScaleType=0x7f0100cf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int progressBarPadding=0x7f010013;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int progressBarStyle=0x7f010011;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int queryBackground=0x7f0100ff;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int queryHint=0x7f0100f6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int radioButtonStyle=0x7f010090;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int ratingBarStyle=0x7f010091;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int ratingBarStyleIndicator=0x7f010092;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int ratingBarStyleSmall=0x7f010093;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int retryImage=0x7f0100ca;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static final int retryImageScaleType=0x7f0100cb;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int reverseLayout=0x7f0100f0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int rippleColor=0x7f0100c0;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundAsCircle=0x7f0100d5;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundBottomLeft=0x7f0100da;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundBottomRight=0x7f0100d9;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundTopLeft=0x7f0100d7;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundTopRight=0x7f0100d8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundWithOverlayColor=0x7f0100db;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundedCornerRadius=0x7f0100d6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundingBorderColor=0x7f0100dd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int roundingBorderWidth=0x7f0100dc;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchHintIcon=0x7f0100fb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchIcon=0x7f0100fa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchViewStyle=0x7f01006b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int seekBarStyle=0x7f010094;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int selectableItemBackground=0x7f01005b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int selectableItemBackgroundBorderless=0x7f01005c;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ */
+ public static final int showAsAction=0x7f0100e1;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ */
+ public static final int showDividers=0x7f0100df;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int showText=0x7f010108;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int show_fps=0x7f01009c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int singleChoiceItemLayout=0x7f010022;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int spanCount=0x7f0100ef;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int spinBars=0x7f0100b9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int spinnerDropDownItemStyle=0x7f010056;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int spinnerStyle=0x7f010095;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int splitTrack=0x7f010107;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int srcCompat=0x7f010027;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int stackFromEnd=0x7f0100f1;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int state_above_anchor=0x7f0100ed;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int statusBarBackground=0x7f0100b0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int statusBarScrim=0x7f0100a8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int submitBackground=0x7f010100;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int subtitle=0x7f010006;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int subtitleTextAppearance=0x7f010123;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int subtitleTextColor=0x7f010130;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int subtitleTextStyle=0x7f010008;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int suggestionRowLayout=0x7f0100fe;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int switchMinWidth=0x7f010105;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int switchPadding=0x7f010106;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int switchStyle=0x7f010096;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int switchTextAppearance=0x7f010104;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int tabBackground=0x7f01010c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabContentStart=0x7f01010b;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ */
+ public static final int tabGravity=0x7f01010e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabIndicatorColor=0x7f010109;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabIndicatorHeight=0x7f01010a;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabMaxWidth=0x7f010110;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabMinWidth=0x7f01010f;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ */
+ public static final int tabMode=0x7f01010d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabPadding=0x7f010118;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabPaddingBottom=0x7f010117;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabPaddingEnd=0x7f010116;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabPaddingStart=0x7f010114;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabPaddingTop=0x7f010115;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabSelectedTextColor=0x7f010113;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int tabTextAppearance=0x7f010111;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int tabTextColor=0x7f010112;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ */
+ public static final int textAllCaps=0x7f010028;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceLargePopupMenu=0x7f01004f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceListItem=0x7f010073;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceListItemSmall=0x7f010074;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSearchResultSubtitle=0x7f010069;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSearchResultTitle=0x7f010068;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSmallPopupMenu=0x7f010050;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int textColorAlertDialogListItem=0x7f010086;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int textColorError=0x7f0100b7;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int textColorSearchUrl=0x7f01006a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int theme=0x7f010133;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int thickness=0x7f0100bf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int thumbTextPadding=0x7f010103;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int title=0x7f010003;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleEnabled=0x7f0100ac;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginBottom=0x7f010128;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginEnd=0x7f010126;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginStart=0x7f010125;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginTop=0x7f010127;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMargins=0x7f010124;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int titleTextAppearance=0x7f010122;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleTextColor=0x7f01012f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int titleTextStyle=0x7f010007;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int toolbarId=0x7f0100a9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int toolbarNavigationButtonStyle=0x7f010062;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int toolbarStyle=0x7f010061;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int track=0x7f010102;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int useCompatPadding=0x7f0100c4;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int viewAspectRatio=0x7f0100c7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int voiceIcon=0x7f0100fc;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionBar=0x7f010029;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionBarOverlay=0x7f01002b;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionModeOverlay=0x7f01002c;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMajor=0x7f010030;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMinor=0x7f01002e;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMajor=0x7f01002d;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMinor=0x7f01002f;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMajor=0x7f010031;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMinor=0x7f010032;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowNoTitle=0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs=0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080004;
+ public static final int abc_allow_stacked_button_bar=0x7f080000;
+ public static final int abc_config_actionMenuItemAllCaps=0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside=0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark=0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light=0x7f0c004a;
+ public static final int abc_color_highlight_material=0x7f0c004b;
+ public static final int abc_input_method_navigation_guard=0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark=0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light=0x7f0c004d;
+ public static final int abc_primary_text_material_dark=0x7f0c004e;
+ public static final int abc_primary_text_material_light=0x7f0c004f;
+ public static final int abc_search_url_text=0x7f0c0050;
+ public static final int abc_search_url_text_normal=0x7f0c0001;
+ public static final int abc_search_url_text_pressed=0x7f0c0002;
+ public static final int abc_search_url_text_selected=0x7f0c0003;
+ public static final int abc_secondary_text_material_dark=0x7f0c0051;
+ public static final int abc_secondary_text_material_light=0x7f0c0052;
+ public static final int accent_material_dark=0x7f0c0004;
+ public static final int accent_material_light=0x7f0c0005;
+ public static final int background_floating_material_dark=0x7f0c0006;
+ public static final int background_floating_material_light=0x7f0c0007;
+ public static final int background_material_dark=0x7f0c0008;
+ public static final int background_material_light=0x7f0c0009;
+ public static final int black_overlay=0x7f0c000a;
+ public static final int bright_foreground_disabled_material_dark=0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light=0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark=0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light=0x7f0c000e;
+ public static final int bright_foreground_material_dark=0x7f0c000f;
+ public static final int bright_foreground_material_light=0x7f0c0010;
+ public static final int button_material_dark=0x7f0c0011;
+ public static final int button_material_light=0x7f0c0012;
+ public static final int catalyst_redbox_background=0x7f0c0013;
+ public static final int colorAccent=0x7f0c0014;
+ public static final int colorPrimary=0x7f0c0015;
+ public static final int colorPrimaryDark=0x7f0c0016;
+ public static final int design_fab_shadow_end_color=0x7f0c0017;
+ public static final int design_fab_shadow_mid_color=0x7f0c0018;
+ public static final int design_fab_shadow_start_color=0x7f0c0019;
+ public static final int design_fab_stroke_end_inner_color=0x7f0c001a;
+ public static final int design_fab_stroke_end_outer_color=0x7f0c001b;
+ public static final int design_fab_stroke_top_inner_color=0x7f0c001c;
+ public static final int design_fab_stroke_top_outer_color=0x7f0c001d;
+ public static final int design_snackbar_background_color=0x7f0c001e;
+ public static final int design_textinput_error_color_dark=0x7f0c001f;
+ public static final int design_textinput_error_color_light=0x7f0c0020;
+ public static final int dim_foreground_disabled_material_dark=0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light=0x7f0c0022;
+ public static final int dim_foreground_material_dark=0x7f0c0023;
+ public static final int dim_foreground_material_light=0x7f0c0024;
+ public static final int foreground_material_dark=0x7f0c0025;
+ public static final int foreground_material_light=0x7f0c0026;
+ public static final int highlighted_text_material_dark=0x7f0c0027;
+ public static final int highlighted_text_material_light=0x7f0c0028;
+ public static final int hint_foreground_material_dark=0x7f0c0029;
+ public static final int hint_foreground_material_light=0x7f0c002a;
+ public static final int material_blue_grey_800=0x7f0c002b;
+ public static final int material_blue_grey_900=0x7f0c002c;
+ public static final int material_blue_grey_950=0x7f0c002d;
+ public static final int material_deep_teal_200=0x7f0c002e;
+ public static final int material_deep_teal_500=0x7f0c002f;
+ public static final int material_grey_100=0x7f0c0030;
+ public static final int material_grey_300=0x7f0c0031;
+ public static final int material_grey_50=0x7f0c0032;
+ public static final int material_grey_600=0x7f0c0033;
+ public static final int material_grey_800=0x7f0c0034;
+ public static final int material_grey_850=0x7f0c0035;
+ public static final int material_grey_900=0x7f0c0036;
+ public static final int primary_dark_material_dark=0x7f0c0037;
+ public static final int primary_dark_material_light=0x7f0c0038;
+ public static final int primary_material_dark=0x7f0c0039;
+ public static final int primary_material_light=0x7f0c003a;
+ public static final int primary_text_default_material_dark=0x7f0c003b;
+ public static final int primary_text_default_material_light=0x7f0c003c;
+ public static final int primary_text_disabled_material_dark=0x7f0c003d;
+ public static final int primary_text_disabled_material_light=0x7f0c003e;
+ public static final int ripple_material_dark=0x7f0c003f;
+ public static final int ripple_material_light=0x7f0c0040;
+ public static final int secondary_text_default_material_dark=0x7f0c0041;
+ public static final int secondary_text_default_material_light=0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark=0x7f0c0043;
+ public static final int secondary_text_disabled_material_light=0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark=0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light=0x7f0c0046;
+ public static final int switch_thumb_material_dark=0x7f0c0053;
+ public static final int switch_thumb_material_light=0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark=0x7f0c0047;
+ public static final int switch_thumb_normal_material_light=0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material=0x7f09000d;
+ public static final int abc_action_bar_default_height_material=0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material=0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material=0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material=0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material=0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material=0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size=0x7f090002;
+ public static final int abc_action_bar_stacked_max_height=0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width=0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material=0x7f090020;
+ public static final int abc_action_button_min_height_material=0x7f090021;
+ public static final int abc_action_button_min_width_material=0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material=0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height=0x7f090000;
+ public static final int abc_button_inset_horizontal_material=0x7f090024;
+ public static final int abc_button_inset_vertical_material=0x7f090025;
+ public static final int abc_button_padding_horizontal_material=0x7f090026;
+ public static final int abc_button_padding_vertical_material=0x7f090027;
+ public static final int abc_config_prefDialogWidth=0x7f090005;
+ public static final int abc_control_corner_material=0x7f090028;
+ public static final int abc_control_inset_material=0x7f090029;
+ public static final int abc_control_padding_material=0x7f09002a;
+ public static final int abc_dialog_fixed_height_major=0x7f090006;
+ public static final int abc_dialog_fixed_height_minor=0x7f090007;
+ public static final int abc_dialog_fixed_width_major=0x7f090008;
+ public static final int abc_dialog_fixed_width_minor=0x7f090009;
+ public static final int abc_dialog_list_padding_vertical_material=0x7f09002b;
+ public static final int abc_dialog_min_width_major=0x7f09000a;
+ public static final int abc_dialog_min_width_minor=0x7f09000b;
+ public static final int abc_dialog_padding_material=0x7f09002c;
+ public static final int abc_dialog_padding_top_material=0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark=0x7f09002e;
+ public static final int abc_disabled_alpha_material_light=0x7f09002f;
+ public static final int abc_dropdownitem_icon_width=0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left=0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right=0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material=0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material=0x7f090034;
+ public static final int abc_edit_text_inset_top_material=0x7f090035;
+ public static final int abc_floating_window_z=0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material=0x7f090037;
+ public static final int abc_panel_menu_list_width=0x7f090038;
+ public static final int abc_search_view_preferred_width=0x7f090039;
+ public static final int abc_search_view_text_min_width=0x7f09000c;
+ public static final int abc_seekbar_track_background_height_material=0x7f09003a;
+ public static final int abc_seekbar_track_progress_height_material=0x7f09003b;
+ public static final int abc_select_dialog_padding_start_material=0x7f09003c;
+ public static final int abc_switch_padding=0x7f090018;
+ public static final int abc_text_size_body_1_material=0x7f09003d;
+ public static final int abc_text_size_body_2_material=0x7f09003e;
+ public static final int abc_text_size_button_material=0x7f09003f;
+ public static final int abc_text_size_caption_material=0x7f090040;
+ public static final int abc_text_size_display_1_material=0x7f090041;
+ public static final int abc_text_size_display_2_material=0x7f090042;
+ public static final int abc_text_size_display_3_material=0x7f090043;
+ public static final int abc_text_size_display_4_material=0x7f090044;
+ public static final int abc_text_size_headline_material=0x7f090045;
+ public static final int abc_text_size_large_material=0x7f090046;
+ public static final int abc_text_size_medium_material=0x7f090047;
+ public static final int abc_text_size_menu_material=0x7f090048;
+ public static final int abc_text_size_small_material=0x7f090049;
+ public static final int abc_text_size_subhead_material=0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar=0x7f090003;
+ public static final int abc_text_size_title_material=0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar=0x7f090004;
+ public static final int activity_horizontal_margin=0x7f090019;
+ public static final int activity_vertical_margin=0x7f09004c;
+ public static final int design_appbar_elevation=0x7f09004d;
+ public static final int design_bottom_sheet_modal_elevation=0x7f09004e;
+ public static final int design_bottom_sheet_modal_peek_height=0x7f09004f;
+ public static final int design_fab_border_width=0x7f090050;
+ public static final int design_fab_elevation=0x7f090051;
+ public static final int design_fab_image_size=0x7f090052;
+ public static final int design_fab_size_mini=0x7f090053;
+ public static final int design_fab_size_normal=0x7f090054;
+ public static final int design_fab_translation_z_pressed=0x7f090055;
+ public static final int design_navigation_elevation=0x7f090056;
+ public static final int design_navigation_icon_padding=0x7f090057;
+ public static final int design_navigation_icon_size=0x7f090058;
+ public static final int design_navigation_max_width=0x7f090010;
+ public static final int design_navigation_padding_bottom=0x7f090059;
+ public static final int design_navigation_separator_vertical_padding=0x7f09005a;
+ public static final int design_snackbar_action_inline_max_width=0x7f090011;
+ public static final int design_snackbar_background_corner_radius=0x7f090012;
+ public static final int design_snackbar_elevation=0x7f09005b;
+ public static final int design_snackbar_extra_spacing_horizontal=0x7f090013;
+ public static final int design_snackbar_max_width=0x7f090014;
+ public static final int design_snackbar_min_width=0x7f090015;
+ public static final int design_snackbar_padding_horizontal=0x7f09005c;
+ public static final int design_snackbar_padding_vertical=0x7f09005d;
+ public static final int design_snackbar_padding_vertical_2lines=0x7f090016;
+ public static final int design_snackbar_text_size=0x7f09005e;
+ public static final int design_tab_max_width=0x7f09005f;
+ public static final int design_tab_scrollable_min_width=0x7f090017;
+ public static final int design_tab_text_size=0x7f090060;
+ public static final int design_tab_text_size_2line=0x7f090061;
+ public static final int disabled_alpha_material_dark=0x7f090062;
+ public static final int disabled_alpha_material_light=0x7f090063;
+ public static final int fab_margin=0x7f090064;
+ public static final int highlight_alpha_material_colored=0x7f090065;
+ public static final int highlight_alpha_material_dark=0x7f090066;
+ public static final int highlight_alpha_material_light=0x7f090067;
+ public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090068;
+ public static final int item_touch_helper_swipe_escape_max_velocity=0x7f090069;
+ public static final int item_touch_helper_swipe_escape_velocity=0x7f09006a;
+ public static final int nav_header_height=0x7f09006b;
+ public static final int nav_header_vertical_spacing=0x7f09006c;
+ public static final int notification_large_icon_height=0x7f09006d;
+ public static final int notification_large_icon_width=0x7f09006e;
+ public static final int notification_subtext_size=0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+ public static final int abc_action_bar_item_background_material=0x7f020001;
+ public static final int abc_btn_borderless_material=0x7f020002;
+ public static final int abc_btn_check_material=0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
+ public static final int abc_btn_colored_material=0x7f020006;
+ public static final int abc_btn_default_mtrl_shape=0x7f020007;
+ public static final int abc_btn_radio_material=0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
+ public static final int abc_cab_background_internal_bg=0x7f02000f;
+ public static final int abc_cab_background_top_material=0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
+ public static final int abc_control_background_material=0x7f020012;
+ public static final int abc_dialog_material_background_dark=0x7f020013;
+ public static final int abc_dialog_material_background_light=0x7f020014;
+ public static final int abc_edit_text_material=0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
+ public static final int abc_ic_star_black_16dp=0x7f020021;
+ public static final int abc_ic_star_black_36dp=0x7f020022;
+ public static final int abc_ic_star_half_black_16dp=0x7f020023;
+ public static final int abc_ic_star_half_black_36dp=0x7f020024;
+ public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020025;
+ public static final int abc_item_background_holo_dark=0x7f020026;
+ public static final int abc_item_background_holo_light=0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha=0x7f020028;
+ public static final int abc_list_focused_holo=0x7f020029;
+ public static final int abc_list_longpressed_holo=0x7f02002a;
+ public static final int abc_list_pressed_holo_dark=0x7f02002b;
+ public static final int abc_list_pressed_holo_light=0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light=0x7f020030;
+ public static final int abc_list_selector_holo_dark=0x7f020031;
+ public static final int abc_list_selector_holo_light=0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
+ public static final int abc_popup_background_mtrl_mult=0x7f020034;
+ public static final int abc_ratingbar_full_material=0x7f020035;
+ public static final int abc_ratingbar_indicator_material=0x7f020036;
+ public static final int abc_ratingbar_small_material=0x7f020037;
+ public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
+ public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
+ public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
+ public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
+ public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
+ public static final int abc_seekbar_thumb_material=0x7f02003d;
+ public static final int abc_seekbar_track_material=0x7f02003e;
+ public static final int abc_spinner_mtrl_am_alpha=0x7f02003f;
+ public static final int abc_spinner_textfield_background_material=0x7f020040;
+ public static final int abc_switch_thumb_material=0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha=0x7f020042;
+ public static final int abc_tab_indicator_material=0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha=0x7f020044;
+ public static final int abc_text_cursor_material=0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha=0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha=0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049;
+ public static final int abc_textfield_search_material=0x7f02004a;
+ public static final int angle=0x7f02004b;
+ public static final int button_background=0x7f02004c;
+ public static final int design_fab_background=0x7f02004d;
+ public static final int design_snackbar_background=0x7f02004e;
+ public static final int ic_arrow_back_24dp=0x7f02004f;
+ public static final int ic_camera_green=0x7f020050;
+ public static final int ic_delete_white_24dp=0x7f020051;
+ public static final int ic_done_all_24dp=0x7f020052;
+ public static final int ic_find_in_page=0x7f020053;
+ public static final int ic_flash_on_24dp=0x7f020054;
+ public static final int ic_info_outline_white_24px=0x7f020055;
+ public static final int ic_launcher_background=0x7f020056;
+ public static final int ic_launcher_foreground=0x7f020057;
+ public static final int ic_menu_camera=0x7f020058;
+ public static final int ic_menu_gallery=0x7f020059;
+ public static final int ic_menu_manage=0x7f02005a;
+ public static final int ic_menu_send=0x7f02005b;
+ public static final int ic_menu_share=0x7f02005c;
+ public static final int ic_menu_slideshow=0x7f02005d;
+ public static final int ic_menu_tag=0x7f02005e;
+ public static final int ic_monochrome=0x7f02005f;
+ public static final int ic_palette=0x7f020060;
+ public static final int ic_photo_filter_white_24dp=0x7f020061;
+ public static final int ic_settings=0x7f020062;
+ public static final int ic_tag_bell=0x7f020063;
+ public static final int ic_tag_game=0x7f020064;
+ public static final int ic_tag_gift=0x7f020065;
+ public static final int ic_tag_magnet=0x7f020066;
+ public static final int ic_tag_rocket=0x7f020067;
+ public static final int ic_tag_star=0x7f020068;
+ public static final int ic_tag_tv=0x7f020069;
+ public static final int notification_template_icon_bg=0x7f02006c;
+ public static final int round_button=0x7f02006a;
+ public static final int side_nav_bar=0x7f02006b;
+ }
+ public static final class id {
+ public static final int about_container=0x7f0d0074;
+ public static final int about_markdown=0x7f0d0075;
+ public static final int about_shareapp=0x7f0d0076;
+ public static final int about_view=0x7f0d0073;
+ public static final int action0=0x7f0d008a;
+ public static final int action_about=0x7f0d00a9;
+ public static final int action_bar=0x7f0d0064;
+ public static final int action_bar_activity_content=0x7f0d0000;
+ public static final int action_bar_container=0x7f0d0063;
+ public static final int action_bar_root=0x7f0d005f;
+ public static final int action_bar_spinner=0x7f0d0001;
+ public static final int action_bar_subtitle=0x7f0d0045;
+ public static final int action_bar_title=0x7f0d0044;
+ public static final int action_context_bar=0x7f0d0065;
+ public static final int action_delete=0x7f0d00a6;
+ public static final int action_divider=0x7f0d008e;
+ public static final int action_menu_divider=0x7f0d0002;
+ public static final int action_menu_presenter=0x7f0d0003;
+ public static final int action_mode_bar=0x7f0d0061;
+ public static final int action_mode_bar_stub=0x7f0d0060;
+ public static final int action_mode_close_button=0x7f0d0046;
+ public static final int action_share=0x7f0d00a8;
+ public static final int action_tag=0x7f0d00a7;
+ public static final int activity_chooser_view_content=0x7f0d0047;
+ public static final int alertTitle=0x7f0d0053;
+ public static final int always=0x7f0d003d;
+ public static final int any=0x7f0d001b;
+ public static final int back=0x7f0d001c;
+ public static final int beginning=0x7f0d003b;
+ public static final int bottom=0x7f0d0020;
+ public static final int buttonBell=0x7f0d00a1;
+ public static final int buttonGame=0x7f0d00a2;
+ public static final int buttonGift=0x7f0d009f;
+ public static final int buttonMagnet=0x7f0d00a4;
+ public static final int buttonPanel=0x7f0d004e;
+ public static final int buttonRocket=0x7f0d009e;
+ public static final int buttonStar=0x7f0d00a3;
+ public static final int buttonTv=0x7f0d00a0;
+ public static final int cancel_action=0x7f0d008b;
+ public static final int catalyst_redbox_title=0x7f0d0099;
+ public static final int center=0x7f0d0021;
+ public static final int centerCrop=0x7f0d0034;
+ public static final int centerInside=0x7f0d0035;
+ public static final int center_horizontal=0x7f0d0022;
+ public static final int center_vertical=0x7f0d0023;
+ public static final int checkbox=0x7f0d005c;
+ public static final int chronometer=0x7f0d0091;
+ public static final int clip_horizontal=0x7f0d002f;
+ public static final int clip_vertical=0x7f0d0030;
+ public static final int collapseActionView=0x7f0d003e;
+ public static final int colorSquare=0x7f0d0087;
+ public static final int contentPanel=0x7f0d0054;
+ public static final int custom=0x7f0d005a;
+ public static final int customPanel=0x7f0d0059;
+ public static final int decor_content_parent=0x7f0d0062;
+ public static final int default_activity_button=0x7f0d004a;
+ public static final int design_bottom_sheet=0x7f0d007e;
+ public static final int design_menu_item_action_area=0x7f0d0085;
+ public static final int design_menu_item_action_area_stub=0x7f0d0084;
+ public static final int design_menu_item_text=0x7f0d0083;
+ public static final int design_navigation_view=0x7f0d0082;
+ public static final int disableHome=0x7f0d000e;
+ public static final int edit_query=0x7f0d0066;
+ public static final int end=0x7f0d0024;
+ public static final int end_padder=0x7f0d0096;
+ public static final int enterAlways=0x7f0d0015;
+ public static final int enterAlwaysCollapsed=0x7f0d0016;
+ public static final int exitUntilCollapsed=0x7f0d0017;
+ public static final int expand_activities_button=0x7f0d0048;
+ public static final int expanded_menu=0x7f0d005b;
+ public static final int fill=0x7f0d0031;
+ public static final int fill_horizontal=0x7f0d0032;
+ public static final int fill_vertical=0x7f0d0025;
+ public static final int fitCenter=0x7f0d0036;
+ public static final int fitEnd=0x7f0d0037;
+ public static final int fitStart=0x7f0d0038;
+ public static final int fitXY=0x7f0d0039;
+ public static final int fixed=0x7f0d0042;
+ public static final int focusCrop=0x7f0d003a;
+ public static final int fps_text=0x7f0d0086;
+ public static final int front=0x7f0d001d;
+ public static final int gallery_image=0x7f0d0088;
+ public static final int home=0x7f0d0004;
+ public static final int homeAsUp=0x7f0d000f;
+ public static final int hud=0x7f0d007b;
+ public static final int icon=0x7f0d004c;
+ public static final int ifRoom=0x7f0d003f;
+ public static final int image=0x7f0d0049;
+ public static final int imgDisplay=0x7f0d0089;
+ public static final int info=0x7f0d0095;
+ public static final int item_touch_helper_previous_elevation=0x7f0d0005;
+ public static final int left=0x7f0d0026;
+ public static final int line1=0x7f0d008f;
+ public static final int line3=0x7f0d0093;
+ public static final int linearLayout=0x7f0d009d;
+ public static final int listMode=0x7f0d000b;
+ public static final int list_item=0x7f0d004b;
+ public static final int media_actions=0x7f0d008d;
+ public static final int middle=0x7f0d003c;
+ public static final int mini=0x7f0d0033;
+ public static final int multiply=0x7f0d002a;
+ public static final int navigation_header_container=0x7f0d0081;
+ public static final int never=0x7f0d0040;
+ public static final int none=0x7f0d0010;
+ public static final int normal=0x7f0d000c;
+ public static final int pager=0x7f0d0077;
+ public static final int parallax=0x7f0d001e;
+ public static final int parentPanel=0x7f0d0050;
+ public static final int pin=0x7f0d001f;
+ public static final int progress_circular=0x7f0d0006;
+ public static final int progress_horizontal=0x7f0d0007;
+ public static final int radio=0x7f0d005e;
+ public static final int recyclerview=0x7f0d0078;
+ public static final int right=0x7f0d0027;
+ public static final int rn_frame_file=0x7f0d0098;
+ public static final int rn_frame_method=0x7f0d0097;
+ public static final int rn_redbox_reloadjs=0x7f0d009b;
+ public static final int rn_redbox_stack=0x7f0d009a;
+ public static final int scannedAnimation=0x7f0d007a;
+ public static final int screen=0x7f0d002b;
+ public static final int scroll=0x7f0d0018;
+ public static final int scrollIndicatorDown=0x7f0d0058;
+ public static final int scrollIndicatorUp=0x7f0d0055;
+ public static final int scrollView=0x7f0d0056;
+ public static final int scrollable=0x7f0d0043;
+ public static final int search_badge=0x7f0d0068;
+ public static final int search_bar=0x7f0d0067;
+ public static final int search_button=0x7f0d0069;
+ public static final int search_close_btn=0x7f0d006e;
+ public static final int search_edit_frame=0x7f0d006a;
+ public static final int search_go_btn=0x7f0d0070;
+ public static final int search_mag_icon=0x7f0d006b;
+ public static final int search_plate=0x7f0d006c;
+ public static final int search_src_text=0x7f0d006d;
+ public static final int search_voice_btn=0x7f0d0071;
+ public static final int select_dialog_listview=0x7f0d0072;
+ public static final int shortcut=0x7f0d005d;
+ public static final int showCustom=0x7f0d0011;
+ public static final int showHome=0x7f0d0012;
+ public static final int showTitle=0x7f0d0013;
+ public static final int snackbar_action=0x7f0d0080;
+ public static final int snackbar_text=0x7f0d007f;
+ public static final int snap=0x7f0d0019;
+ public static final int spacer=0x7f0d004f;
+ public static final int split_action_bar=0x7f0d0008;
+ public static final int src_atop=0x7f0d002c;
+ public static final int src_in=0x7f0d002d;
+ public static final int src_over=0x7f0d002e;
+ public static final int start=0x7f0d0028;
+ public static final int status_bar_latest_event_content=0x7f0d008c;
+ public static final int submit_area=0x7f0d006f;
+ public static final int surfaceView=0x7f0d0079;
+ public static final int tabMode=0x7f0d000d;
+ public static final int tag_done=0x7f0d00a5;
+ public static final int text=0x7f0d0094;
+ public static final int text2=0x7f0d0092;
+ public static final int textSpacerNoButtons=0x7f0d0057;
+ public static final int textView=0x7f0d009c;
+ public static final int time=0x7f0d0090;
+ public static final int title=0x7f0d004d;
+ public static final int title_template=0x7f0d0052;
+ public static final int top=0x7f0d0029;
+ public static final int topPanel=0x7f0d0051;
+ public static final int touch_outside=0x7f0d007d;
+ public static final int up=0x7f0d0009;
+ public static final int useLogo=0x7f0d0014;
+ public static final int view_offset_helper=0x7f0d000a;
+ public static final int wait_spinner=0x7f0d007c;
+ public static final int withText=0x7f0d0041;
+ public static final int wrap_content=0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur=0x7f0b0002;
+ public static final int abc_config_activityShortDur=0x7f0b0003;
+ public static final int abc_max_action_buttons=0x7f0b0000;
+ public static final int bottom_sheet_slide_duration=0x7f0b0004;
+ public static final int cancel_button_image_alpha=0x7f0b0005;
+ public static final int design_snackbar_text_max_lines=0x7f0b0001;
+ public static final int status_bar_notification_info_maxnum=0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item=0x7f040000;
+ public static final int abc_action_bar_up_container=0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
+ public static final int abc_action_menu_item_layout=0x7f040003;
+ public static final int abc_action_menu_layout=0x7f040004;
+ public static final int abc_action_mode_bar=0x7f040005;
+ public static final int abc_action_mode_close_item_material=0x7f040006;
+ public static final int abc_activity_chooser_view=0x7f040007;
+ public static final int abc_activity_chooser_view_list_item=0x7f040008;
+ public static final int abc_alert_dialog_button_bar_material=0x7f040009;
+ public static final int abc_alert_dialog_material=0x7f04000a;
+ public static final int abc_dialog_title_material=0x7f04000b;
+ public static final int abc_expanded_menu_layout=0x7f04000c;
+ public static final int abc_list_menu_item_checkbox=0x7f04000d;
+ public static final int abc_list_menu_item_icon=0x7f04000e;
+ public static final int abc_list_menu_item_layout=0x7f04000f;
+ public static final int abc_list_menu_item_radio=0x7f040010;
+ public static final int abc_popup_menu_item_layout=0x7f040011;
+ public static final int abc_screen_content_include=0x7f040012;
+ public static final int abc_screen_simple=0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode=0x7f040014;
+ public static final int abc_screen_toolbar=0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line=0x7f040016;
+ public static final int abc_search_view=0x7f040017;
+ public static final int abc_select_dialog_material=0x7f040018;
+ public static final int about_view=0x7f040019;
+ public static final int activity_fullscreen_view=0x7f04001a;
+ public static final int activity_gallery=0x7f04001b;
+ public static final int activity_main=0x7f04001c;
+ public static final int activity_open_note_scanner=0x7f04001d;
+ public static final int activity_settings=0x7f04001e;
+ public static final int design_bottom_sheet_dialog=0x7f04001f;
+ public static final int design_layout_snackbar=0x7f040020;
+ public static final int design_layout_snackbar_include=0x7f040021;
+ public static final int design_layout_tab_icon=0x7f040022;
+ public static final int design_layout_tab_text=0x7f040023;
+ public static final int design_menu_item_action_area=0x7f040024;
+ public static final int design_navigation_item=0x7f040025;
+ public static final int design_navigation_item_header=0x7f040026;
+ public static final int design_navigation_item_separator=0x7f040027;
+ public static final int design_navigation_item_subheader=0x7f040028;
+ public static final int design_navigation_menu=0x7f040029;
+ public static final int design_navigation_menu_item=0x7f04002a;
+ public static final int fps_view=0x7f04002b;
+ public static final int gallery_item=0x7f04002c;
+ public static final int layout_fullscreen_image=0x7f04002d;
+ public static final int notification_media_action=0x7f04002e;
+ public static final int notification_media_cancel_action=0x7f04002f;
+ public static final int notification_template_big_media=0x7f040030;
+ public static final int notification_template_big_media_narrow=0x7f040031;
+ public static final int notification_template_lines=0x7f040032;
+ public static final int notification_template_media=0x7f040033;
+ public static final int notification_template_part_chronometer=0x7f040034;
+ public static final int notification_template_part_time=0x7f040035;
+ public static final int redbox_item_frame=0x7f040036;
+ public static final int redbox_item_title=0x7f040037;
+ public static final int redbox_view=0x7f040038;
+ public static final int select_dialog_item_material=0x7f040039;
+ public static final int select_dialog_multichoice_material=0x7f04003a;
+ public static final int select_dialog_singlechoice_material=0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item=0x7f04003c;
+ public static final int tageditor_view=0x7f04003d;
+ }
+ public static final class menu {
+ public static final int menu_gallery=0x7f0e0000;
+ public static final int menu_imagepager=0x7f0e0001;
+ }
+ public static final class mipmap {
+ public static final int ic_launcher=0x7f030000;
+ public static final int ic_launcher_round=0x7f030001;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description=0x7f070000;
+ public static final int abc_action_bar_home_description_format=0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format=0x7f070002;
+ public static final int abc_action_bar_up_description=0x7f070003;
+ public static final int abc_action_menu_overflow_description=0x7f070004;
+ public static final int abc_action_mode_done=0x7f070005;
+ public static final int abc_activity_chooser_view_see_all=0x7f070006;
+ public static final int abc_activitychooserview_choose_application=0x7f070007;
+ public static final int abc_capital_off=0x7f070008;
+ public static final int abc_capital_on=0x7f070009;
+ public static final int abc_search_hint=0x7f07000a;
+ public static final int abc_searchview_description_clear=0x7f07000b;
+ public static final int abc_searchview_description_query=0x7f07000c;
+ public static final int abc_searchview_description_search=0x7f07000d;
+ public static final int abc_searchview_description_submit=0x7f07000e;
+ public static final int abc_searchview_description_voice=0x7f07000f;
+ public static final int abc_shareactionprovider_share_with=0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application=0x7f070011;
+ public static final int abc_toolbar_collapse_description=0x7f070012;
+ public static final int about_filename=0x7f070014;
+ public static final int action_about=0x7f070015;
+ public static final int action_delete=0x7f070016;
+ public static final int action_share=0x7f070017;
+ public static final int action_tag=0x7f070018;
+ public static final int activateunknown=0x7f070019;
+ public static final int answer_cancel=0x7f07001a;
+ public static final int answer_later=0x7f07001b;
+ public static final int answer_no=0x7f07001c;
+ public static final int answer_yes=0x7f07001d;
+ public static final int app_name=0x7f07001e;
+ public static final int appbar_scrolling_view_behavior=0x7f07005a;
+ public static final int ask_install_opencv=0x7f07001f;
+ public static final int autoMode=0x7f070020;
+ public static final int automatic_tagging=0x7f070021;
+ public static final int automatic_tagging_summary=0x7f070022;
+ public static final int basic_settings=0x7f070023;
+ public static final int bitcoin_summary=0x7f070024;
+ public static final int bottom_sheet_behavior=0x7f07005b;
+ public static final int bug_rotate=0x7f070025;
+ public static final int bug_rotate_summary=0x7f070026;
+ public static final int bwMode=0x7f070027;
+ public static final int catalyst_debugjs=0x7f070028;
+ public static final int catalyst_debugjs_off=0x7f07005c;
+ public static final int catalyst_element_inspector=0x7f070029;
+ public static final int catalyst_element_inspector_off=0x7f07005d;
+ public static final int catalyst_hot_module_replacement=0x7f07005e;
+ public static final int catalyst_hot_module_replacement_off=0x7f07005f;
+ public static final int catalyst_jsload_error=0x7f07002a;
+ public static final int catalyst_jsload_message=0x7f07002b;
+ public static final int catalyst_jsload_title=0x7f07002c;
+ public static final int catalyst_live_reload=0x7f070060;
+ public static final int catalyst_live_reload_off=0x7f070061;
+ public static final int catalyst_perf_monitor=0x7f070062;
+ public static final int catalyst_perf_monitor_off=0x7f070063;
+ public static final int catalyst_reloadjs=0x7f07002d;
+ public static final int catalyst_remotedbg_error=0x7f070064;
+ public static final int catalyst_remotedbg_message=0x7f070065;
+ public static final int catalyst_settings=0x7f07002e;
+ public static final int catalyst_settings_title=0x7f07002f;
+ public static final int catalyst_start_profile=0x7f070066;
+ public static final int catalyst_stop_profile=0x7f070067;
+ public static final int character_counter_pattern=0x7f070068;
+ public static final int colorMode=0x7f070030;
+ public static final int confirm_delete_multiple_text=0x7f070031;
+ public static final int confirm_delete_text=0x7f070032;
+ public static final int confirm_install_opencv=0x7f070033;
+ public static final int confirm_title=0x7f070034;
+ public static final int dogecoin_summary=0x7f070069;
+ public static final int donate=0x7f070035;
+ public static final int donate_summary=0x7f070036;
+ public static final int downloading=0x7f070037;
+ public static final int downloading_opencv=0x7f070038;
+ public static final int feedback_and_contributions=0x7f070039;
+ public static final int filterModeOff=0x7f07003a;
+ public static final int filterModeOn=0x7f07003b;
+ public static final int github_project=0x7f07003c;
+ public static final int github_project_summary=0x7f07003d;
+ public static final int githubdownload=0x7f07003e;
+ public static final int googleplay=0x7f07003f;
+ public static final int images_scanned=0x7f070040;
+ public static final int install_opencv=0x7f070041;
+ public static final int manualMode=0x7f070042;
+ public static final int match_aspect=0x7f070043;
+ public static final int match_aspect_summary=0x7f070044;
+ public static final int messageactivateunknown=0x7f070045;
+ public static final int paypal_summary=0x7f070046;
+ public static final int scanningToast=0x7f070047;
+ public static final int send_message=0x7f070048;
+ public static final int send_message_summary=0x7f070049;
+ public static final int settings=0x7f07004a;
+ public static final int share_app=0x7f07004b;
+ public static final int share_app_body=0x7f07004c;
+ public static final int share_app_subject=0x7f07004d;
+ public static final int share_app_using=0x7f07004e;
+ public static final int share_snackbar=0x7f07004f;
+ public static final int stats_optin_text=0x7f070050;
+ public static final int stats_optin_title=0x7f070051;
+ public static final int status_bar_notification_info_overflow=0x7f070013;
+ public static final int storage_folder=0x7f070052;
+ public static final int storage_folder_summary=0x7f070053;
+ public static final int telegram=0x7f070054;
+ public static final int telegram_summary=0x7f070055;
+ public static final int title_activity_full_image=0x7f070056;
+ public static final int title_activity_gallery=0x7f070057;
+ public static final int title_activity_open_note_scanner=0x7f07006a;
+ public static final int usage_stats=0x7f070058;
+ public static final int usage_stats_summary=0x7f070059;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat=0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light=0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog=0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp=0x7f0a008b;
+ public static final int Animation_Catalyst_RedBox=0x7f0a008c;
+ public static final int Animation_Design_BottomSheetDialog=0x7f0a008d;
+ public static final int AppTheme=0x7f0a008e;
+ public static final int AppTheme_AppBarOverlay=0x7f0a008f;
+ public static final int AppTheme_NoActionBar=0x7f0a0037;
+ public static final int AppTheme_PopupOverlay=0x7f0a0090;
+ public static final int Base_AlertDialog_AppCompat=0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light=0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog=0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a0094;
+ public static final int Base_DialogWindowTitle_AppCompat=0x7f0a0095;
+ public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a0096;
+ public static final int Base_TextAppearance_AppCompat=0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button=0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large=0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small=0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title=0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0057;
+ public static final int Base_Theme_AppCompat=0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog=0x7f0a0012;
+ public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a009d;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Light=0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a00a1;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0003;
+ public static final int Base_ThemeOverlay_AppCompat=0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a00a6;
+ public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat=0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light=0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat=0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light=0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat=0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light=0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat=0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light=0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton=0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button=0x7f0a0063;
+ public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small=0x7f0a0066;
+ public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText=0x7f0a0020;
+ public static final int Base_Widget_AppCompat_ImageButton=0x7f0a006b;
+ public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView=0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0077;
+ public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0086;
+ public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0a0087;
+ public static final int Base_Widget_AppCompat_SearchView=0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0078;
+ public static final int Base_Widget_AppCompat_Spinner=0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007b;
+ public static final int Base_Widget_Design_TabLayout=0x7f0a00bd;
+ public static final int FullscreenActionBarStyle=0x7f0a00be;
+ public static final int Platform_AppCompat=0x7f0a0018;
+ public static final int Platform_AppCompat_Light=0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat=0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a007e;
+ public static final int Platform_V11_AppCompat=0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light=0x7f0a001b;
+ public static final int Platform_V14_AppCompat=0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light=0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner=0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0033;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0034;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0035;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0036;
+ public static final int TextAppearance_AppCompat=0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1=0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2=0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button=0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption=0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1=0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2=0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3=0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4=0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline=0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse=0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large=0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium=0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu=0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small=0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead=0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title=0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00ea;
+ public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a00eb;
+ public static final int TextAppearance_Design_Counter=0x7f0a00ec;
+ public static final int TextAppearance_Design_Counter_Overflow=0x7f0a00ed;
+ public static final int TextAppearance_Design_Error=0x7f0a00ee;
+ public static final int TextAppearance_Design_Hint=0x7f0a00ef;
+ public static final int TextAppearance_Design_Snackbar_Message=0x7f0a00f0;
+ public static final int TextAppearance_Design_Tab=0x7f0a00f1;
+ public static final int TextAppearance_StatusBar_EventContent=0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f4;
+ public static final int Theme=0x7f0a00f5;
+ public static final int Theme_AppCompat=0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu=0x7f0a00f7;
+ public static final int Theme_AppCompat_DayNight=0x7f0a0005;
+ public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0006;
+ public static final int Theme_AppCompat_DayNight_Dialog=0x7f0a0007;
+ public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0008;
+ public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0009;
+ public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a000a;
+ public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000b;
+ public static final int Theme_AppCompat_Dialog=0x7f0a00f8;
+ public static final int Theme_AppCompat_Dialog_Alert=0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fa;
+ public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a00fb;
+ public static final int Theme_AppCompat_Light=0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog=0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0100;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0101;
+ public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar=0x7f0a0103;
+ public static final int Theme_Catalyst=0x7f0a0104;
+ public static final int Theme_Catalyst_RedBox=0x7f0a0105;
+ public static final int Theme_Design=0x7f0a0106;
+ public static final int Theme_Design_BottomSheetDialog=0x7f0a0107;
+ public static final int Theme_Design_Light=0x7f0a0108;
+ public static final int Theme_Design_Light_BottomSheetDialog=0x7f0a0109;
+ public static final int Theme_Design_Light_NoActionBar=0x7f0a010a;
+ public static final int Theme_Design_NoActionBar=0x7f0a010b;
+ public static final int Theme_ReactNative_AppCompat_Light=0x7f0a010c;
+ public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0a010d;
+ public static final int ThemeOverlay_AppCompat=0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark=0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light=0x7f0a0112;
+ public static final int Widget_AppCompat_ActionBar=0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton=0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode=0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView=0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a011d;
+ public static final int Widget_AppCompat_Button=0x7f0a011e;
+ public static final int Widget_AppCompat_Button_Borderless=0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored=0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small=0x7f0a0123;
+ public static final int Widget_AppCompat_ButtonBar=0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0125;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012a;
+ public static final int Widget_AppCompat_EditText=0x7f0a012b;
+ public static final int Widget_AppCompat_ImageButton=0x7f0a012c;
+ public static final int Widget_AppCompat_Light_ActionBar=0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton=0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView=0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0143;
+ public static final int Widget_AppCompat_ListView=0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown=0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu=0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu=0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow=0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar=0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar=0x7f0a014c;
+ public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0a014d;
+ public static final int Widget_AppCompat_RatingBar_Small=0x7f0a014e;
+ public static final int Widget_AppCompat_SearchView=0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0150;
+ public static final int Widget_AppCompat_SeekBar=0x7f0a0151;
+ public static final int Widget_AppCompat_Spinner=0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar=0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0158;
+ public static final int Widget_Design_AppBarLayout=0x7f0a0159;
+ public static final int Widget_Design_BottomSheet_Modal=0x7f0a015a;
+ public static final int Widget_Design_CollapsingToolbar=0x7f0a015b;
+ public static final int Widget_Design_CoordinatorLayout=0x7f0a015c;
+ public static final int Widget_Design_FloatingActionButton=0x7f0a015d;
+ public static final int Widget_Design_NavigationView=0x7f0a015e;
+ public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0a015f;
+ public static final int Widget_Design_Snackbar=0x7f0a0160;
+ public static final int Widget_Design_TabLayout=0x7f0a0001;
+ public static final int Widget_Design_TextInputLayout=0x7f0a0161;
+ }
+ public static final class xml {
+ public static final int preferences=0x7f060000;
+ public static final int settings=0x7f060001;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a ActionBar.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#background}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:background
+ */
+ public static final int ActionBar_background = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:backgroundSplit
+ */
+ public static final int ActionBar_backgroundSplit = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundStacked}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:backgroundStacked
+ */
+ public static final int ActionBar_backgroundStacked = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetEnd
+ */
+ public static final int ActionBar_contentInsetEnd = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetLeft
+ */
+ public static final int ActionBar_contentInsetLeft = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetRight
+ */
+ public static final int ActionBar_contentInsetRight = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetStart
+ */
+ public static final int ActionBar_contentInsetStart = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#customNavigationLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:customNavigationLayout
+ */
+ public static final int ActionBar_customNavigationLayout = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#displayOptions}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ @attr name com.documentscanner.test:displayOptions
+ */
+ public static final int ActionBar_displayOptions = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#divider}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:divider
+ */
+ public static final int ActionBar_divider = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#elevation}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:elevation
+ */
+ public static final int ActionBar_elevation = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#height}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:height
+ */
+ public static final int ActionBar_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#hideOnContentScroll}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:hideOnContentScroll
+ */
+ public static final int ActionBar_hideOnContentScroll = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:homeAsUpIndicator
+ */
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#homeLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:homeLayout
+ */
+ public static final int ActionBar_homeLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#icon}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:icon
+ */
+ public static final int ActionBar_icon = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#indeterminateProgressStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:indeterminateProgressStyle
+ */
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#itemPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:itemPadding
+ */
+ public static final int ActionBar_itemPadding = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#logo}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:logo
+ */
+ public static final int ActionBar_logo = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#navigationMode}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ @attr name com.documentscanner.test:navigationMode
+ */
+ public static final int ActionBar_navigationMode = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#popupTheme}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:popupTheme
+ */
+ public static final int ActionBar_popupTheme = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#progressBarPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:progressBarPadding
+ */
+ public static final int ActionBar_progressBarPadding = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#progressBarStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:progressBarStyle
+ */
+ public static final int ActionBar_progressBarStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:subtitle
+ */
+ public static final int ActionBar_subtitle = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:subtitleTextStyle
+ */
+ public static final int ActionBar_subtitleTextStyle = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#title}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:title
+ */
+ public static final int ActionBar_title = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:titleTextStyle
+ */
+ public static final int ActionBar_titleTextStyle = 5;
+ /** Attributes that can be used with a ActionBarLayout.
+
+ @see #ActionBarLayout_android_layout_gravity
+ */
+ public static final int[] ActionBarLayout = {
+ 0x010100b3
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #ActionBarLayout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ /** Attributes that can be used with a ActionMenuItemView.
+
+ @see #ActionMenuItemView_android_minWidth
+ */
+ public static final int[] ActionMenuItemView = {
+ 0x0101013f
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#minWidth}
+ attribute's value can be found in the {@link #ActionMenuItemView} array.
+ @attr name android:minWidth
+ */
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ /** Attributes that can be used with a ActionMenuView.
+ */
+ public static final int[] ActionMenuView = {
+
+ };
+ /** Attributes that can be used with a ActionMode.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#background}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:background
+ */
+ public static final int ActionMode_background = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:backgroundSplit
+ */
+ public static final int ActionMode_backgroundSplit = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#closeItemLayout}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:closeItemLayout
+ */
+ public static final int ActionMode_closeItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#height}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:height
+ */
+ public static final int ActionMode_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:subtitleTextStyle
+ */
+ public static final int ActionMode_subtitleTextStyle = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:titleTextStyle
+ */
+ public static final int ActionMode_titleTextStyle = 1;
+ /** Attributes that can be used with a ActivityChooserView.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandActivityOverflowButtonDrawable}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:expandActivityOverflowButtonDrawable
+ */
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#initialActivityCount}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:initialActivityCount
+ */
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ /** Attributes that can be used with a AlertDialog.
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+ @attr name android:layout
+ */
+ public static final int AlertDialog_android_layout = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonPanelSideLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonPanelSideLayout
+ */
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:listItemLayout
+ */
+ public static final int AlertDialog_listItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:listLayout
+ */
+ public static final int AlertDialog_listLayout = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#multiChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:multiChoiceItemLayout
+ */
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#singleChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:singleChoiceItemLayout
+ */
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ /** Attributes that can be used with a AppBarLayout.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+ @attr name android:background
+ */
+ public static final int AppBarLayout_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#elevation}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:elevation
+ */
+ public static final int AppBarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expanded}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expanded
+ */
+ public static final int AppBarLayout_expanded = 2;
+ /** Attributes that can be used with a AppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_scrollFlags}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ @attr name com.documentscanner.test:layout_scrollFlags
+ */
+ public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_scrollInterpolator}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:layout_scrollInterpolator
+ */
+ public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ /** Attributes that can be used with a AppCompatImageView.
+
This symbol is the offset where the {@link android.R.attr#src}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+ @attr name android:src
+ */
+ public static final int AppCompatImageView_android_src = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#srcCompat}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:srcCompat
+ */
+ public static final int AppCompatImageView_srcCompat = 1;
+ /** Attributes that can be used with a AppCompatTextView.
+
This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+ @attr name android:textAppearance
+ */
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner.test:textAllCaps
+ */
+ public static final int AppCompatTextView_textAllCaps = 1;
+ /** Attributes that can be used with a AppCompatTheme.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarDivider}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarDivider
+ */
+ public static final int AppCompatTheme_actionBarDivider = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarItemBackground
+ */
+ public static final int AppCompatTheme_actionBarItemBackground = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarPopupTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarPopupTheme
+ */
+ public static final int AppCompatTheme_actionBarPopupTheme = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarSize}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ @attr name com.documentscanner.test:actionBarSize
+ */
+ public static final int AppCompatTheme_actionBarSize = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarSplitStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarSplitStyle
+ */
+ public static final int AppCompatTheme_actionBarSplitStyle = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarStyle
+ */
+ public static final int AppCompatTheme_actionBarStyle = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarTabBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarTabBarStyle
+ */
+ public static final int AppCompatTheme_actionBarTabBarStyle = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarTabStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarTabStyle
+ */
+ public static final int AppCompatTheme_actionBarTabStyle = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarTabTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarTabTextStyle
+ */
+ public static final int AppCompatTheme_actionBarTabTextStyle = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarTheme
+ */
+ public static final int AppCompatTheme_actionBarTheme = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionBarWidgetTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionBarWidgetTheme
+ */
+ public static final int AppCompatTheme_actionBarWidgetTheme = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionButtonStyle
+ */
+ public static final int AppCompatTheme_actionButtonStyle = 49;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionDropDownStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionDropDownStyle
+ */
+ public static final int AppCompatTheme_actionDropDownStyle = 45;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionMenuTextAppearance}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionMenuTextAppearance
+ */
+ public static final int AppCompatTheme_actionMenuTextAppearance = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionMenuTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:actionMenuTextColor
+ */
+ public static final int AppCompatTheme_actionMenuTextColor = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeBackground
+ */
+ public static final int AppCompatTheme_actionModeBackground = 29;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeCloseButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeCloseButtonStyle
+ */
+ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeCloseDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeCloseDrawable
+ */
+ public static final int AppCompatTheme_actionModeCloseDrawable = 31;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeCopyDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeCopyDrawable
+ */
+ public static final int AppCompatTheme_actionModeCopyDrawable = 33;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeCutDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeCutDrawable
+ */
+ public static final int AppCompatTheme_actionModeCutDrawable = 32;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeFindDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeFindDrawable
+ */
+ public static final int AppCompatTheme_actionModeFindDrawable = 37;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModePasteDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModePasteDrawable
+ */
+ public static final int AppCompatTheme_actionModePasteDrawable = 34;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModePopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModePopupWindowStyle
+ */
+ public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeSelectAllDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeSelectAllDrawable
+ */
+ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeShareDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeShareDrawable
+ */
+ public static final int AppCompatTheme_actionModeShareDrawable = 36;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeSplitBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeSplitBackground
+ */
+ public static final int AppCompatTheme_actionModeSplitBackground = 30;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeStyle
+ */
+ public static final int AppCompatTheme_actionModeStyle = 27;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionModeWebSearchDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionModeWebSearchDrawable
+ */
+ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionOverflowButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionOverflowButtonStyle
+ */
+ public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionOverflowMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionOverflowMenuStyle
+ */
+ public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#activityChooserViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:activityChooserViewStyle
+ */
+ public static final int AppCompatTheme_activityChooserViewStyle = 57;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#alertDialogButtonGroupStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:alertDialogButtonGroupStyle
+ */
+ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#alertDialogCenterButtons}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:alertDialogCenterButtons
+ */
+ public static final int AppCompatTheme_alertDialogCenterButtons = 93;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#alertDialogStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:alertDialogStyle
+ */
+ public static final int AppCompatTheme_alertDialogStyle = 91;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#alertDialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:alertDialogTheme
+ */
+ public static final int AppCompatTheme_alertDialogTheme = 94;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int AppCompatTheme_android_windowAnimationStyle = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowIsFloating
+ */
+ public static final int AppCompatTheme_android_windowIsFloating = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#autoCompleteTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:autoCompleteTextViewStyle
+ */
+ public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#borderlessButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:borderlessButtonStyle
+ */
+ public static final int AppCompatTheme_borderlessButtonStyle = 54;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonBarButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonBarButtonStyle
+ */
+ public static final int AppCompatTheme_buttonBarButtonStyle = 51;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonBarNegativeButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonBarNegativeButtonStyle
+ */
+ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonBarNeutralButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonBarNeutralButtonStyle
+ */
+ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonBarPositiveButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonBarPositiveButtonStyle
+ */
+ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonBarStyle
+ */
+ public static final int AppCompatTheme_buttonBarStyle = 50;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonStyle
+ */
+ public static final int AppCompatTheme_buttonStyle = 100;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:buttonStyleSmall
+ */
+ public static final int AppCompatTheme_buttonStyleSmall = 101;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#checkboxStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:checkboxStyle
+ */
+ public static final int AppCompatTheme_checkboxStyle = 102;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#checkedTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:checkedTextViewStyle
+ */
+ public static final int AppCompatTheme_checkedTextViewStyle = 103;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorAccent}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorAccent
+ */
+ public static final int AppCompatTheme_colorAccent = 84;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorButtonNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorButtonNormal
+ */
+ public static final int AppCompatTheme_colorButtonNormal = 88;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorControlActivated}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorControlActivated
+ */
+ public static final int AppCompatTheme_colorControlActivated = 86;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorControlHighlight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorControlHighlight
+ */
+ public static final int AppCompatTheme_colorControlHighlight = 87;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorControlNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorControlNormal
+ */
+ public static final int AppCompatTheme_colorControlNormal = 85;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorPrimary}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorPrimary
+ */
+ public static final int AppCompatTheme_colorPrimary = 82;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorPrimaryDark}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorPrimaryDark
+ */
+ public static final int AppCompatTheme_colorPrimaryDark = 83;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#colorSwitchThumbNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:colorSwitchThumbNormal
+ */
+ public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#controlBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:controlBackground
+ */
+ public static final int AppCompatTheme_controlBackground = 90;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dialogPreferredPadding}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:dialogPreferredPadding
+ */
+ public static final int AppCompatTheme_dialogPreferredPadding = 43;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:dialogTheme
+ */
+ public static final int AppCompatTheme_dialogTheme = 42;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dividerHorizontal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:dividerHorizontal
+ */
+ public static final int AppCompatTheme_dividerHorizontal = 56;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dividerVertical}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:dividerVertical
+ */
+ public static final int AppCompatTheme_dividerVertical = 55;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dropDownListViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:dropDownListViewStyle
+ */
+ public static final int AppCompatTheme_dropDownListViewStyle = 74;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dropdownListPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:dropdownListPreferredItemHeight
+ */
+ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#editTextBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:editTextBackground
+ */
+ public static final int AppCompatTheme_editTextBackground = 63;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#editTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:editTextColor
+ */
+ public static final int AppCompatTheme_editTextColor = 62;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#editTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:editTextStyle
+ */
+ public static final int AppCompatTheme_editTextStyle = 104;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:homeAsUpIndicator
+ */
+ public static final int AppCompatTheme_homeAsUpIndicator = 48;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#imageButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:imageButtonStyle
+ */
+ public static final int AppCompatTheme_imageButtonStyle = 64;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listChoiceBackgroundIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:listChoiceBackgroundIndicator
+ */
+ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listDividerAlertDialog}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:listDividerAlertDialog
+ */
+ public static final int AppCompatTheme_listDividerAlertDialog = 44;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:listPopupWindowStyle
+ */
+ public static final int AppCompatTheme_listPopupWindowStyle = 75;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:listPreferredItemHeight
+ */
+ public static final int AppCompatTheme_listPreferredItemHeight = 69;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPreferredItemHeightLarge}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:listPreferredItemHeightLarge
+ */
+ public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPreferredItemHeightSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:listPreferredItemHeightSmall
+ */
+ public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPreferredItemPaddingLeft}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:listPreferredItemPaddingLeft
+ */
+ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#listPreferredItemPaddingRight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:listPreferredItemPaddingRight
+ */
+ public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#panelBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:panelBackground
+ */
+ public static final int AppCompatTheme_panelBackground = 78;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#panelMenuListTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:panelMenuListTheme
+ */
+ public static final int AppCompatTheme_panelMenuListTheme = 80;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#panelMenuListWidth}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:panelMenuListWidth
+ */
+ public static final int AppCompatTheme_panelMenuListWidth = 79;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#popupMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:popupMenuStyle
+ */
+ public static final int AppCompatTheme_popupMenuStyle = 60;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#popupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:popupWindowStyle
+ */
+ public static final int AppCompatTheme_popupWindowStyle = 61;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#radioButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:radioButtonStyle
+ */
+ public static final int AppCompatTheme_radioButtonStyle = 105;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#ratingBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:ratingBarStyle
+ */
+ public static final int AppCompatTheme_ratingBarStyle = 106;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#ratingBarStyleIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:ratingBarStyleIndicator
+ */
+ public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#ratingBarStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:ratingBarStyleSmall
+ */
+ public static final int AppCompatTheme_ratingBarStyleSmall = 108;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#searchViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:searchViewStyle
+ */
+ public static final int AppCompatTheme_searchViewStyle = 68;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#seekBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:seekBarStyle
+ */
+ public static final int AppCompatTheme_seekBarStyle = 109;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#selectableItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:selectableItemBackground
+ */
+ public static final int AppCompatTheme_selectableItemBackground = 52;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#selectableItemBackgroundBorderless}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:selectableItemBackgroundBorderless
+ */
+ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#spinnerDropDownItemStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:spinnerDropDownItemStyle
+ */
+ public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#spinnerStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:spinnerStyle
+ */
+ public static final int AppCompatTheme_spinnerStyle = 110;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#switchStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:switchStyle
+ */
+ public static final int AppCompatTheme_switchStyle = 111;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceLargePopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceLargePopupMenu
+ */
+ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceListItem
+ */
+ public static final int AppCompatTheme_textAppearanceListItem = 76;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceListItemSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceListItemSmall
+ */
+ public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceSearchResultSubtitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceSearchResultSubtitle
+ */
+ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceSearchResultTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceSearchResultTitle
+ */
+ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAppearanceSmallPopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:textAppearanceSmallPopupMenu
+ */
+ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textColorAlertDialogListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:textColorAlertDialogListItem
+ */
+ public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textColorSearchUrl}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:textColorSearchUrl
+ */
+ public static final int AppCompatTheme_textColorSearchUrl = 67;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#toolbarNavigationButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:toolbarNavigationButtonStyle
+ */
+ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#toolbarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:toolbarStyle
+ */
+ public static final int AppCompatTheme_toolbarStyle = 58;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowActionBar}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowActionBar
+ */
+ public static final int AppCompatTheme_windowActionBar = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowActionBarOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowActionBarOverlay
+ */
+ public static final int AppCompatTheme_windowActionBarOverlay = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowActionModeOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowActionModeOverlay
+ */
+ public static final int AppCompatTheme_windowActionModeOverlay = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowFixedHeightMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowFixedHeightMajor
+ */
+ public static final int AppCompatTheme_windowFixedHeightMajor = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowFixedHeightMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowFixedHeightMinor
+ */
+ public static final int AppCompatTheme_windowFixedHeightMinor = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowFixedWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowFixedWidthMajor
+ */
+ public static final int AppCompatTheme_windowFixedWidthMajor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowFixedWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowFixedWidthMinor
+ */
+ public static final int AppCompatTheme_windowFixedWidthMinor = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowMinWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowMinWidthMajor
+ */
+ public static final int AppCompatTheme_windowMinWidthMajor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowMinWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowMinWidthMinor
+ */
+ public static final int AppCompatTheme_windowMinWidthMinor = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#windowNoTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:windowNoTitle
+ */
+ public static final int AppCompatTheme_windowNoTitle = 3;
+ /** Attributes that can be used with a BottomSheetBehavior_Params.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#behavior_hideable}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:behavior_hideable
+ */
+ public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#behavior_peekHeight}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:behavior_peekHeight
+ */
+ public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ /** Attributes that can be used with a ButtonBarContainerTheme.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#metaButtonBarButtonStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:metaButtonBarButtonStyle
+ */
+ public static final int ButtonBarContainerTheme_metaButtonBarButtonStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#metaButtonBarStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:metaButtonBarStyle
+ */
+ public static final int ButtonBarContainerTheme_metaButtonBarStyle = 0;
+ /** Attributes that can be used with a ButtonBarLayout.
+
+ @see #ButtonBarLayout_allowStacking
+ */
+ public static final int[] ButtonBarLayout = {
+ 0x7f01009b
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#allowStacking}
+ attribute's value can be found in the {@link #ButtonBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:allowStacking
+ */
+ public static final int ButtonBarLayout_allowStacking = 0;
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name com.documentscanner.test:camera_id
+ */
+ public static final int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:show_fps
+ */
+ public static final int CameraBridgeViewBase_show_fps = 0;
+ /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_collapseMode}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ @attr name com.documentscanner.test:layout_collapseMode
+ */
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_collapseParallaxMultiplier}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:layout_collapseParallaxMultiplier
+ */
+ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ /** Attributes that can be used with a CollapsingToolbarLayout.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#collapsedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner.test:collapsedTitleGravity
+ */
+ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#collapsedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:collapsedTitleTextAppearance
+ */
+ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentScrim
+ */
+ public static final int CollapsingToolbarLayout_contentScrim = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner.test:expandedTitleGravity
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleMargin}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expandedTitleMargin
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleMarginBottom}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expandedTitleMarginBottom
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleMarginEnd}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expandedTitleMarginEnd
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleMarginStart}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expandedTitleMarginStart
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleMarginTop}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:expandedTitleMarginTop
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#expandedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:expandedTitleTextAppearance
+ */
+ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#statusBarScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:statusBarScrim
+ */
+ public static final int CollapsingToolbarLayout_statusBarScrim = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#title}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:title
+ */
+ public static final int CollapsingToolbarLayout_title = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleEnabled}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleEnabled
+ */
+ public static final int CollapsingToolbarLayout_titleEnabled = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#toolbarId}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:toolbarId
+ */
+ public static final int CollapsingToolbarLayout_toolbarId = 10;
+ /** Attributes that can be used with a CompoundButton.
+
This symbol is the offset where the {@link android.R.attr#button}
+ attribute's value can be found in the {@link #CompoundButton} array.
+ @attr name android:button
+ */
+ public static final int CompoundButton_android_button = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonTint}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:buttonTint
+ */
+ public static final int CompoundButton_buttonTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#buttonTintMode}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner.test:buttonTintMode
+ */
+ public static final int CompoundButton_buttonTintMode = 2;
+ /** Attributes that can be used with a CoordinatorLayout.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#keylines}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:keylines
+ */
+ public static final int CoordinatorLayout_keylines = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#statusBarBackground}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:statusBarBackground
+ */
+ public static final int CoordinatorLayout_statusBarBackground = 1;
+ /** Attributes that can be used with a CoordinatorLayout_LayoutParams.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+ @attr name android:layout_gravity
+ */
+ public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_anchor}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:layout_anchor
+ */
+ public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_anchorGravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner.test:layout_anchorGravity
+ */
+ public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_behavior}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:layout_behavior
+ */
+ public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout_keyline}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:layout_keyline
+ */
+ public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ /** Attributes that can be used with a DesignTheme.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#bottomSheetDialogTheme}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:bottomSheetDialogTheme
+ */
+ public static final int DesignTheme_bottomSheetDialogTheme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#bottomSheetStyle}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:bottomSheetStyle
+ */
+ public static final int DesignTheme_bottomSheetStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textColorError}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:textColorError
+ */
+ public static final int DesignTheme_textColorError = 2;
+ /** Attributes that can be used with a DrawerArrowToggle.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#arrowHeadLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:arrowHeadLength
+ */
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#arrowShaftLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:arrowShaftLength
+ */
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#barLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:barLength
+ */
+ public static final int DrawerArrowToggle_barLength = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#color}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:color
+ */
+ public static final int DrawerArrowToggle_color = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#drawableSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:drawableSize
+ */
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#gapBetweenBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:gapBetweenBars
+ */
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#spinBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:spinBars
+ */
+ public static final int DrawerArrowToggle_spinBars = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#thickness}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:thickness
+ */
+ public static final int DrawerArrowToggle_thickness = 7;
+ /** Attributes that can be used with a FloatingActionButton.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:backgroundTint
+ */
+ public static final int FloatingActionButton_backgroundTint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner.test:backgroundTintMode
+ */
+ public static final int FloatingActionButton_backgroundTintMode = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#borderWidth}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:borderWidth
+ */
+ public static final int FloatingActionButton_borderWidth = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#elevation}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:elevation
+ */
+ public static final int FloatingActionButton_elevation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#fabSize}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ @attr name com.documentscanner.test:fabSize
+ */
+ public static final int FloatingActionButton_fabSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#pressedTranslationZ}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:pressedTranslationZ
+ */
+ public static final int FloatingActionButton_pressedTranslationZ = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#rippleColor}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:rippleColor
+ */
+ public static final int FloatingActionButton_rippleColor = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#useCompatPadding}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:useCompatPadding
+ */
+ public static final int FloatingActionButton_useCompatPadding = 5;
+ /** Attributes that can be used with a ForegroundLinearLayout.
+
This symbol is the offset where the {@link android.R.attr#foreground}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foreground
+ */
+ public static final int ForegroundLinearLayout_android_foreground = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#foregroundGravity}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foregroundGravity
+ */
+ public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#foregroundInsidePadding}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:foregroundInsidePadding
+ */
+ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ /** Attributes that can be used with a GenericDraweeView.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actualImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner.test:actualImageScaleType
+ */
+ public static final int GenericDraweeView_actualImageScaleType = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:backgroundImage
+ */
+ public static final int GenericDraweeView_backgroundImage = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#fadeDuration}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:fadeDuration
+ */
+ public static final int GenericDraweeView_fadeDuration = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#failureImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:failureImage
+ */
+ public static final int GenericDraweeView_failureImage = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#failureImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner.test:failureImageScaleType
+ */
+ public static final int GenericDraweeView_failureImageScaleType = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#overlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:overlayImage
+ */
+ public static final int GenericDraweeView_overlayImage = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#placeholderImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:placeholderImage
+ */
+ public static final int GenericDraweeView_placeholderImage = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#placeholderImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner.test:placeholderImageScaleType
+ */
+ public static final int GenericDraweeView_placeholderImageScaleType = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#pressedStateOverlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:pressedStateOverlayImage
+ */
+ public static final int GenericDraweeView_pressedStateOverlayImage = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#progressBarAutoRotateInterval}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:progressBarAutoRotateInterval
+ */
+ public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#progressBarImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:progressBarImage
+ */
+ public static final int GenericDraweeView_progressBarImage = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#progressBarImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner.test:progressBarImageScaleType
+ */
+ public static final int GenericDraweeView_progressBarImageScaleType = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#retryImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:retryImage
+ */
+ public static final int GenericDraweeView_retryImage = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#retryImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner.test:retryImageScaleType
+ */
+ public static final int GenericDraweeView_retryImageScaleType = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundAsCircle}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundAsCircle
+ */
+ public static final int GenericDraweeView_roundAsCircle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundBottomLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundBottomLeft
+ */
+ public static final int GenericDraweeView_roundBottomLeft = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundBottomRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundBottomRight
+ */
+ public static final int GenericDraweeView_roundBottomRight = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundTopLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundTopLeft
+ */
+ public static final int GenericDraweeView_roundTopLeft = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundTopRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundTopRight
+ */
+ public static final int GenericDraweeView_roundTopRight = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundWithOverlayColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundWithOverlayColor
+ */
+ public static final int GenericDraweeView_roundWithOverlayColor = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundedCornerRadius}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundedCornerRadius
+ */
+ public static final int GenericDraweeView_roundedCornerRadius = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundingBorderColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundingBorderColor
+ */
+ public static final int GenericDraweeView_roundingBorderColor = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#roundingBorderWidth}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:roundingBorderWidth
+ */
+ public static final int GenericDraweeView_roundingBorderWidth = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#viewAspectRatio}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:viewAspectRatio
+ */
+ public static final int GenericDraweeView_viewAspectRatio = 1;
+ /** Attributes that can be used with a LinearLayoutCompat.
+
This symbol is the offset where the {@link android.R.attr#baselineAligned}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAligned
+ */
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAlignedChildIndex
+ */
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:gravity
+ */
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:orientation
+ */
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#weightSum}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:weightSum
+ */
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#divider}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:divider
+ */
+ public static final int LinearLayoutCompat_divider = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#dividerPadding}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:dividerPadding
+ */
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#measureWithLargestChild}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:measureWithLargestChild
+ */
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#showDividers}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ @attr name com.documentscanner.test:showDividers
+ */
+ public static final int LinearLayoutCompat_showDividers = 7;
+ /** Attributes that can be used with a LinearLayoutCompat_Layout.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_height}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_height
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_weight}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_weight
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_width}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_width
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ /** Attributes that can be used with a ListPopupWindow.
+
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ /** Attributes that can be used with a MenuGroup.
+
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:checkableBehavior
+ */
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:enabled
+ */
+ public static final int MenuGroup_android_enabled = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:id
+ */
+ public static final int MenuGroup_android_id = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuGroup_android_menuCategory = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuGroup_android_orderInCategory = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:visible
+ */
+ public static final int MenuGroup_android_visible = 2;
+ /** Attributes that can be used with a MenuItem.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionLayout}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:actionLayout
+ */
+ public static final int MenuItem_actionLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionProviderClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:actionProviderClass
+ */
+ public static final int MenuItem_actionProviderClass = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#actionViewClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:actionViewClass
+ */
+ public static final int MenuItem_actionViewClass = 15;
+ /**
+
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:alphabeticShortcut
+ */
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checkable}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checkable
+ */
+ public static final int MenuItem_android_checkable = 11;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checked}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checked
+ */
+ public static final int MenuItem_android_checked = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:enabled
+ */
+ public static final int MenuItem_android_enabled = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:icon
+ */
+ public static final int MenuItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:id
+ */
+ public static final int MenuItem_android_id = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuItem_android_menuCategory = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#numericShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:numericShortcut
+ */
+ public static final int MenuItem_android_numericShortcut = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#onClick}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:onClick
+ */
+ public static final int MenuItem_android_onClick = 12;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuItem_android_orderInCategory = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#title}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:title
+ */
+ public static final int MenuItem_android_title = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#titleCondensed}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:titleCondensed
+ */
+ public static final int MenuItem_android_titleCondensed = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:visible
+ */
+ public static final int MenuItem_android_visible = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#showAsAction}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ @attr name com.documentscanner.test:showAsAction
+ */
+ public static final int MenuItem_showAsAction = 13;
+ /** Attributes that can be used with a MenuView.
+
This symbol is the offset where the {@link android.R.attr#headerBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:headerBackground
+ */
+ public static final int MenuView_android_headerBackground = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:horizontalDivider
+ */
+ public static final int MenuView_android_horizontalDivider = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemBackground
+ */
+ public static final int MenuView_android_itemBackground = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemIconDisabledAlpha
+ */
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemTextAppearance
+ */
+ public static final int MenuView_android_itemTextAppearance = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#verticalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:verticalDivider
+ */
+ public static final int MenuView_android_verticalDivider = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#preserveIconSpacing}
+ attribute's value can be found in the {@link #MenuView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:preserveIconSpacing
+ */
+ public static final int MenuView_preserveIconSpacing = 7;
+ /** Attributes that can be used with a NavigationView.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:background
+ */
+ public static final int NavigationView_android_background = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:fitsSystemWindows
+ */
+ public static final int NavigationView_android_fitsSystemWindows = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:maxWidth
+ */
+ public static final int NavigationView_android_maxWidth = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#elevation}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:elevation
+ */
+ public static final int NavigationView_elevation = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#headerLayout}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:headerLayout
+ */
+ public static final int NavigationView_headerLayout = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#itemBackground}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:itemBackground
+ */
+ public static final int NavigationView_itemBackground = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#itemIconTint}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:itemIconTint
+ */
+ public static final int NavigationView_itemIconTint = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:itemTextAppearance
+ */
+ public static final int NavigationView_itemTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#itemTextColor}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:itemTextColor
+ */
+ public static final int NavigationView_itemTextColor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#menu}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:menu
+ */
+ public static final int NavigationView_menu = 4;
+ /** Attributes that can be used with a PopupWindow.
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #PopupWindow} array.
+ @attr name android:popupBackground
+ */
+ public static final int PopupWindow_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#overlapAnchor}
+ attribute's value can be found in the {@link #PopupWindow} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:overlapAnchor
+ */
+ public static final int PopupWindow_overlapAnchor = 1;
+ /** Attributes that can be used with a PopupWindowBackgroundState.
+
+ @see #PopupWindowBackgroundState_state_above_anchor
+ */
+ public static final int[] PopupWindowBackgroundState = {
+ 0x7f0100ed
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#state_above_anchor}
+ attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:state_above_anchor
+ */
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ /** Attributes that can be used with a RecyclerView.
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #RecyclerView} array.
+ @attr name android:orientation
+ */
+ public static final int RecyclerView_android_orientation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layoutManager}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:layoutManager
+ */
+ public static final int RecyclerView_layoutManager = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#reverseLayout}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:reverseLayout
+ */
+ public static final int RecyclerView_reverseLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#spanCount}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:spanCount
+ */
+ public static final int RecyclerView_spanCount = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#stackFromEnd}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:stackFromEnd
+ */
+ public static final int RecyclerView_stackFromEnd = 4;
+ /** Attributes that can be used with a ScrimInsetsFrameLayout.
+
+ @see #ScrimInsetsFrameLayout_insetForeground
+ */
+ public static final int[] ScrimInsetsFrameLayout = {
+ 0x7f0100f2
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#insetForeground}
+ attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner.test:insetForeground
+ */
+ public static final int ScrimInsetsFrameLayout_insetForeground = 0;
+ /** Attributes that can be used with a ScrollingViewBehavior_Params.
+
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop
+ */
+ public static final int[] ScrollingViewBehavior_Params = {
+ 0x7f0100f3
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#behavior_overlapTop}
+ attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:behavior_overlapTop
+ */
+ public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ /** Attributes that can be used with a SearchView.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:focusable
+ */
+ public static final int SearchView_android_focusable = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#imeOptions}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:imeOptions
+ */
+ public static final int SearchView_android_imeOptions = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inputType}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:inputType
+ */
+ public static final int SearchView_android_inputType = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:maxWidth
+ */
+ public static final int SearchView_android_maxWidth = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#closeIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:closeIcon
+ */
+ public static final int SearchView_closeIcon = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#commitIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:commitIcon
+ */
+ public static final int SearchView_commitIcon = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#defaultQueryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:defaultQueryHint
+ */
+ public static final int SearchView_defaultQueryHint = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#goIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:goIcon
+ */
+ public static final int SearchView_goIcon = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#iconifiedByDefault}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:iconifiedByDefault
+ */
+ public static final int SearchView_iconifiedByDefault = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#layout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:layout
+ */
+ public static final int SearchView_layout = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#queryBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:queryBackground
+ */
+ public static final int SearchView_queryBackground = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#queryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:queryHint
+ */
+ public static final int SearchView_queryHint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#searchHintIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:searchHintIcon
+ */
+ public static final int SearchView_searchHintIcon = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#searchIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:searchIcon
+ */
+ public static final int SearchView_searchIcon = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#submitBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:submitBackground
+ */
+ public static final int SearchView_submitBackground = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#suggestionRowLayout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:suggestionRowLayout
+ */
+ public static final int SearchView_suggestionRowLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#voiceIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:voiceIcon
+ */
+ public static final int SearchView_voiceIcon = 12;
+ /** Attributes that can be used with a SnackbarLayout.
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+ @attr name android:maxWidth
+ */
+ public static final int SnackbarLayout_android_maxWidth = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#elevation}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:elevation
+ */
+ public static final int SnackbarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#maxActionInlineWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:maxActionInlineWidth
+ */
+ public static final int SnackbarLayout_maxActionInlineWidth = 2;
+ /** Attributes that can be used with a Spinner.
+
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownWidth
+ */
+ public static final int Spinner_android_dropDownWidth = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#entries}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:entries
+ */
+ public static final int Spinner_android_entries = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:popupBackground
+ */
+ public static final int Spinner_android_popupBackground = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#prompt}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:prompt
+ */
+ public static final int Spinner_android_prompt = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:popupTheme
+ */
+ public static final int Spinner_popupTheme = 4;
+ /** Attributes that can be used with a SwitchCompat.
+
This symbol is the offset where the {@link android.R.attr#textOff}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOff
+ */
+ public static final int SwitchCompat_android_textOff = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textOn}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOn
+ */
+ public static final int SwitchCompat_android_textOn = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#thumb}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:thumb
+ */
+ public static final int SwitchCompat_android_thumb = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#showText}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:showText
+ */
+ public static final int SwitchCompat_showText = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#splitTrack}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:splitTrack
+ */
+ public static final int SwitchCompat_splitTrack = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#switchMinWidth}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:switchMinWidth
+ */
+ public static final int SwitchCompat_switchMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#switchPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:switchPadding
+ */
+ public static final int SwitchCompat_switchPadding = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#switchTextAppearance}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:switchTextAppearance
+ */
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#thumbTextPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:thumbTextPadding
+ */
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#track}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:track
+ */
+ public static final int SwitchCompat_track = 3;
+ /** Attributes that can be used with a TabItem.
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:icon
+ */
+ public static final int TabItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:layout
+ */
+ public static final int TabItem_android_layout = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#text}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:text
+ */
+ public static final int TabItem_android_text = 2;
+ /** Attributes that can be used with a TabLayout.
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabBackground}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:tabBackground
+ */
+ public static final int TabLayout_tabBackground = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabContentStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabContentStart
+ */
+ public static final int TabLayout_tabContentStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabGravity}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ @attr name com.documentscanner.test:tabGravity
+ */
+ public static final int TabLayout_tabGravity = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabIndicatorColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabIndicatorColor
+ */
+ public static final int TabLayout_tabIndicatorColor = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabIndicatorHeight}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabIndicatorHeight
+ */
+ public static final int TabLayout_tabIndicatorHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabMaxWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabMaxWidth
+ */
+ public static final int TabLayout_tabMaxWidth = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabMinWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabMinWidth
+ */
+ public static final int TabLayout_tabMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabMode}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ @attr name com.documentscanner.test:tabMode
+ */
+ public static final int TabLayout_tabMode = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabPadding}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabPadding
+ */
+ public static final int TabLayout_tabPadding = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabPaddingBottom}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabPaddingBottom
+ */
+ public static final int TabLayout_tabPaddingBottom = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabPaddingEnd}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabPaddingEnd
+ */
+ public static final int TabLayout_tabPaddingEnd = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabPaddingStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabPaddingStart
+ */
+ public static final int TabLayout_tabPaddingStart = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabPaddingTop}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabPaddingTop
+ */
+ public static final int TabLayout_tabPaddingTop = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabSelectedTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabSelectedTextColor
+ */
+ public static final int TabLayout_tabSelectedTextColor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabTextAppearance}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:tabTextAppearance
+ */
+ public static final int TabLayout_tabTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#tabTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:tabTextColor
+ */
+ public static final int TabLayout_tabTextColor = 9;
+ /** Attributes that can be used with a TextAppearance.
+
This symbol is the offset where the {@link android.R.attr#shadowColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowColor
+ */
+ public static final int TextAppearance_android_shadowColor = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDx}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDx
+ */
+ public static final int TextAppearance_android_shadowDx = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDy}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDy
+ */
+ public static final int TextAppearance_android_shadowDy = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowRadius}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowRadius
+ */
+ public static final int TextAppearance_android_shadowRadius = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textColor
+ */
+ public static final int TextAppearance_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textSize
+ */
+ public static final int TextAppearance_android_textSize = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textStyle
+ */
+ public static final int TextAppearance_android_textStyle = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#typeface}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:typeface
+ */
+ public static final int TextAppearance_android_typeface = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #TextAppearance} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner.test:textAllCaps
+ */
+ public static final int TextAppearance_textAllCaps = 8;
+ /** Attributes that can be used with a TextInputLayout.
+
This symbol is the offset where the {@link android.R.attr#hint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:hint
+ */
+ public static final int TextInputLayout_android_hint = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColorHint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:textColorHint
+ */
+ public static final int TextInputLayout_android_textColorHint = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#counterEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:counterEnabled
+ */
+ public static final int TextInputLayout_counterEnabled = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#counterMaxLength}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:counterMaxLength
+ */
+ public static final int TextInputLayout_counterMaxLength = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#counterOverflowTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:counterOverflowTextAppearance
+ */
+ public static final int TextInputLayout_counterOverflowTextAppearance = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#counterTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:counterTextAppearance
+ */
+ public static final int TextInputLayout_counterTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#errorEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:errorEnabled
+ */
+ public static final int TextInputLayout_errorEnabled = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#errorTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:errorTextAppearance
+ */
+ public static final int TextInputLayout_errorTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#hintAnimationEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:hintAnimationEnabled
+ */
+ public static final int TextInputLayout_hintAnimationEnabled = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#hintEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:hintEnabled
+ */
+ public static final int TextInputLayout_hintEnabled = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#hintTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:hintTextAppearance
+ */
+ public static final int TextInputLayout_hintTextAppearance = 2;
+ /** Attributes that can be used with a Toolbar.
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:gravity
+ */
+ public static final int Toolbar_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#minHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:minHeight
+ */
+ public static final int Toolbar_android_minHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#collapseContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:collapseContentDescription
+ */
+ public static final int Toolbar_collapseContentDescription = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#collapseIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:collapseIcon
+ */
+ public static final int Toolbar_collapseIcon = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetEnd
+ */
+ public static final int Toolbar_contentInsetEnd = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetLeft
+ */
+ public static final int Toolbar_contentInsetLeft = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetRight
+ */
+ public static final int Toolbar_contentInsetRight = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:contentInsetStart
+ */
+ public static final int Toolbar_contentInsetStart = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#logo}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:logo
+ */
+ public static final int Toolbar_logo = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#logoDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:logoDescription
+ */
+ public static final int Toolbar_logoDescription = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#maxButtonHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:maxButtonHeight
+ */
+ public static final int Toolbar_maxButtonHeight = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#navigationContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:navigationContentDescription
+ */
+ public static final int Toolbar_navigationContentDescription = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#navigationIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:navigationIcon
+ */
+ public static final int Toolbar_navigationIcon = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:popupTheme
+ */
+ public static final int Toolbar_popupTheme = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitle}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:subtitle
+ */
+ public static final int Toolbar_subtitle = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:subtitleTextAppearance
+ */
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#subtitleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:subtitleTextColor
+ */
+ public static final int Toolbar_subtitleTextColor = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#title}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:title
+ */
+ public static final int Toolbar_title = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleMarginBottom}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleMarginBottom
+ */
+ public static final int Toolbar_titleMarginBottom = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleMarginEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleMarginEnd
+ */
+ public static final int Toolbar_titleMarginEnd = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleMarginStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleMarginStart
+ */
+ public static final int Toolbar_titleMarginStart = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleMarginTop}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleMarginTop
+ */
+ public static final int Toolbar_titleMarginTop = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleMargins}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleMargins
+ */
+ public static final int Toolbar_titleMargins = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:titleTextAppearance
+ */
+ public static final int Toolbar_titleTextAppearance = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#titleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:titleTextColor
+ */
+ public static final int Toolbar_titleTextColor = 23;
+ /** Attributes that can be used with a View.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:focusable
+ */
+ public static final int View_android_focusable = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:theme
+ */
+ public static final int View_android_theme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#paddingEnd}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:paddingEnd
+ */
+ public static final int View_paddingEnd = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#paddingStart}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:paddingStart
+ */
+ public static final int View_paddingStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner.test:theme
+ */
+ public static final int View_theme = 4;
+ /** Attributes that can be used with a ViewBackgroundHelper.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+ @attr name android:background
+ */
+ public static final int ViewBackgroundHelper_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner.test:backgroundTint
+ */
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.test.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner.test:backgroundTintMode
+ */
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ /** Attributes that can be used with a ViewStubCompat.
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:id
+ */
+ public static final int ViewStubCompat_android_id = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inflatedId}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:inflatedId
+ */
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:layout
+ */
+ public static final int ViewStubCompat_android_layout = 1;
+ };
+}
diff --git a/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/R.java b/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/R.java
new file mode 100644
index 000000000..b96ca5942
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/R.java
@@ -0,0 +1,74 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee;
+
+public final class R {
+ public static final class attr {
+ public static final int actualImageScaleType = 0x7f0100d1;
+ public static final int backgroundImage = 0x7f0100d2;
+ public static final int fadeDuration = 0x7f0100c6;
+ public static final int failureImage = 0x7f0100cc;
+ public static final int failureImageScaleType = 0x7f0100cd;
+ public static final int overlayImage = 0x7f0100d3;
+ public static final int placeholderImage = 0x7f0100c8;
+ public static final int placeholderImageScaleType = 0x7f0100c9;
+ public static final int pressedStateOverlayImage = 0x7f0100d4;
+ public static final int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static final int progressBarImage = 0x7f0100ce;
+ public static final int progressBarImageScaleType = 0x7f0100cf;
+ public static final int retryImage = 0x7f0100ca;
+ public static final int retryImageScaleType = 0x7f0100cb;
+ public static final int roundAsCircle = 0x7f0100d5;
+ public static final int roundBottomLeft = 0x7f0100da;
+ public static final int roundBottomRight = 0x7f0100d9;
+ public static final int roundTopLeft = 0x7f0100d7;
+ public static final int roundTopRight = 0x7f0100d8;
+ public static final int roundWithOverlayColor = 0x7f0100db;
+ public static final int roundedCornerRadius = 0x7f0100d6;
+ public static final int roundingBorderColor = 0x7f0100dd;
+ public static final int roundingBorderWidth = 0x7f0100dc;
+ public static final int viewAspectRatio = 0x7f0100c7;
+ }
+ public static final class id {
+ public static final int center = 0x7f0d0021;
+ public static final int centerCrop = 0x7f0d0034;
+ public static final int centerInside = 0x7f0d0035;
+ public static final int fitCenter = 0x7f0d0036;
+ public static final int fitEnd = 0x7f0d0037;
+ public static final int fitStart = 0x7f0d0038;
+ public static final int fitXY = 0x7f0d0039;
+ public static final int focusCrop = 0x7f0d003a;
+ public static final int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static final int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static final int GenericDraweeView_actualImageScaleType = 11;
+ public static final int GenericDraweeView_backgroundImage = 12;
+ public static final int GenericDraweeView_fadeDuration = 0;
+ public static final int GenericDraweeView_failureImage = 6;
+ public static final int GenericDraweeView_failureImageScaleType = 7;
+ public static final int GenericDraweeView_overlayImage = 13;
+ public static final int GenericDraweeView_placeholderImage = 2;
+ public static final int GenericDraweeView_placeholderImageScaleType = 3;
+ public static final int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeView_progressBarImage = 8;
+ public static final int GenericDraweeView_progressBarImageScaleType = 9;
+ public static final int GenericDraweeView_retryImage = 4;
+ public static final int GenericDraweeView_retryImageScaleType = 5;
+ public static final int GenericDraweeView_roundAsCircle = 15;
+ public static final int GenericDraweeView_roundBottomLeft = 20;
+ public static final int GenericDraweeView_roundBottomRight = 19;
+ public static final int GenericDraweeView_roundTopLeft = 17;
+ public static final int GenericDraweeView_roundTopRight = 18;
+ public static final int GenericDraweeView_roundWithOverlayColor = 21;
+ public static final int GenericDraweeView_roundedCornerRadius = 16;
+ public static final int GenericDraweeView_roundingBorderColor = 23;
+ public static final int GenericDraweeView_roundingBorderWidth = 22;
+ public static final int GenericDraweeView_viewAspectRatio = 1;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/backends/pipeline/R.java b/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/backends/pipeline/R.java
new file mode 100644
index 000000000..8b356716c
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/backends/pipeline/R.java
@@ -0,0 +1,74 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee.backends.pipeline;
+
+public final class R {
+ public static final class attr {
+ public static final int actualImageScaleType = 0x7f0100d1;
+ public static final int backgroundImage = 0x7f0100d2;
+ public static final int fadeDuration = 0x7f0100c6;
+ public static final int failureImage = 0x7f0100cc;
+ public static final int failureImageScaleType = 0x7f0100cd;
+ public static final int overlayImage = 0x7f0100d3;
+ public static final int placeholderImage = 0x7f0100c8;
+ public static final int placeholderImageScaleType = 0x7f0100c9;
+ public static final int pressedStateOverlayImage = 0x7f0100d4;
+ public static final int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static final int progressBarImage = 0x7f0100ce;
+ public static final int progressBarImageScaleType = 0x7f0100cf;
+ public static final int retryImage = 0x7f0100ca;
+ public static final int retryImageScaleType = 0x7f0100cb;
+ public static final int roundAsCircle = 0x7f0100d5;
+ public static final int roundBottomLeft = 0x7f0100da;
+ public static final int roundBottomRight = 0x7f0100d9;
+ public static final int roundTopLeft = 0x7f0100d7;
+ public static final int roundTopRight = 0x7f0100d8;
+ public static final int roundWithOverlayColor = 0x7f0100db;
+ public static final int roundedCornerRadius = 0x7f0100d6;
+ public static final int roundingBorderColor = 0x7f0100dd;
+ public static final int roundingBorderWidth = 0x7f0100dc;
+ public static final int viewAspectRatio = 0x7f0100c7;
+ }
+ public static final class id {
+ public static final int center = 0x7f0d0021;
+ public static final int centerCrop = 0x7f0d0034;
+ public static final int centerInside = 0x7f0d0035;
+ public static final int fitCenter = 0x7f0d0036;
+ public static final int fitEnd = 0x7f0d0037;
+ public static final int fitStart = 0x7f0d0038;
+ public static final int fitXY = 0x7f0d0039;
+ public static final int focusCrop = 0x7f0d003a;
+ public static final int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static final int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static final int GenericDraweeView_actualImageScaleType = 11;
+ public static final int GenericDraweeView_backgroundImage = 12;
+ public static final int GenericDraweeView_fadeDuration = 0;
+ public static final int GenericDraweeView_failureImage = 6;
+ public static final int GenericDraweeView_failureImageScaleType = 7;
+ public static final int GenericDraweeView_overlayImage = 13;
+ public static final int GenericDraweeView_placeholderImage = 2;
+ public static final int GenericDraweeView_placeholderImageScaleType = 3;
+ public static final int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeView_progressBarImage = 8;
+ public static final int GenericDraweeView_progressBarImageScaleType = 9;
+ public static final int GenericDraweeView_retryImage = 4;
+ public static final int GenericDraweeView_retryImageScaleType = 5;
+ public static final int GenericDraweeView_roundAsCircle = 15;
+ public static final int GenericDraweeView_roundBottomLeft = 20;
+ public static final int GenericDraweeView_roundBottomRight = 19;
+ public static final int GenericDraweeView_roundTopLeft = 17;
+ public static final int GenericDraweeView_roundTopRight = 18;
+ public static final int GenericDraweeView_roundWithOverlayColor = 21;
+ public static final int GenericDraweeView_roundedCornerRadius = 16;
+ public static final int GenericDraweeView_roundingBorderColor = 23;
+ public static final int GenericDraweeView_roundingBorderWidth = 22;
+ public static final int GenericDraweeView_viewAspectRatio = 1;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/com/facebook/react/R.java b/android/build/generated/source/r/androidTest/debug/com/facebook/react/R.java
new file mode 100644
index 000000000..29016b67d
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/com/facebook/react/R.java
@@ -0,0 +1,1219 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.react;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ public static final int catalyst_push_up_in = 0x7f05000a;
+ public static final int catalyst_push_up_out = 0x7f05000b;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01003e;
+ public static final int actionBarItemBackground = 0x7f01003f;
+ public static final int actionBarPopupTheme = 0x7f010038;
+ public static final int actionBarSize = 0x7f01003d;
+ public static final int actionBarSplitStyle = 0x7f01003a;
+ public static final int actionBarStyle = 0x7f010039;
+ public static final int actionBarTabBarStyle = 0x7f010034;
+ public static final int actionBarTabStyle = 0x7f010033;
+ public static final int actionBarTabTextStyle = 0x7f010035;
+ public static final int actionBarTheme = 0x7f01003b;
+ public static final int actionBarWidgetTheme = 0x7f01003c;
+ public static final int actionButtonStyle = 0x7f010058;
+ public static final int actionDropDownStyle = 0x7f010054;
+ public static final int actionLayout = 0x7f0100e2;
+ public static final int actionMenuTextAppearance = 0x7f010040;
+ public static final int actionMenuTextColor = 0x7f010041;
+ public static final int actionModeBackground = 0x7f010044;
+ public static final int actionModeCloseButtonStyle = 0x7f010043;
+ public static final int actionModeCloseDrawable = 0x7f010046;
+ public static final int actionModeCopyDrawable = 0x7f010048;
+ public static final int actionModeCutDrawable = 0x7f010047;
+ public static final int actionModeFindDrawable = 0x7f01004c;
+ public static final int actionModePasteDrawable = 0x7f010049;
+ public static final int actionModePopupWindowStyle = 0x7f01004e;
+ public static final int actionModeSelectAllDrawable = 0x7f01004a;
+ public static final int actionModeShareDrawable = 0x7f01004b;
+ public static final int actionModeSplitBackground = 0x7f010045;
+ public static final int actionModeStyle = 0x7f010042;
+ public static final int actionModeWebSearchDrawable = 0x7f01004d;
+ public static final int actionOverflowButtonStyle = 0x7f010036;
+ public static final int actionOverflowMenuStyle = 0x7f010037;
+ public static final int actionProviderClass = 0x7f0100e4;
+ public static final int actionViewClass = 0x7f0100e3;
+ public static final int activityChooserViewStyle = 0x7f010060;
+ public static final int actualImageScaleType = 0x7f0100d1;
+ public static final int alertDialogButtonGroupStyle = 0x7f010083;
+ public static final int alertDialogCenterButtons = 0x7f010084;
+ public static final int alertDialogStyle = 0x7f010082;
+ public static final int alertDialogTheme = 0x7f010085;
+ public static final int arrowHeadLength = 0x7f0100bc;
+ public static final int arrowShaftLength = 0x7f0100bd;
+ public static final int autoCompleteTextViewStyle = 0x7f01008a;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundImage = 0x7f0100d2;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f010134;
+ public static final int backgroundTintMode = 0x7f010135;
+ public static final int barLength = 0x7f0100be;
+ public static final int borderlessButtonStyle = 0x7f01005d;
+ public static final int buttonBarButtonStyle = 0x7f01005a;
+ public static final int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static final int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static final int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static final int buttonBarStyle = 0x7f010059;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f01008b;
+ public static final int buttonStyleSmall = 0x7f01008c;
+ public static final int buttonTint = 0x7f0100ad;
+ public static final int buttonTintMode = 0x7f0100ae;
+ public static final int checkboxStyle = 0x7f01008d;
+ public static final int checkedTextViewStyle = 0x7f01008e;
+ public static final int closeIcon = 0x7f0100f8;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f01012b;
+ public static final int collapseIcon = 0x7f01012a;
+ public static final int color = 0x7f0100b8;
+ public static final int colorAccent = 0x7f01007b;
+ public static final int colorButtonNormal = 0x7f01007f;
+ public static final int colorControlActivated = 0x7f01007d;
+ public static final int colorControlHighlight = 0x7f01007e;
+ public static final int colorControlNormal = 0x7f01007c;
+ public static final int colorPrimary = 0x7f010079;
+ public static final int colorPrimaryDark = 0x7f01007a;
+ public static final int colorSwitchThumbNormal = 0x7f010080;
+ public static final int commitIcon = 0x7f0100fd;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int controlBackground = 0x7f010081;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f0100f7;
+ public static final int dialogPreferredPadding = 0x7f010052;
+ public static final int dialogTheme = 0x7f010051;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01005f;
+ public static final int dividerPadding = 0x7f0100e0;
+ public static final int dividerVertical = 0x7f01005e;
+ public static final int drawableSize = 0x7f0100ba;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010071;
+ public static final int dropdownListPreferredItemHeight = 0x7f010055;
+ public static final int editTextBackground = 0x7f010066;
+ public static final int editTextColor = 0x7f010065;
+ public static final int editTextStyle = 0x7f01008f;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int fadeDuration = 0x7f0100c6;
+ public static final int failureImage = 0x7f0100cc;
+ public static final int failureImageScaleType = 0x7f0100cd;
+ public static final int gapBetweenBars = 0x7f0100bb;
+ public static final int goIcon = 0x7f0100f9;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f010057;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f0100f5;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f0100f4;
+ public static final int layoutManager = 0x7f0100ee;
+ public static final int listChoiceBackgroundIndicator = 0x7f010078;
+ public static final int listDividerAlertDialog = 0x7f010053;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010072;
+ public static final int listPreferredItemHeight = 0x7f01006c;
+ public static final int listPreferredItemHeightLarge = 0x7f01006e;
+ public static final int listPreferredItemHeightSmall = 0x7f01006d;
+ public static final int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static final int listPreferredItemPaddingRight = 0x7f010070;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f01012e;
+ public static final int maxButtonHeight = 0x7f010129;
+ public static final int measureWithLargestChild = 0x7f0100de;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f01012d;
+ public static final int navigationIcon = 0x7f01012c;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f0100ec;
+ public static final int overlayImage = 0x7f0100d3;
+ public static final int paddingEnd = 0x7f010132;
+ public static final int paddingStart = 0x7f010131;
+ public static final int panelBackground = 0x7f010075;
+ public static final int panelMenuListTheme = 0x7f010077;
+ public static final int panelMenuListWidth = 0x7f010076;
+ public static final int placeholderImage = 0x7f0100c8;
+ public static final int placeholderImageScaleType = 0x7f0100c9;
+ public static final int popupMenuStyle = 0x7f010063;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f010064;
+ public static final int preserveIconSpacing = 0x7f0100e5;
+ public static final int pressedStateOverlayImage = 0x7f0100d4;
+ public static final int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static final int progressBarImage = 0x7f0100ce;
+ public static final int progressBarImageScaleType = 0x7f0100cf;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f0100ff;
+ public static final int queryHint = 0x7f0100f6;
+ public static final int radioButtonStyle = 0x7f010090;
+ public static final int ratingBarStyle = 0x7f010091;
+ public static final int retryImage = 0x7f0100ca;
+ public static final int retryImageScaleType = 0x7f0100cb;
+ public static final int reverseLayout = 0x7f0100f0;
+ public static final int roundAsCircle = 0x7f0100d5;
+ public static final int roundBottomLeft = 0x7f0100da;
+ public static final int roundBottomRight = 0x7f0100d9;
+ public static final int roundTopLeft = 0x7f0100d7;
+ public static final int roundTopRight = 0x7f0100d8;
+ public static final int roundWithOverlayColor = 0x7f0100db;
+ public static final int roundedCornerRadius = 0x7f0100d6;
+ public static final int roundingBorderColor = 0x7f0100dd;
+ public static final int roundingBorderWidth = 0x7f0100dc;
+ public static final int searchHintIcon = 0x7f0100fb;
+ public static final int searchIcon = 0x7f0100fa;
+ public static final int searchViewStyle = 0x7f01006b;
+ public static final int selectableItemBackground = 0x7f01005b;
+ public static final int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static final int showAsAction = 0x7f0100e1;
+ public static final int showDividers = 0x7f0100df;
+ public static final int showText = 0x7f010108;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spanCount = 0x7f0100ef;
+ public static final int spinBars = 0x7f0100b9;
+ public static final int spinnerDropDownItemStyle = 0x7f010056;
+ public static final int spinnerStyle = 0x7f010095;
+ public static final int splitTrack = 0x7f010107;
+ public static final int stackFromEnd = 0x7f0100f1;
+ public static final int state_above_anchor = 0x7f0100ed;
+ public static final int submitBackground = 0x7f010100;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f010123;
+ public static final int subtitleTextColor = 0x7f010130;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f0100fe;
+ public static final int switchMinWidth = 0x7f010105;
+ public static final int switchPadding = 0x7f010106;
+ public static final int switchStyle = 0x7f010096;
+ public static final int switchTextAppearance = 0x7f010104;
+ public static final int textAllCaps = 0x7f010028;
+ public static final int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static final int textAppearanceListItem = 0x7f010073;
+ public static final int textAppearanceListItemSmall = 0x7f010074;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static final int textAppearanceSearchResultTitle = 0x7f010068;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static final int textColorAlertDialogListItem = 0x7f010086;
+ public static final int textColorSearchUrl = 0x7f01006a;
+ public static final int theme = 0x7f010133;
+ public static final int thickness = 0x7f0100bf;
+ public static final int thumbTextPadding = 0x7f010103;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f010128;
+ public static final int titleMarginEnd = 0x7f010126;
+ public static final int titleMarginStart = 0x7f010125;
+ public static final int titleMarginTop = 0x7f010127;
+ public static final int titleMargins = 0x7f010124;
+ public static final int titleTextAppearance = 0x7f010122;
+ public static final int titleTextColor = 0x7f01012f;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f010062;
+ public static final int toolbarStyle = 0x7f010061;
+ public static final int track = 0x7f010102;
+ public static final int viewAspectRatio = 0x7f0100c7;
+ public static final int voiceIcon = 0x7f0100fc;
+ public static final int windowActionBar = 0x7f010029;
+ public static final int windowActionBarOverlay = 0x7f01002b;
+ public static final int windowActionModeOverlay = 0x7f01002c;
+ public static final int windowFixedHeightMajor = 0x7f010030;
+ public static final int windowFixedHeightMinor = 0x7f01002e;
+ public static final int windowFixedWidthMajor = 0x7f01002d;
+ public static final int windowFixedWidthMinor = 0x7f01002f;
+ public static final int windowMinWidthMajor = 0x7f010031;
+ public static final int windowMinWidthMinor = 0x7f010032;
+ public static final int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static final int abc_color_highlight_material = 0x7f0c004b;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static final int abc_primary_text_material_dark = 0x7f0c004e;
+ public static final int abc_primary_text_material_light = 0x7f0c004f;
+ public static final int abc_search_url_text = 0x7f0c0050;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static final int abc_secondary_text_material_light = 0x7f0c0052;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static final int bright_foreground_material_dark = 0x7f0c000f;
+ public static final int bright_foreground_material_light = 0x7f0c0010;
+ public static final int button_material_dark = 0x7f0c0011;
+ public static final int button_material_light = 0x7f0c0012;
+ public static final int catalyst_redbox_background = 0x7f0c0013;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static final int dim_foreground_material_dark = 0x7f0c0023;
+ public static final int dim_foreground_material_light = 0x7f0c0024;
+ public static final int foreground_material_dark = 0x7f0c0025;
+ public static final int foreground_material_light = 0x7f0c0026;
+ public static final int highlighted_text_material_dark = 0x7f0c0027;
+ public static final int highlighted_text_material_light = 0x7f0c0028;
+ public static final int hint_foreground_material_dark = 0x7f0c0029;
+ public static final int hint_foreground_material_light = 0x7f0c002a;
+ public static final int material_blue_grey_800 = 0x7f0c002b;
+ public static final int material_blue_grey_900 = 0x7f0c002c;
+ public static final int material_blue_grey_950 = 0x7f0c002d;
+ public static final int material_deep_teal_200 = 0x7f0c002e;
+ public static final int material_deep_teal_500 = 0x7f0c002f;
+ public static final int material_grey_100 = 0x7f0c0030;
+ public static final int material_grey_300 = 0x7f0c0031;
+ public static final int material_grey_50 = 0x7f0c0032;
+ public static final int material_grey_600 = 0x7f0c0033;
+ public static final int material_grey_800 = 0x7f0c0034;
+ public static final int material_grey_850 = 0x7f0c0035;
+ public static final int material_grey_900 = 0x7f0c0036;
+ public static final int primary_dark_material_dark = 0x7f0c0037;
+ public static final int primary_dark_material_light = 0x7f0c0038;
+ public static final int primary_material_dark = 0x7f0c0039;
+ public static final int primary_material_light = 0x7f0c003a;
+ public static final int primary_text_default_material_dark = 0x7f0c003b;
+ public static final int primary_text_default_material_light = 0x7f0c003c;
+ public static final int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static final int primary_text_disabled_material_light = 0x7f0c003e;
+ public static final int ripple_material_dark = 0x7f0c003f;
+ public static final int ripple_material_light = 0x7f0c0040;
+ public static final int secondary_text_default_material_dark = 0x7f0c0041;
+ public static final int secondary_text_default_material_light = 0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static final int switch_thumb_material_dark = 0x7f0c0053;
+ public static final int switch_thumb_material_light = 0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static final int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static final int abc_action_bar_default_height_material = 0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static final int abc_action_button_min_height_material = 0x7f090021;
+ public static final int abc_action_button_min_width_material = 0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static final int abc_button_inset_horizontal_material = 0x7f090024;
+ public static final int abc_button_inset_vertical_material = 0x7f090025;
+ public static final int abc_button_padding_horizontal_material = 0x7f090026;
+ public static final int abc_button_padding_vertical_material = 0x7f090027;
+ public static final int abc_config_prefDialogWidth = 0x7f090005;
+ public static final int abc_control_corner_material = 0x7f090028;
+ public static final int abc_control_inset_material = 0x7f090029;
+ public static final int abc_control_padding_material = 0x7f09002a;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static final int abc_dialog_min_width_major = 0x7f09000a;
+ public static final int abc_dialog_min_width_minor = 0x7f09000b;
+ public static final int abc_dialog_padding_material = 0x7f09002c;
+ public static final int abc_dialog_padding_top_material = 0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static final int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static final int abc_dropdownitem_icon_width = 0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static final int abc_edit_text_inset_top_material = 0x7f090035;
+ public static final int abc_floating_window_z = 0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static final int abc_panel_menu_list_width = 0x7f090038;
+ public static final int abc_search_view_preferred_width = 0x7f090039;
+ public static final int abc_search_view_text_min_width = 0x7f09000c;
+ public static final int abc_switch_padding = 0x7f090018;
+ public static final int abc_text_size_body_1_material = 0x7f09003d;
+ public static final int abc_text_size_body_2_material = 0x7f09003e;
+ public static final int abc_text_size_button_material = 0x7f09003f;
+ public static final int abc_text_size_caption_material = 0x7f090040;
+ public static final int abc_text_size_display_1_material = 0x7f090041;
+ public static final int abc_text_size_display_2_material = 0x7f090042;
+ public static final int abc_text_size_display_3_material = 0x7f090043;
+ public static final int abc_text_size_display_4_material = 0x7f090044;
+ public static final int abc_text_size_headline_material = 0x7f090045;
+ public static final int abc_text_size_large_material = 0x7f090046;
+ public static final int abc_text_size_medium_material = 0x7f090047;
+ public static final int abc_text_size_menu_material = 0x7f090048;
+ public static final int abc_text_size_small_material = 0x7f090049;
+ public static final int abc_text_size_subhead_material = 0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static final int abc_text_size_title_material = 0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static final int disabled_alpha_material_dark = 0x7f090062;
+ public static final int disabled_alpha_material_light = 0x7f090063;
+ public static final int highlight_alpha_material_colored = 0x7f090065;
+ public static final int highlight_alpha_material_dark = 0x7f090066;
+ public static final int highlight_alpha_material_light = 0x7f090067;
+ public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static final int notification_large_icon_height = 0x7f09006d;
+ public static final int notification_large_icon_width = 0x7f09006e;
+ public static final int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static final int abc_item_background_holo_dark = 0x7f020026;
+ public static final int abc_item_background_holo_light = 0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static final int abc_list_focused_holo = 0x7f020029;
+ public static final int abc_list_longpressed_holo = 0x7f02002a;
+ public static final int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static final int abc_list_pressed_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static final int abc_list_selector_holo_dark = 0x7f020031;
+ public static final int abc_list_selector_holo_light = 0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static final int abc_ratingbar_full_material = 0x7f020035;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020040;
+ public static final int abc_switch_thumb_material = 0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static final int abc_tab_indicator_material = 0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static final int abc_text_cursor_material = 0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static final int abc_textfield_search_material = 0x7f02004a;
+ public static final int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d008a;
+ public static final int action_bar = 0x7f0d0064;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0063;
+ public static final int action_bar_root = 0x7f0d005f;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d0045;
+ public static final int action_bar_title = 0x7f0d0044;
+ public static final int action_context_bar = 0x7f0d0065;
+ public static final int action_divider = 0x7f0d008e;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0061;
+ public static final int action_mode_bar_stub = 0x7f0d0060;
+ public static final int action_mode_close_button = 0x7f0d0046;
+ public static final int activity_chooser_view_content = 0x7f0d0047;
+ public static final int alertTitle = 0x7f0d0053;
+ public static final int always = 0x7f0d003d;
+ public static final int beginning = 0x7f0d003b;
+ public static final int buttonPanel = 0x7f0d004e;
+ public static final int cancel_action = 0x7f0d008b;
+ public static final int catalyst_redbox_title = 0x7f0d0099;
+ public static final int center = 0x7f0d0021;
+ public static final int centerCrop = 0x7f0d0034;
+ public static final int centerInside = 0x7f0d0035;
+ public static final int checkbox = 0x7f0d005c;
+ public static final int chronometer = 0x7f0d0091;
+ public static final int collapseActionView = 0x7f0d003e;
+ public static final int contentPanel = 0x7f0d0054;
+ public static final int custom = 0x7f0d005a;
+ public static final int customPanel = 0x7f0d0059;
+ public static final int decor_content_parent = 0x7f0d0062;
+ public static final int default_activity_button = 0x7f0d004a;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d0066;
+ public static final int end = 0x7f0d0024;
+ public static final int end_padder = 0x7f0d0096;
+ public static final int expand_activities_button = 0x7f0d0048;
+ public static final int expanded_menu = 0x7f0d005b;
+ public static final int fitCenter = 0x7f0d0036;
+ public static final int fitEnd = 0x7f0d0037;
+ public static final int fitStart = 0x7f0d0038;
+ public static final int fitXY = 0x7f0d0039;
+ public static final int focusCrop = 0x7f0d003a;
+ public static final int fps_text = 0x7f0d0086;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d004c;
+ public static final int ifRoom = 0x7f0d003f;
+ public static final int image = 0x7f0d0049;
+ public static final int info = 0x7f0d0095;
+ public static final int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static final int line1 = 0x7f0d008f;
+ public static final int line3 = 0x7f0d0093;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d004b;
+ public static final int media_actions = 0x7f0d008d;
+ public static final int middle = 0x7f0d003c;
+ public static final int multiply = 0x7f0d002a;
+ public static final int never = 0x7f0d0040;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parentPanel = 0x7f0d0050;
+ public static final int progress_circular = 0x7f0d0006;
+ public static final int progress_horizontal = 0x7f0d0007;
+ public static final int radio = 0x7f0d005e;
+ public static final int rn_frame_file = 0x7f0d0098;
+ public static final int rn_frame_method = 0x7f0d0097;
+ public static final int rn_redbox_reloadjs = 0x7f0d009b;
+ public static final int rn_redbox_stack = 0x7f0d009a;
+ public static final int screen = 0x7f0d002b;
+ public static final int scrollView = 0x7f0d0056;
+ public static final int search_badge = 0x7f0d0068;
+ public static final int search_bar = 0x7f0d0067;
+ public static final int search_button = 0x7f0d0069;
+ public static final int search_close_btn = 0x7f0d006e;
+ public static final int search_edit_frame = 0x7f0d006a;
+ public static final int search_go_btn = 0x7f0d0070;
+ public static final int search_mag_icon = 0x7f0d006b;
+ public static final int search_plate = 0x7f0d006c;
+ public static final int search_src_text = 0x7f0d006d;
+ public static final int search_voice_btn = 0x7f0d0071;
+ public static final int select_dialog_listview = 0x7f0d0072;
+ public static final int shortcut = 0x7f0d005d;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d002c;
+ public static final int src_in = 0x7f0d002d;
+ public static final int src_over = 0x7f0d002e;
+ public static final int status_bar_latest_event_content = 0x7f0d008c;
+ public static final int submit_area = 0x7f0d006f;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0094;
+ public static final int text2 = 0x7f0d0092;
+ public static final int textSpacerNoButtons = 0x7f0d0057;
+ public static final int time = 0x7f0d0090;
+ public static final int title = 0x7f0d004d;
+ public static final int title_template = 0x7f0d0052;
+ public static final int topPanel = 0x7f0d0051;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int withText = 0x7f0d0041;
+ public static final int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static final int abc_config_activityShortDur = 0x7f0b0003;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int cancel_button_image_alpha = 0x7f0b0005;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_material = 0x7f04000a;
+ public static final int abc_dialog_title_material = 0x7f04000b;
+ public static final int abc_expanded_menu_layout = 0x7f04000c;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static final int abc_list_menu_item_icon = 0x7f04000e;
+ public static final int abc_list_menu_item_layout = 0x7f04000f;
+ public static final int abc_list_menu_item_radio = 0x7f040010;
+ public static final int abc_popup_menu_item_layout = 0x7f040011;
+ public static final int abc_screen_content_include = 0x7f040012;
+ public static final int abc_screen_simple = 0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static final int abc_screen_toolbar = 0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static final int abc_search_view = 0x7f040017;
+ public static final int abc_select_dialog_material = 0x7f040018;
+ public static final int fps_view = 0x7f04002b;
+ public static final int notification_media_action = 0x7f04002e;
+ public static final int notification_media_cancel_action = 0x7f04002f;
+ public static final int notification_template_big_media = 0x7f040030;
+ public static final int notification_template_big_media_narrow = 0x7f040031;
+ public static final int notification_template_lines = 0x7f040032;
+ public static final int notification_template_media = 0x7f040033;
+ public static final int notification_template_part_chronometer = 0x7f040034;
+ public static final int notification_template_part_time = 0x7f040035;
+ public static final int redbox_item_frame = 0x7f040036;
+ public static final int redbox_item_title = 0x7f040037;
+ public static final int redbox_view = 0x7f040038;
+ public static final int select_dialog_item_material = 0x7f040039;
+ public static final int select_dialog_multichoice_material = 0x7f04003a;
+ public static final int select_dialog_singlechoice_material = 0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_search_hint = 0x7f07000a;
+ public static final int abc_searchview_description_clear = 0x7f07000b;
+ public static final int abc_searchview_description_query = 0x7f07000c;
+ public static final int abc_searchview_description_search = 0x7f07000d;
+ public static final int abc_searchview_description_submit = 0x7f07000e;
+ public static final int abc_searchview_description_voice = 0x7f07000f;
+ public static final int abc_shareactionprovider_share_with = 0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static final int abc_toolbar_collapse_description = 0x7f070012;
+ public static final int catalyst_debugjs = 0x7f070028;
+ public static final int catalyst_debugjs_off = 0x7f07005c;
+ public static final int catalyst_element_inspector = 0x7f070029;
+ public static final int catalyst_element_inspector_off = 0x7f07005d;
+ public static final int catalyst_hot_module_replacement = 0x7f07005e;
+ public static final int catalyst_hot_module_replacement_off = 0x7f07005f;
+ public static final int catalyst_jsload_error = 0x7f07002a;
+ public static final int catalyst_jsload_message = 0x7f07002b;
+ public static final int catalyst_jsload_title = 0x7f07002c;
+ public static final int catalyst_live_reload = 0x7f070060;
+ public static final int catalyst_live_reload_off = 0x7f070061;
+ public static final int catalyst_perf_monitor = 0x7f070062;
+ public static final int catalyst_perf_monitor_off = 0x7f070063;
+ public static final int catalyst_reloadjs = 0x7f07002d;
+ public static final int catalyst_remotedbg_error = 0x7f070064;
+ public static final int catalyst_remotedbg_message = 0x7f070065;
+ public static final int catalyst_settings = 0x7f07002e;
+ public static final int catalyst_settings_title = 0x7f07002f;
+ public static final int catalyst_start_profile = 0x7f070066;
+ public static final int catalyst_stop_profile = 0x7f070067;
+ public static final int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static final int Animation_Catalyst_RedBox = 0x7f0a008c;
+ public static final int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static final int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static final int Base_Theme_AppCompat = 0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static final int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static final int Platform_AppCompat = 0x7f0a0018;
+ public static final int Platform_AppCompat_Light = 0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static final int Platform_V11_AppCompat = 0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static final int Platform_V14_AppCompat = 0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static final int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static final int Theme = 0x7f0a00f5;
+ public static final int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static final int Theme_AppCompat = 0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static final int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static final int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static final int Theme_Catalyst = 0x7f0a0104;
+ public static final int Theme_Catalyst_RedBox = 0x7f0a0105;
+ public static final int Theme_ReactNative_AppCompat_Light = 0x7f0a010c;
+ public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0a010d;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static final int Widget_AppCompat_Button = 0x7f0a011e;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static final int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static final int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static final int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static final int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static final int GenericDraweeView_actualImageScaleType = 11;
+ public static final int GenericDraweeView_backgroundImage = 12;
+ public static final int GenericDraweeView_fadeDuration = 0;
+ public static final int GenericDraweeView_failureImage = 6;
+ public static final int GenericDraweeView_failureImageScaleType = 7;
+ public static final int GenericDraweeView_overlayImage = 13;
+ public static final int GenericDraweeView_placeholderImage = 2;
+ public static final int GenericDraweeView_placeholderImageScaleType = 3;
+ public static final int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeView_progressBarImage = 8;
+ public static final int GenericDraweeView_progressBarImageScaleType = 9;
+ public static final int GenericDraweeView_retryImage = 4;
+ public static final int GenericDraweeView_retryImageScaleType = 5;
+ public static final int GenericDraweeView_roundAsCircle = 15;
+ public static final int GenericDraweeView_roundBottomLeft = 20;
+ public static final int GenericDraweeView_roundBottomRight = 19;
+ public static final int GenericDraweeView_roundTopLeft = 17;
+ public static final int GenericDraweeView_roundTopRight = 18;
+ public static final int GenericDraweeView_roundWithOverlayColor = 21;
+ public static final int GenericDraweeView_roundedCornerRadius = 16;
+ public static final int GenericDraweeView_roundingBorderColor = 23;
+ public static final int GenericDraweeView_roundingBorderWidth = 22;
+ public static final int GenericDraweeView_viewAspectRatio = 1;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static final int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static final int RecyclerView_android_orientation = 0;
+ public static final int RecyclerView_layoutManager = 1;
+ public static final int RecyclerView_reverseLayout = 3;
+ public static final int RecyclerView_spanCount = 2;
+ public static final int RecyclerView_stackFromEnd = 4;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 3;
+ public static final int Spinner_android_popupBackground = 1;
+ public static final int Spinner_android_prompt = 2;
+ public static final int Spinner_popupTheme = 4;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+ public static final class xml {
+ public static final int preferences = 0x7f060000;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/org/opencv/R.java b/android/build/generated/source/r/androidTest/debug/org/opencv/R.java
new file mode 100644
index 000000000..bb2bc6e4a
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/org/opencv/R.java
@@ -0,0 +1,24 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.opencv;
+
+public final class R {
+ public static final class attr {
+ public static final int camera_id = 0x7f01009d;
+ public static final int show_fps = 0x7f01009c;
+ }
+ public static final class id {
+ public static final int any = 0x7f0d001b;
+ public static final int back = 0x7f0d001c;
+ public static final int front = 0x7f0d001d;
+ }
+ public static final class styleable {
+ public static final int[] CameraBridgeViewBase = { 0x7f01009c, 0x7f01009d };
+ public static final int CameraBridgeViewBase_camera_id = 1;
+ public static final int CameraBridgeViewBase_show_fps = 0;
+ }
+}
diff --git a/android/build/generated/source/r/androidTest/debug/org/webkit/android_jsc/R.java b/android/build/generated/source/r/androidTest/debug/org/webkit/android_jsc/R.java
new file mode 100644
index 000000000..2a9140d87
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/org/webkit/android_jsc/R.java
@@ -0,0 +1,10 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.webkit.android_jsc;
+
+public final class R {
+}
diff --git a/android/build/generated/source/r/androidTest/debug/us/feras/mdv/R.java b/android/build/generated/source/r/androidTest/debug/us/feras/mdv/R.java
new file mode 100644
index 000000000..b3f4ab1af
--- /dev/null
+++ b/android/build/generated/source/r/androidTest/debug/us/feras/mdv/R.java
@@ -0,0 +1,1145 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package us.feras.mdv;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01003e;
+ public static final int actionBarItemBackground = 0x7f01003f;
+ public static final int actionBarPopupTheme = 0x7f010038;
+ public static final int actionBarSize = 0x7f01003d;
+ public static final int actionBarSplitStyle = 0x7f01003a;
+ public static final int actionBarStyle = 0x7f010039;
+ public static final int actionBarTabBarStyle = 0x7f010034;
+ public static final int actionBarTabStyle = 0x7f010033;
+ public static final int actionBarTabTextStyle = 0x7f010035;
+ public static final int actionBarTheme = 0x7f01003b;
+ public static final int actionBarWidgetTheme = 0x7f01003c;
+ public static final int actionButtonStyle = 0x7f010058;
+ public static final int actionDropDownStyle = 0x7f010054;
+ public static final int actionLayout = 0x7f0100e2;
+ public static final int actionMenuTextAppearance = 0x7f010040;
+ public static final int actionMenuTextColor = 0x7f010041;
+ public static final int actionModeBackground = 0x7f010044;
+ public static final int actionModeCloseButtonStyle = 0x7f010043;
+ public static final int actionModeCloseDrawable = 0x7f010046;
+ public static final int actionModeCopyDrawable = 0x7f010048;
+ public static final int actionModeCutDrawable = 0x7f010047;
+ public static final int actionModeFindDrawable = 0x7f01004c;
+ public static final int actionModePasteDrawable = 0x7f010049;
+ public static final int actionModePopupWindowStyle = 0x7f01004e;
+ public static final int actionModeSelectAllDrawable = 0x7f01004a;
+ public static final int actionModeShareDrawable = 0x7f01004b;
+ public static final int actionModeSplitBackground = 0x7f010045;
+ public static final int actionModeStyle = 0x7f010042;
+ public static final int actionModeWebSearchDrawable = 0x7f01004d;
+ public static final int actionOverflowButtonStyle = 0x7f010036;
+ public static final int actionOverflowMenuStyle = 0x7f010037;
+ public static final int actionProviderClass = 0x7f0100e4;
+ public static final int actionViewClass = 0x7f0100e3;
+ public static final int activityChooserViewStyle = 0x7f010060;
+ public static final int alertDialogButtonGroupStyle = 0x7f010083;
+ public static final int alertDialogCenterButtons = 0x7f010084;
+ public static final int alertDialogStyle = 0x7f010082;
+ public static final int alertDialogTheme = 0x7f010085;
+ public static final int allowStacking = 0x7f01009b;
+ public static final int arrowHeadLength = 0x7f0100bc;
+ public static final int arrowShaftLength = 0x7f0100bd;
+ public static final int autoCompleteTextViewStyle = 0x7f01008a;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f010134;
+ public static final int backgroundTintMode = 0x7f010135;
+ public static final int barLength = 0x7f0100be;
+ public static final int borderlessButtonStyle = 0x7f01005d;
+ public static final int buttonBarButtonStyle = 0x7f01005a;
+ public static final int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static final int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static final int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static final int buttonBarStyle = 0x7f010059;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f01008b;
+ public static final int buttonStyleSmall = 0x7f01008c;
+ public static final int buttonTint = 0x7f0100ad;
+ public static final int buttonTintMode = 0x7f0100ae;
+ public static final int checkboxStyle = 0x7f01008d;
+ public static final int checkedTextViewStyle = 0x7f01008e;
+ public static final int closeIcon = 0x7f0100f8;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f01012b;
+ public static final int collapseIcon = 0x7f01012a;
+ public static final int color = 0x7f0100b8;
+ public static final int colorAccent = 0x7f01007b;
+ public static final int colorButtonNormal = 0x7f01007f;
+ public static final int colorControlActivated = 0x7f01007d;
+ public static final int colorControlHighlight = 0x7f01007e;
+ public static final int colorControlNormal = 0x7f01007c;
+ public static final int colorPrimary = 0x7f010079;
+ public static final int colorPrimaryDark = 0x7f01007a;
+ public static final int colorSwitchThumbNormal = 0x7f010080;
+ public static final int commitIcon = 0x7f0100fd;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int controlBackground = 0x7f010081;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f0100f7;
+ public static final int dialogPreferredPadding = 0x7f010052;
+ public static final int dialogTheme = 0x7f010051;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01005f;
+ public static final int dividerPadding = 0x7f0100e0;
+ public static final int dividerVertical = 0x7f01005e;
+ public static final int drawableSize = 0x7f0100ba;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010071;
+ public static final int dropdownListPreferredItemHeight = 0x7f010055;
+ public static final int editTextBackground = 0x7f010066;
+ public static final int editTextColor = 0x7f010065;
+ public static final int editTextStyle = 0x7f01008f;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int gapBetweenBars = 0x7f0100bb;
+ public static final int goIcon = 0x7f0100f9;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f010057;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f0100f5;
+ public static final int imageButtonStyle = 0x7f010067;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f0100f4;
+ public static final int listChoiceBackgroundIndicator = 0x7f010078;
+ public static final int listDividerAlertDialog = 0x7f010053;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010072;
+ public static final int listPreferredItemHeight = 0x7f01006c;
+ public static final int listPreferredItemHeightLarge = 0x7f01006e;
+ public static final int listPreferredItemHeightSmall = 0x7f01006d;
+ public static final int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static final int listPreferredItemPaddingRight = 0x7f010070;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f01012e;
+ public static final int maxButtonHeight = 0x7f010129;
+ public static final int measureWithLargestChild = 0x7f0100de;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f01012d;
+ public static final int navigationIcon = 0x7f01012c;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f0100ec;
+ public static final int paddingEnd = 0x7f010132;
+ public static final int paddingStart = 0x7f010131;
+ public static final int panelBackground = 0x7f010075;
+ public static final int panelMenuListTheme = 0x7f010077;
+ public static final int panelMenuListWidth = 0x7f010076;
+ public static final int popupMenuStyle = 0x7f010063;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f010064;
+ public static final int preserveIconSpacing = 0x7f0100e5;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f0100ff;
+ public static final int queryHint = 0x7f0100f6;
+ public static final int radioButtonStyle = 0x7f010090;
+ public static final int ratingBarStyle = 0x7f010091;
+ public static final int searchHintIcon = 0x7f0100fb;
+ public static final int searchIcon = 0x7f0100fa;
+ public static final int searchViewStyle = 0x7f01006b;
+ public static final int seekBarStyle = 0x7f010094;
+ public static final int selectableItemBackground = 0x7f01005b;
+ public static final int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static final int showAsAction = 0x7f0100e1;
+ public static final int showDividers = 0x7f0100df;
+ public static final int showText = 0x7f010108;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spinBars = 0x7f0100b9;
+ public static final int spinnerDropDownItemStyle = 0x7f010056;
+ public static final int spinnerStyle = 0x7f010095;
+ public static final int splitTrack = 0x7f010107;
+ public static final int state_above_anchor = 0x7f0100ed;
+ public static final int submitBackground = 0x7f010100;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f010123;
+ public static final int subtitleTextColor = 0x7f010130;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f0100fe;
+ public static final int switchMinWidth = 0x7f010105;
+ public static final int switchPadding = 0x7f010106;
+ public static final int switchStyle = 0x7f010096;
+ public static final int switchTextAppearance = 0x7f010104;
+ public static final int textAllCaps = 0x7f010028;
+ public static final int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static final int textAppearanceListItem = 0x7f010073;
+ public static final int textAppearanceListItemSmall = 0x7f010074;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static final int textAppearanceSearchResultTitle = 0x7f010068;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static final int textColorAlertDialogListItem = 0x7f010086;
+ public static final int textColorSearchUrl = 0x7f01006a;
+ public static final int theme = 0x7f010133;
+ public static final int thickness = 0x7f0100bf;
+ public static final int thumbTextPadding = 0x7f010103;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f010128;
+ public static final int titleMarginEnd = 0x7f010126;
+ public static final int titleMarginStart = 0x7f010125;
+ public static final int titleMarginTop = 0x7f010127;
+ public static final int titleMargins = 0x7f010124;
+ public static final int titleTextAppearance = 0x7f010122;
+ public static final int titleTextColor = 0x7f01012f;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f010062;
+ public static final int toolbarStyle = 0x7f010061;
+ public static final int track = 0x7f010102;
+ public static final int voiceIcon = 0x7f0100fc;
+ public static final int windowActionBar = 0x7f010029;
+ public static final int windowActionBarOverlay = 0x7f01002b;
+ public static final int windowActionModeOverlay = 0x7f01002c;
+ public static final int windowFixedHeightMajor = 0x7f010030;
+ public static final int windowFixedHeightMinor = 0x7f01002e;
+ public static final int windowFixedWidthMajor = 0x7f01002d;
+ public static final int windowFixedWidthMinor = 0x7f01002f;
+ public static final int windowMinWidthMajor = 0x7f010031;
+ public static final int windowMinWidthMinor = 0x7f010032;
+ public static final int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f080003;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static final int abc_allow_stacked_button_bar = 0x7f080000;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static final int abc_color_highlight_material = 0x7f0c004b;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static final int abc_primary_text_material_dark = 0x7f0c004e;
+ public static final int abc_primary_text_material_light = 0x7f0c004f;
+ public static final int abc_search_url_text = 0x7f0c0050;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static final int abc_secondary_text_material_light = 0x7f0c0052;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static final int bright_foreground_material_dark = 0x7f0c000f;
+ public static final int bright_foreground_material_light = 0x7f0c0010;
+ public static final int button_material_dark = 0x7f0c0011;
+ public static final int button_material_light = 0x7f0c0012;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static final int dim_foreground_material_dark = 0x7f0c0023;
+ public static final int dim_foreground_material_light = 0x7f0c0024;
+ public static final int foreground_material_dark = 0x7f0c0025;
+ public static final int foreground_material_light = 0x7f0c0026;
+ public static final int highlighted_text_material_dark = 0x7f0c0027;
+ public static final int highlighted_text_material_light = 0x7f0c0028;
+ public static final int hint_foreground_material_dark = 0x7f0c0029;
+ public static final int hint_foreground_material_light = 0x7f0c002a;
+ public static final int material_blue_grey_800 = 0x7f0c002b;
+ public static final int material_blue_grey_900 = 0x7f0c002c;
+ public static final int material_blue_grey_950 = 0x7f0c002d;
+ public static final int material_deep_teal_200 = 0x7f0c002e;
+ public static final int material_deep_teal_500 = 0x7f0c002f;
+ public static final int material_grey_100 = 0x7f0c0030;
+ public static final int material_grey_300 = 0x7f0c0031;
+ public static final int material_grey_50 = 0x7f0c0032;
+ public static final int material_grey_600 = 0x7f0c0033;
+ public static final int material_grey_800 = 0x7f0c0034;
+ public static final int material_grey_850 = 0x7f0c0035;
+ public static final int material_grey_900 = 0x7f0c0036;
+ public static final int primary_dark_material_dark = 0x7f0c0037;
+ public static final int primary_dark_material_light = 0x7f0c0038;
+ public static final int primary_material_dark = 0x7f0c0039;
+ public static final int primary_material_light = 0x7f0c003a;
+ public static final int primary_text_default_material_dark = 0x7f0c003b;
+ public static final int primary_text_default_material_light = 0x7f0c003c;
+ public static final int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static final int primary_text_disabled_material_light = 0x7f0c003e;
+ public static final int ripple_material_dark = 0x7f0c003f;
+ public static final int ripple_material_light = 0x7f0c0040;
+ public static final int secondary_text_default_material_dark = 0x7f0c0041;
+ public static final int secondary_text_default_material_light = 0x7f0c0042;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static final int switch_thumb_material_dark = 0x7f0c0053;
+ public static final int switch_thumb_material_light = 0x7f0c0054;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static final int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static final int abc_action_bar_default_height_material = 0x7f090001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static final int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static final int abc_action_button_min_height_material = 0x7f090021;
+ public static final int abc_action_button_min_width_material = 0x7f090022;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static final int abc_button_inset_horizontal_material = 0x7f090024;
+ public static final int abc_button_inset_vertical_material = 0x7f090025;
+ public static final int abc_button_padding_horizontal_material = 0x7f090026;
+ public static final int abc_button_padding_vertical_material = 0x7f090027;
+ public static final int abc_config_prefDialogWidth = 0x7f090005;
+ public static final int abc_control_corner_material = 0x7f090028;
+ public static final int abc_control_inset_material = 0x7f090029;
+ public static final int abc_control_padding_material = 0x7f09002a;
+ public static final int abc_dialog_fixed_height_major = 0x7f090006;
+ public static final int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static final int abc_dialog_fixed_width_major = 0x7f090008;
+ public static final int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static final int abc_dialog_min_width_major = 0x7f09000a;
+ public static final int abc_dialog_min_width_minor = 0x7f09000b;
+ public static final int abc_dialog_padding_material = 0x7f09002c;
+ public static final int abc_dialog_padding_top_material = 0x7f09002d;
+ public static final int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static final int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static final int abc_dropdownitem_icon_width = 0x7f090030;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static final int abc_edit_text_inset_top_material = 0x7f090035;
+ public static final int abc_floating_window_z = 0x7f090036;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static final int abc_panel_menu_list_width = 0x7f090038;
+ public static final int abc_search_view_preferred_width = 0x7f090039;
+ public static final int abc_search_view_text_min_width = 0x7f09000c;
+ public static final int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static final int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static final int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static final int abc_switch_padding = 0x7f090018;
+ public static final int abc_text_size_body_1_material = 0x7f09003d;
+ public static final int abc_text_size_body_2_material = 0x7f09003e;
+ public static final int abc_text_size_button_material = 0x7f09003f;
+ public static final int abc_text_size_caption_material = 0x7f090040;
+ public static final int abc_text_size_display_1_material = 0x7f090041;
+ public static final int abc_text_size_display_2_material = 0x7f090042;
+ public static final int abc_text_size_display_3_material = 0x7f090043;
+ public static final int abc_text_size_display_4_material = 0x7f090044;
+ public static final int abc_text_size_headline_material = 0x7f090045;
+ public static final int abc_text_size_large_material = 0x7f090046;
+ public static final int abc_text_size_medium_material = 0x7f090047;
+ public static final int abc_text_size_menu_material = 0x7f090048;
+ public static final int abc_text_size_small_material = 0x7f090049;
+ public static final int abc_text_size_subhead_material = 0x7f09004a;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static final int abc_text_size_title_material = 0x7f09004b;
+ public static final int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static final int disabled_alpha_material_dark = 0x7f090062;
+ public static final int disabled_alpha_material_light = 0x7f090063;
+ public static final int highlight_alpha_material_colored = 0x7f090065;
+ public static final int highlight_alpha_material_dark = 0x7f090066;
+ public static final int highlight_alpha_material_light = 0x7f090067;
+ public static final int notification_large_icon_height = 0x7f09006d;
+ public static final int notification_large_icon_width = 0x7f09006e;
+ public static final int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static final int abc_item_background_holo_dark = 0x7f020026;
+ public static final int abc_item_background_holo_light = 0x7f020027;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static final int abc_list_focused_holo = 0x7f020029;
+ public static final int abc_list_longpressed_holo = 0x7f02002a;
+ public static final int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static final int abc_list_pressed_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static final int abc_list_selector_holo_dark = 0x7f020031;
+ public static final int abc_list_selector_holo_light = 0x7f020032;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static final int abc_ratingbar_full_material = 0x7f020035;
+ public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static final int abc_seekbar_thumb_material = 0x7f02003d;
+ public static final int abc_seekbar_track_material = 0x7f02003e;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020040;
+ public static final int abc_switch_thumb_material = 0x7f020041;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static final int abc_tab_indicator_material = 0x7f020043;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static final int abc_text_cursor_material = 0x7f020045;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static final int abc_textfield_search_material = 0x7f02004a;
+ public static final int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d008a;
+ public static final int action_bar = 0x7f0d0064;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0063;
+ public static final int action_bar_root = 0x7f0d005f;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d0045;
+ public static final int action_bar_title = 0x7f0d0044;
+ public static final int action_context_bar = 0x7f0d0065;
+ public static final int action_divider = 0x7f0d008e;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0061;
+ public static final int action_mode_bar_stub = 0x7f0d0060;
+ public static final int action_mode_close_button = 0x7f0d0046;
+ public static final int activity_chooser_view_content = 0x7f0d0047;
+ public static final int alertTitle = 0x7f0d0053;
+ public static final int always = 0x7f0d003d;
+ public static final int beginning = 0x7f0d003b;
+ public static final int buttonPanel = 0x7f0d004e;
+ public static final int cancel_action = 0x7f0d008b;
+ public static final int checkbox = 0x7f0d005c;
+ public static final int chronometer = 0x7f0d0091;
+ public static final int collapseActionView = 0x7f0d003e;
+ public static final int contentPanel = 0x7f0d0054;
+ public static final int custom = 0x7f0d005a;
+ public static final int customPanel = 0x7f0d0059;
+ public static final int decor_content_parent = 0x7f0d0062;
+ public static final int default_activity_button = 0x7f0d004a;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d0066;
+ public static final int end = 0x7f0d0024;
+ public static final int end_padder = 0x7f0d0096;
+ public static final int expand_activities_button = 0x7f0d0048;
+ public static final int expanded_menu = 0x7f0d005b;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d004c;
+ public static final int ifRoom = 0x7f0d003f;
+ public static final int image = 0x7f0d0049;
+ public static final int info = 0x7f0d0095;
+ public static final int line1 = 0x7f0d008f;
+ public static final int line3 = 0x7f0d0093;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d004b;
+ public static final int media_actions = 0x7f0d008d;
+ public static final int middle = 0x7f0d003c;
+ public static final int multiply = 0x7f0d002a;
+ public static final int never = 0x7f0d0040;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parentPanel = 0x7f0d0050;
+ public static final int progress_circular = 0x7f0d0006;
+ public static final int progress_horizontal = 0x7f0d0007;
+ public static final int radio = 0x7f0d005e;
+ public static final int screen = 0x7f0d002b;
+ public static final int scrollIndicatorDown = 0x7f0d0058;
+ public static final int scrollIndicatorUp = 0x7f0d0055;
+ public static final int scrollView = 0x7f0d0056;
+ public static final int search_badge = 0x7f0d0068;
+ public static final int search_bar = 0x7f0d0067;
+ public static final int search_button = 0x7f0d0069;
+ public static final int search_close_btn = 0x7f0d006e;
+ public static final int search_edit_frame = 0x7f0d006a;
+ public static final int search_go_btn = 0x7f0d0070;
+ public static final int search_mag_icon = 0x7f0d006b;
+ public static final int search_plate = 0x7f0d006c;
+ public static final int search_src_text = 0x7f0d006d;
+ public static final int search_voice_btn = 0x7f0d0071;
+ public static final int select_dialog_listview = 0x7f0d0072;
+ public static final int shortcut = 0x7f0d005d;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int spacer = 0x7f0d004f;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d002c;
+ public static final int src_in = 0x7f0d002d;
+ public static final int src_over = 0x7f0d002e;
+ public static final int status_bar_latest_event_content = 0x7f0d008c;
+ public static final int submit_area = 0x7f0d006f;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0094;
+ public static final int text2 = 0x7f0d0092;
+ public static final int textSpacerNoButtons = 0x7f0d0057;
+ public static final int time = 0x7f0d0090;
+ public static final int title = 0x7f0d004d;
+ public static final int title_template = 0x7f0d0052;
+ public static final int topPanel = 0x7f0d0051;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int withText = 0x7f0d0041;
+ public static final int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static final int abc_config_activityShortDur = 0x7f0b0003;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int cancel_button_image_alpha = 0x7f0b0005;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static final int abc_alert_dialog_material = 0x7f04000a;
+ public static final int abc_dialog_title_material = 0x7f04000b;
+ public static final int abc_expanded_menu_layout = 0x7f04000c;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static final int abc_list_menu_item_icon = 0x7f04000e;
+ public static final int abc_list_menu_item_layout = 0x7f04000f;
+ public static final int abc_list_menu_item_radio = 0x7f040010;
+ public static final int abc_popup_menu_item_layout = 0x7f040011;
+ public static final int abc_screen_content_include = 0x7f040012;
+ public static final int abc_screen_simple = 0x7f040013;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static final int abc_screen_toolbar = 0x7f040015;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static final int abc_search_view = 0x7f040017;
+ public static final int abc_select_dialog_material = 0x7f040018;
+ public static final int notification_media_action = 0x7f04002e;
+ public static final int notification_media_cancel_action = 0x7f04002f;
+ public static final int notification_template_big_media = 0x7f040030;
+ public static final int notification_template_big_media_narrow = 0x7f040031;
+ public static final int notification_template_lines = 0x7f040032;
+ public static final int notification_template_media = 0x7f040033;
+ public static final int notification_template_part_chronometer = 0x7f040034;
+ public static final int notification_template_part_time = 0x7f040035;
+ public static final int select_dialog_item_material = 0x7f040039;
+ public static final int select_dialog_multichoice_material = 0x7f04003a;
+ public static final int select_dialog_singlechoice_material = 0x7f04003b;
+ public static final int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_capital_off = 0x7f070008;
+ public static final int abc_capital_on = 0x7f070009;
+ public static final int abc_search_hint = 0x7f07000a;
+ public static final int abc_searchview_description_clear = 0x7f07000b;
+ public static final int abc_searchview_description_query = 0x7f07000c;
+ public static final int abc_searchview_description_search = 0x7f07000d;
+ public static final int abc_searchview_description_submit = 0x7f07000e;
+ public static final int abc_searchview_description_voice = 0x7f07000f;
+ public static final int abc_shareactionprovider_share_with = 0x7f070010;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static final int abc_toolbar_collapse_description = 0x7f070012;
+ public static final int app_name = 0x7f07001e;
+ public static final int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f0a0088;
+ public static final int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static final int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static final int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static final int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static final int Base_Theme_AppCompat = 0x7f0a0058;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static final int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static final int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static final int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static final int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static final int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static final int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static final int Platform_AppCompat = 0x7f0a0018;
+ public static final int Platform_AppCompat_Light = 0x7f0a0019;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static final int Platform_V11_AppCompat = 0x7f0a001a;
+ public static final int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static final int Platform_V14_AppCompat = 0x7f0a0022;
+ public static final int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static final int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static final int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static final int Theme_AppCompat = 0x7f0a00f6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static final int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static final int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static final int Widget_AppCompat_Button = 0x7f0a011e;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static final int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static final int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static final int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static final int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static final int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static final int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static final int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static final int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] ButtonBarLayout = { 0x7f01009b };
+ public static final int ButtonBarLayout_allowStacking = 0;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static final int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 3;
+ public static final int Spinner_android_popupBackground = 1;
+ public static final int Spinner_android_prompt = 2;
+ public static final int Spinner_popupTheme = 4;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/debug/android/support/design/R.java b/android/build/generated/source/r/debug/android/support/design/R.java
new file mode 100644
index 000000000..6d3a98515
--- /dev/null
+++ b/android/build/generated/source/r/debug/android/support/design/R.java
@@ -0,0 +1,1592 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.design;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ public static int design_bottom_sheet_slide_in = 0x7f05000c;
+ public static int design_bottom_sheet_slide_out = 0x7f05000d;
+ public static int design_fab_in = 0x7f05000e;
+ public static int design_fab_out = 0x7f05000f;
+ public static int design_snackbar_in = 0x7f050010;
+ public static int design_snackbar_out = 0x7f050011;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int allowStacking = 0x7f01009b;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int behavior_hideable = 0x7f010098;
+ public static int behavior_overlapTop = 0x7f0100f3;
+ public static int behavior_peekHeight = 0x7f010097;
+ public static int borderWidth = 0x7f0100c3;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int bottomSheetDialogTheme = 0x7f0100b5;
+ public static int bottomSheetStyle = 0x7f0100b6;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int collapsedTitleGravity = 0x7f0100aa;
+ public static int collapsedTitleTextAppearance = 0x7f0100a6;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int contentScrim = 0x7f0100a7;
+ public static int controlBackground = 0x7f010081;
+ public static int counterEnabled = 0x7f01011d;
+ public static int counterMaxLength = 0x7f01011e;
+ public static int counterOverflowTextAppearance = 0x7f010120;
+ public static int counterTextAppearance = 0x7f01011f;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int errorEnabled = 0x7f01011b;
+ public static int errorTextAppearance = 0x7f01011c;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int expanded = 0x7f010024;
+ public static int expandedTitleGravity = 0x7f0100ab;
+ public static int expandedTitleMargin = 0x7f0100a0;
+ public static int expandedTitleMarginBottom = 0x7f0100a4;
+ public static int expandedTitleMarginEnd = 0x7f0100a3;
+ public static int expandedTitleMarginStart = 0x7f0100a1;
+ public static int expandedTitleMarginTop = 0x7f0100a2;
+ public static int expandedTitleTextAppearance = 0x7f0100a5;
+ public static int fabSize = 0x7f0100c1;
+ public static int foregroundInsidePadding = 0x7f0100c5;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int headerLayout = 0x7f0100eb;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int hintAnimationEnabled = 0x7f010121;
+ public static int hintEnabled = 0x7f01011a;
+ public static int hintTextAppearance = 0x7f010119;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int imageButtonStyle = 0x7f010067;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int insetForeground = 0x7f0100f2;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemBackground = 0x7f0100e9;
+ public static int itemIconTint = 0x7f0100e7;
+ public static int itemPadding = 0x7f010014;
+ public static int itemTextAppearance = 0x7f0100ea;
+ public static int itemTextColor = 0x7f0100e8;
+ public static int keylines = 0x7f0100af;
+ public static int layout = 0x7f0100f4;
+ public static int layoutManager = 0x7f0100ee;
+ public static int layout_anchor = 0x7f0100b2;
+ public static int layout_anchorGravity = 0x7f0100b4;
+ public static int layout_behavior = 0x7f0100b1;
+ public static int layout_collapseMode = 0x7f01009e;
+ public static int layout_collapseParallaxMultiplier = 0x7f01009f;
+ public static int layout_keyline = 0x7f0100b3;
+ public static int layout_scrollFlags = 0x7f010025;
+ public static int layout_scrollInterpolator = 0x7f010026;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxActionInlineWidth = 0x7f010101;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int menu = 0x7f0100e6;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int pressedTranslationZ = 0x7f0100c2;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int ratingBarStyleIndicator = 0x7f010092;
+ public static int ratingBarStyleSmall = 0x7f010093;
+ public static int reverseLayout = 0x7f0100f0;
+ public static int rippleColor = 0x7f0100c0;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int seekBarStyle = 0x7f010094;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spanCount = 0x7f0100ef;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int srcCompat = 0x7f010027;
+ public static int stackFromEnd = 0x7f0100f1;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int statusBarBackground = 0x7f0100b0;
+ public static int statusBarScrim = 0x7f0100a8;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int tabBackground = 0x7f01010c;
+ public static int tabContentStart = 0x7f01010b;
+ public static int tabGravity = 0x7f01010e;
+ public static int tabIndicatorColor = 0x7f010109;
+ public static int tabIndicatorHeight = 0x7f01010a;
+ public static int tabMaxWidth = 0x7f010110;
+ public static int tabMinWidth = 0x7f01010f;
+ public static int tabMode = 0x7f01010d;
+ public static int tabPadding = 0x7f010118;
+ public static int tabPaddingBottom = 0x7f010117;
+ public static int tabPaddingEnd = 0x7f010116;
+ public static int tabPaddingStart = 0x7f010114;
+ public static int tabPaddingTop = 0x7f010115;
+ public static int tabSelectedTextColor = 0x7f010113;
+ public static int tabTextAppearance = 0x7f010111;
+ public static int tabTextColor = 0x7f010112;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorError = 0x7f0100b7;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleEnabled = 0x7f0100ac;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarId = 0x7f0100a9;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int useCompatPadding = 0x7f0100c4;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_allow_stacked_button_bar = 0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int design_fab_shadow_end_color = 0x7f0c0017;
+ public static int design_fab_shadow_mid_color = 0x7f0c0018;
+ public static int design_fab_shadow_start_color = 0x7f0c0019;
+ public static int design_fab_stroke_end_inner_color = 0x7f0c001a;
+ public static int design_fab_stroke_end_outer_color = 0x7f0c001b;
+ public static int design_fab_stroke_top_inner_color = 0x7f0c001c;
+ public static int design_fab_stroke_top_outer_color = 0x7f0c001d;
+ public static int design_snackbar_background_color = 0x7f0c001e;
+ public static int design_textinput_error_color_dark = 0x7f0c001f;
+ public static int design_textinput_error_color_light = 0x7f0c0020;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_fixed_height_major = 0x7f090006;
+ public static int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static int abc_dialog_fixed_width_major = 0x7f090008;
+ public static int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int design_appbar_elevation = 0x7f09004d;
+ public static int design_bottom_sheet_modal_elevation = 0x7f09004e;
+ public static int design_bottom_sheet_modal_peek_height = 0x7f09004f;
+ public static int design_fab_border_width = 0x7f090050;
+ public static int design_fab_elevation = 0x7f090051;
+ public static int design_fab_image_size = 0x7f090052;
+ public static int design_fab_size_mini = 0x7f090053;
+ public static int design_fab_size_normal = 0x7f090054;
+ public static int design_fab_translation_z_pressed = 0x7f090055;
+ public static int design_navigation_elevation = 0x7f090056;
+ public static int design_navigation_icon_padding = 0x7f090057;
+ public static int design_navigation_icon_size = 0x7f090058;
+ public static int design_navigation_max_width = 0x7f090010;
+ public static int design_navigation_padding_bottom = 0x7f090059;
+ public static int design_navigation_separator_vertical_padding = 0x7f09005a;
+ public static int design_snackbar_action_inline_max_width = 0x7f090011;
+ public static int design_snackbar_background_corner_radius = 0x7f090012;
+ public static int design_snackbar_elevation = 0x7f09005b;
+ public static int design_snackbar_extra_spacing_horizontal = 0x7f090013;
+ public static int design_snackbar_max_width = 0x7f090014;
+ public static int design_snackbar_min_width = 0x7f090015;
+ public static int design_snackbar_padding_horizontal = 0x7f09005c;
+ public static int design_snackbar_padding_vertical = 0x7f09005d;
+ public static int design_snackbar_padding_vertical_2lines = 0x7f090016;
+ public static int design_snackbar_text_size = 0x7f09005e;
+ public static int design_tab_max_width = 0x7f09005f;
+ public static int design_tab_scrollable_min_width = 0x7f090017;
+ public static int design_tab_text_size = 0x7f090060;
+ public static int design_tab_text_size_2line = 0x7f090061;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_star_black_16dp = 0x7f020021;
+ public static int abc_ic_star_black_36dp = 0x7f020022;
+ public static int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_ratingbar_indicator_material = 0x7f020036;
+ public static int abc_ratingbar_small_material = 0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static int abc_seekbar_thumb_material = 0x7f02003d;
+ public static int abc_seekbar_track_material = 0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int design_fab_background = 0x7f02004d;
+ public static int design_snackbar_background = 0x7f02004e;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int bottom = 0x7f0d0020;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int center = 0x7f0d0021;
+ public static int center_horizontal = 0x7f0d0022;
+ public static int center_vertical = 0x7f0d0023;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int clip_horizontal = 0x7f0d002f;
+ public static int clip_vertical = 0x7f0d0030;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int design_bottom_sheet = 0x7f0d007e;
+ public static int design_menu_item_action_area = 0x7f0d0085;
+ public static int design_menu_item_action_area_stub = 0x7f0d0084;
+ public static int design_menu_item_text = 0x7f0d0083;
+ public static int design_navigation_view = 0x7f0d0082;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int enterAlways = 0x7f0d0015;
+ public static int enterAlwaysCollapsed = 0x7f0d0016;
+ public static int exitUntilCollapsed = 0x7f0d0017;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int fill = 0x7f0d0031;
+ public static int fill_horizontal = 0x7f0d0032;
+ public static int fill_vertical = 0x7f0d0025;
+ public static int fixed = 0x7f0d0042;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static int left = 0x7f0d0026;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int mini = 0x7f0d0033;
+ public static int multiply = 0x7f0d002a;
+ public static int navigation_header_container = 0x7f0d0081;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parallax = 0x7f0d001e;
+ public static int parentPanel = 0x7f0d0050;
+ public static int pin = 0x7f0d001f;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int right = 0x7f0d0027;
+ public static int screen = 0x7f0d002b;
+ public static int scroll = 0x7f0d0018;
+ public static int scrollIndicatorDown = 0x7f0d0058;
+ public static int scrollIndicatorUp = 0x7f0d0055;
+ public static int scrollView = 0x7f0d0056;
+ public static int scrollable = 0x7f0d0043;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int snackbar_action = 0x7f0d0080;
+ public static int snackbar_text = 0x7f0d007f;
+ public static int snap = 0x7f0d0019;
+ public static int spacer = 0x7f0d004f;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int start = 0x7f0d0028;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int top = 0x7f0d0029;
+ public static int topPanel = 0x7f0d0051;
+ public static int touch_outside = 0x7f0d007d;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int view_offset_helper = 0x7f0d000a;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int bottom_sheet_slide_duration = 0x7f0b0004;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int design_snackbar_text_max_lines = 0x7f0b0001;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int design_bottom_sheet_dialog = 0x7f04001f;
+ public static int design_layout_snackbar = 0x7f040020;
+ public static int design_layout_snackbar_include = 0x7f040021;
+ public static int design_layout_tab_icon = 0x7f040022;
+ public static int design_layout_tab_text = 0x7f040023;
+ public static int design_menu_item_action_area = 0x7f040024;
+ public static int design_navigation_item = 0x7f040025;
+ public static int design_navigation_item_header = 0x7f040026;
+ public static int design_navigation_item_separator = 0x7f040027;
+ public static int design_navigation_item_subheader = 0x7f040028;
+ public static int design_navigation_menu = 0x7f040029;
+ public static int design_navigation_menu_item = 0x7f04002a;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_capital_off = 0x7f070008;
+ public static int abc_capital_on = 0x7f070009;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int appbar_scrolling_view_behavior = 0x7f07005a;
+ public static int bottom_sheet_behavior = 0x7f07005b;
+ public static int character_counter_pattern = 0x7f070068;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Animation_Design_BottomSheetDialog = 0x7f0a008d;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Base_Widget_Design_TabLayout = 0x7f0a00bd;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0a00eb;
+ public static int TextAppearance_Design_Counter = 0x7f0a00ec;
+ public static int TextAppearance_Design_Counter_Overflow = 0x7f0a00ed;
+ public static int TextAppearance_Design_Error = 0x7f0a00ee;
+ public static int TextAppearance_Design_Hint = 0x7f0a00ef;
+ public static int TextAppearance_Design_Snackbar_Message = 0x7f0a00f0;
+ public static int TextAppearance_Design_Tab = 0x7f0a00f1;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Theme_Design = 0x7f0a0106;
+ public static int Theme_Design_BottomSheetDialog = 0x7f0a0107;
+ public static int Theme_Design_Light = 0x7f0a0108;
+ public static int Theme_Design_Light_BottomSheetDialog = 0x7f0a0109;
+ public static int Theme_Design_Light_NoActionBar = 0x7f0a010a;
+ public static int Theme_Design_NoActionBar = 0x7f0a010b;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ public static int Widget_Design_AppBarLayout = 0x7f0a0159;
+ public static int Widget_Design_BottomSheet_Modal = 0x7f0a015a;
+ public static int Widget_Design_CollapsingToolbar = 0x7f0a015b;
+ public static int Widget_Design_CoordinatorLayout = 0x7f0a015c;
+ public static int Widget_Design_FloatingActionButton = 0x7f0a015d;
+ public static int Widget_Design_NavigationView = 0x7f0a015e;
+ public static int Widget_Design_ScrimInsetsFrameLayout = 0x7f0a015f;
+ public static int Widget_Design_Snackbar = 0x7f0a0160;
+ public static int Widget_Design_TabLayout = 0x7f0a0001;
+ public static int Widget_Design_TextInputLayout = 0x7f0a0161;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 };
+ public static int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 };
+ public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ public static int AppBarLayout_android_background = 0;
+ public static int AppBarLayout_elevation = 1;
+ public static int AppBarLayout_expanded = 2;
+ public static int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static int AppCompatImageView_android_src = 0;
+ public static int AppCompatImageView_srcCompat = 1;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static int AppCompatTheme_actionBarDivider = 23;
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ public static int AppCompatTheme_actionBarSize = 22;
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ public static int AppCompatTheme_actionBarStyle = 18;
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static int AppCompatTheme_actionBarTheme = 20;
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ public static int AppCompatTheme_actionModeBackground = 29;
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ public static int AppCompatTheme_actionModeStyle = 27;
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ public static int AppCompatTheme_buttonStyle = 100;
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ public static int AppCompatTheme_checkboxStyle = 102;
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ public static int AppCompatTheme_colorAccent = 84;
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ public static int AppCompatTheme_colorControlActivated = 86;
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ public static int AppCompatTheme_colorControlNormal = 85;
+ public static int AppCompatTheme_colorPrimary = 82;
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static int AppCompatTheme_controlBackground = 90;
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ public static int AppCompatTheme_dialogTheme = 42;
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ public static int AppCompatTheme_dividerVertical = 55;
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static int AppCompatTheme_editTextBackground = 63;
+ public static int AppCompatTheme_editTextColor = 62;
+ public static int AppCompatTheme_editTextStyle = 104;
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static int AppCompatTheme_panelBackground = 78;
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static int AppCompatTheme_searchViewStyle = 68;
+ public static int AppCompatTheme_seekBarStyle = 109;
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static int AppCompatTheme_spinnerStyle = 110;
+ public static int AppCompatTheme_switchStyle = 111;
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static int AppCompatTheme_toolbarStyle = 58;
+ public static int AppCompatTheme_windowActionBar = 2;
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ public static int AppCompatTheme_windowNoTitle = 3;
+ public static int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 };
+ public static int BottomSheetBehavior_Params_behavior_hideable = 1;
+ public static int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ public static int[] ButtonBarLayout = { 0x7f01009b };
+ public static int ButtonBarLayout_allowStacking = 0;
+ public static int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009e, 0x7f01009f };
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ public static int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac };
+ public static int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ public static int CollapsingToolbarLayout_contentScrim = 8;
+ public static int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ public static int CollapsingToolbarLayout_statusBarScrim = 9;
+ public static int CollapsingToolbarLayout_title = 0;
+ public static int CollapsingToolbarLayout_titleEnabled = 13;
+ public static int CollapsingToolbarLayout_toolbarId = 10;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] CoordinatorLayout = { 0x7f0100af, 0x7f0100b0 };
+ public static int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 };
+ public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ public static int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ public static int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ public static int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ public static int CoordinatorLayout_keylines = 0;
+ public static int CoordinatorLayout_statusBarBackground = 1;
+ public static int[] DesignTheme = { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 };
+ public static int DesignTheme_bottomSheetDialogTheme = 0;
+ public static int DesignTheme_bottomSheetStyle = 1;
+ public static int DesignTheme_textColorError = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] FloatingActionButton = { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 };
+ public static int FloatingActionButton_backgroundTint = 6;
+ public static int FloatingActionButton_backgroundTintMode = 7;
+ public static int FloatingActionButton_borderWidth = 4;
+ public static int FloatingActionButton_elevation = 0;
+ public static int FloatingActionButton_fabSize = 2;
+ public static int FloatingActionButton_pressedTranslationZ = 3;
+ public static int FloatingActionButton_rippleColor = 1;
+ public static int FloatingActionButton_useCompatPadding = 5;
+ public static int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c5 };
+ public static int ForegroundLinearLayout_android_foreground = 0;
+ public static int ForegroundLinearLayout_android_foregroundGravity = 1;
+ public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb };
+ public static int NavigationView_android_background = 0;
+ public static int NavigationView_android_fitsSystemWindows = 1;
+ public static int NavigationView_android_maxWidth = 2;
+ public static int NavigationView_elevation = 3;
+ public static int NavigationView_headerLayout = 9;
+ public static int NavigationView_itemBackground = 7;
+ public static int NavigationView_itemIconTint = 5;
+ public static int NavigationView_itemTextAppearance = 8;
+ public static int NavigationView_itemTextColor = 6;
+ public static int NavigationView_menu = 4;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static int RecyclerView_android_orientation = 0;
+ public static int RecyclerView_layoutManager = 1;
+ public static int RecyclerView_reverseLayout = 3;
+ public static int RecyclerView_spanCount = 2;
+ public static int RecyclerView_stackFromEnd = 4;
+ public static int[] ScrimInsetsFrameLayout = { 0x7f0100f2 };
+ public static int ScrimInsetsFrameLayout_insetForeground = 0;
+ public static int[] ScrollingViewBehavior_Params = { 0x7f0100f3 };
+ public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f010101 };
+ public static int SnackbarLayout_android_maxWidth = 0;
+ public static int SnackbarLayout_elevation = 1;
+ public static int SnackbarLayout_maxActionInlineWidth = 2;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_entries = 0;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f };
+ public static int TabItem_android_icon = 0;
+ public static int TabItem_android_layout = 1;
+ public static int TabItem_android_text = 2;
+ public static int[] TabLayout = { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 };
+ public static int TabLayout_tabBackground = 3;
+ public static int TabLayout_tabContentStart = 2;
+ public static int TabLayout_tabGravity = 5;
+ public static int TabLayout_tabIndicatorColor = 0;
+ public static int TabLayout_tabIndicatorHeight = 1;
+ public static int TabLayout_tabMaxWidth = 7;
+ public static int TabLayout_tabMinWidth = 6;
+ public static int TabLayout_tabMode = 4;
+ public static int TabLayout_tabPadding = 15;
+ public static int TabLayout_tabPaddingBottom = 14;
+ public static int TabLayout_tabPaddingEnd = 13;
+ public static int TabLayout_tabPaddingStart = 11;
+ public static int TabLayout_tabPaddingTop = 12;
+ public static int TabLayout_tabSelectedTextColor = 10;
+ public static int TabLayout_tabTextAppearance = 8;
+ public static int TabLayout_tabTextColor = 9;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_shadowColor = 4;
+ public static int TextAppearance_android_shadowDx = 5;
+ public static int TextAppearance_android_shadowDy = 6;
+ public static int TextAppearance_android_shadowRadius = 7;
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 };
+ public static int TextInputLayout_android_hint = 1;
+ public static int TextInputLayout_android_textColorHint = 0;
+ public static int TextInputLayout_counterEnabled = 6;
+ public static int TextInputLayout_counterMaxLength = 7;
+ public static int TextInputLayout_counterOverflowTextAppearance = 9;
+ public static int TextInputLayout_counterTextAppearance = 8;
+ public static int TextInputLayout_errorEnabled = 4;
+ public static int TextInputLayout_errorTextAppearance = 5;
+ public static int TextInputLayout_hintAnimationEnabled = 10;
+ public static int TextInputLayout_hintEnabled = 3;
+ public static int TextInputLayout_hintTextAppearance = 2;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/android/build/generated/source/r/debug/android/support/v7/appcompat/R.java
new file mode 100644
index 000000000..aa47e587d
--- /dev/null
+++ b/android/build/generated/source/r/debug/android/support/v7/appcompat/R.java
@@ -0,0 +1,1281 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int allowStacking = 0x7f01009b;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int controlBackground = 0x7f010081;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int imageButtonStyle = 0x7f010067;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemPadding = 0x7f010014;
+ public static int layout = 0x7f0100f4;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int ratingBarStyleIndicator = 0x7f010092;
+ public static int ratingBarStyleSmall = 0x7f010093;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int seekBarStyle = 0x7f010094;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int srcCompat = 0x7f010027;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_allow_stacked_button_bar = 0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_fixed_height_major = 0x7f090006;
+ public static int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static int abc_dialog_fixed_width_major = 0x7f090008;
+ public static int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_star_black_16dp = 0x7f020021;
+ public static int abc_ic_star_black_36dp = 0x7f020022;
+ public static int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_ratingbar_indicator_material = 0x7f020036;
+ public static int abc_ratingbar_small_material = 0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static int abc_seekbar_thumb_material = 0x7f02003d;
+ public static int abc_seekbar_track_material = 0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int multiply = 0x7f0d002a;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parentPanel = 0x7f0d0050;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int screen = 0x7f0d002b;
+ public static int scrollIndicatorDown = 0x7f0d0058;
+ public static int scrollIndicatorUp = 0x7f0d0055;
+ public static int scrollView = 0x7f0d0056;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int spacer = 0x7f0d004f;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int topPanel = 0x7f0d0051;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_capital_off = 0x7f070008;
+ public static int abc_capital_on = 0x7f070009;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static int AppCompatImageView_android_src = 0;
+ public static int AppCompatImageView_srcCompat = 1;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static int AppCompatTheme_actionBarDivider = 23;
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ public static int AppCompatTheme_actionBarSize = 22;
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ public static int AppCompatTheme_actionBarStyle = 18;
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static int AppCompatTheme_actionBarTheme = 20;
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ public static int AppCompatTheme_actionModeBackground = 29;
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ public static int AppCompatTheme_actionModeStyle = 27;
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ public static int AppCompatTheme_buttonStyle = 100;
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ public static int AppCompatTheme_checkboxStyle = 102;
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ public static int AppCompatTheme_colorAccent = 84;
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ public static int AppCompatTheme_colorControlActivated = 86;
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ public static int AppCompatTheme_colorControlNormal = 85;
+ public static int AppCompatTheme_colorPrimary = 82;
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static int AppCompatTheme_controlBackground = 90;
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ public static int AppCompatTheme_dialogTheme = 42;
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ public static int AppCompatTheme_dividerVertical = 55;
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static int AppCompatTheme_editTextBackground = 63;
+ public static int AppCompatTheme_editTextColor = 62;
+ public static int AppCompatTheme_editTextStyle = 104;
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static int AppCompatTheme_panelBackground = 78;
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static int AppCompatTheme_searchViewStyle = 68;
+ public static int AppCompatTheme_seekBarStyle = 109;
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static int AppCompatTheme_spinnerStyle = 110;
+ public static int AppCompatTheme_switchStyle = 111;
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static int AppCompatTheme_toolbarStyle = 58;
+ public static int AppCompatTheme_windowActionBar = 2;
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ public static int AppCompatTheme_windowNoTitle = 3;
+ public static int[] ButtonBarLayout = { 0x7f01009b };
+ public static int ButtonBarLayout_allowStacking = 0;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_entries = 0;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_shadowColor = 4;
+ public static int TextAppearance_android_shadowDx = 5;
+ public static int TextAppearance_android_shadowDy = 6;
+ public static int TextAppearance_android_shadowRadius = 7;
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/debug/android/support/v7/recyclerview/R.java b/android/build/generated/source/r/debug/android/support/v7/recyclerview/R.java
new file mode 100644
index 000000000..b6a1c7c53
--- /dev/null
+++ b/android/build/generated/source/r/debug/android/support/v7/recyclerview/R.java
@@ -0,0 +1,32 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.recyclerview;
+
+public final class R {
+ public static final class attr {
+ public static int layoutManager = 0x7f0100ee;
+ public static int reverseLayout = 0x7f0100f0;
+ public static int spanCount = 0x7f0100ef;
+ public static int stackFromEnd = 0x7f0100f1;
+ }
+ public static final class dimen {
+ public static int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ }
+ public static final class id {
+ public static int item_touch_helper_previous_elevation = 0x7f0d0005;
+ }
+ public static final class styleable {
+ public static int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static int RecyclerView_android_orientation = 0;
+ public static int RecyclerView_layoutManager = 1;
+ public static int RecyclerView_reverseLayout = 3;
+ public static int RecyclerView_spanCount = 2;
+ public static int RecyclerView_stackFromEnd = 4;
+ }
+}
diff --git a/android/build/generated/source/r/debug/com/documentscanner/R.java b/android/build/generated/source/r/debug/com/documentscanner/R.java
new file mode 100644
index 000000000..5935f506c
--- /dev/null
+++ b/android/build/generated/source/r/debug/com/documentscanner/R.java
@@ -0,0 +1,9645 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.documentscanner;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in=0x7f050000;
+ public static int abc_fade_out=0x7f050001;
+ public static int abc_grow_fade_in_from_bottom=0x7f050002;
+ public static int abc_popup_enter=0x7f050003;
+ public static int abc_popup_exit=0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom=0x7f050005;
+ public static int abc_slide_in_bottom=0x7f050006;
+ public static int abc_slide_in_top=0x7f050007;
+ public static int abc_slide_out_bottom=0x7f050008;
+ public static int abc_slide_out_top=0x7f050009;
+ public static int catalyst_push_up_in=0x7f05000a;
+ public static int catalyst_push_up_out=0x7f05000b;
+ public static int design_bottom_sheet_slide_in=0x7f05000c;
+ public static int design_bottom_sheet_slide_out=0x7f05000d;
+ public static int design_fab_in=0x7f05000e;
+ public static int design_fab_out=0x7f05000f;
+ public static int design_snackbar_in=0x7f050010;
+ public static int design_snackbar_out=0x7f050011;
+ }
+ public static final class attr {
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarDivider=0x7f01003e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarItemBackground=0x7f01003f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarPopupTheme=0x7f010038;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ */
+ public static int actionBarSize=0x7f01003d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarSplitStyle=0x7f01003a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarStyle=0x7f010039;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabBarStyle=0x7f010034;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabStyle=0x7f010033;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabTextStyle=0x7f010035;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTheme=0x7f01003b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarWidgetTheme=0x7f01003c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionButtonStyle=0x7f010058;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionDropDownStyle=0x7f010054;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionLayout=0x7f0100e2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionMenuTextAppearance=0x7f010040;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int actionMenuTextColor=0x7f010041;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeBackground=0x7f010044;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCloseButtonStyle=0x7f010043;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCloseDrawable=0x7f010046;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCopyDrawable=0x7f010048;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCutDrawable=0x7f010047;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeFindDrawable=0x7f01004c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModePasteDrawable=0x7f010049;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModePopupWindowStyle=0x7f01004e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeSelectAllDrawable=0x7f01004a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeShareDrawable=0x7f01004b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeSplitBackground=0x7f010045;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeStyle=0x7f010042;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeWebSearchDrawable=0x7f01004d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionOverflowButtonStyle=0x7f010036;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionOverflowMenuStyle=0x7f010037;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int actionProviderClass=0x7f0100e4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int actionViewClass=0x7f0100e3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int activityChooserViewStyle=0x7f010060;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int actualImageScaleType=0x7f0100d1;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogButtonGroupStyle=0x7f010083;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int alertDialogCenterButtons=0x7f010084;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogStyle=0x7f010082;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogTheme=0x7f010085;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int allowStacking=0x7f01009b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int arrowHeadLength=0x7f0100bc;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int arrowShaftLength=0x7f0100bd;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int autoCompleteTextViewStyle=0x7f01008a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int background=0x7f01000c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int backgroundImage=0x7f0100d2;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int backgroundSplit=0x7f01000e;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int backgroundStacked=0x7f01000d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int backgroundTint=0x7f010134;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static int backgroundTintMode=0x7f010135;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int barLength=0x7f0100be;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_hideable=0x7f010098;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_overlapTop=0x7f0100f3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_peekHeight=0x7f010097;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int borderWidth=0x7f0100c3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int borderlessButtonStyle=0x7f01005d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int bottomSheetDialogTheme=0x7f0100b5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int bottomSheetStyle=0x7f0100b6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarButtonStyle=0x7f01005a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarNegativeButtonStyle=0x7f010088;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarNeutralButtonStyle=0x7f010089;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarPositiveButtonStyle=0x7f010087;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarStyle=0x7f010059;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonPanelSideLayout=0x7f01001f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonStyle=0x7f01008b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonStyleSmall=0x7f01008c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int buttonTint=0x7f0100ad;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static int buttonTintMode=0x7f0100ae;
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static int camera_id=0x7f01009d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int checkboxStyle=0x7f01008d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int checkedTextViewStyle=0x7f01008e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int closeIcon=0x7f0100f8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int closeItemLayout=0x7f01001c;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int collapseContentDescription=0x7f01012b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int collapseIcon=0x7f01012a;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int collapsedTitleGravity=0x7f0100aa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int collapsedTitleTextAppearance=0x7f0100a6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int color=0x7f0100b8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorAccent=0x7f01007b;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorButtonNormal=0x7f01007f;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlActivated=0x7f01007d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlHighlight=0x7f01007e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlNormal=0x7f01007c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorPrimary=0x7f010079;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorPrimaryDark=0x7f01007a;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorSwitchThumbNormal=0x7f010080;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int commitIcon=0x7f0100fd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetEnd=0x7f010017;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetLeft=0x7f010018;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetRight=0x7f010019;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetStart=0x7f010016;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentScrim=0x7f0100a7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int controlBackground=0x7f010081;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int counterEnabled=0x7f01011d;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int counterMaxLength=0x7f01011e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int counterOverflowTextAppearance=0x7f010120;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int counterTextAppearance=0x7f01011f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int customNavigationLayout=0x7f01000f;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int defaultQueryHint=0x7f0100f7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dialogPreferredPadding=0x7f010052;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dialogTheme=0x7f010051;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ */
+ public static int displayOptions=0x7f010005;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int divider=0x7f01000b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dividerHorizontal=0x7f01005f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dividerPadding=0x7f0100e0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dividerVertical=0x7f01005e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int drawableSize=0x7f0100ba;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int drawerArrowStyle=0x7f010000;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dropDownListViewStyle=0x7f010071;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dropdownListPreferredItemHeight=0x7f010055;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int editTextBackground=0x7f010066;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int editTextColor=0x7f010065;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int editTextStyle=0x7f01008f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int elevation=0x7f01001a;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int errorEnabled=0x7f01011b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int errorTextAppearance=0x7f01011c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int expandActivityOverflowButtonDrawable=0x7f01001e;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expanded=0x7f010024;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int expandedTitleGravity=0x7f0100ab;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMargin=0x7f0100a0;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginBottom=0x7f0100a4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginEnd=0x7f0100a3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginStart=0x7f0100a1;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginTop=0x7f0100a2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int expandedTitleTextAppearance=0x7f0100a5;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ */
+ public static int fabSize=0x7f0100c1;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int fadeDuration=0x7f0100c6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int failureImage=0x7f0100cc;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int failureImageScaleType=0x7f0100cd;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int foregroundInsidePadding=0x7f0100c5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int gapBetweenBars=0x7f0100bb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int goIcon=0x7f0100f9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int headerLayout=0x7f0100eb;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int height=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hideOnContentScroll=0x7f010015;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hintAnimationEnabled=0x7f010121;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hintEnabled=0x7f01011a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int hintTextAppearance=0x7f010119;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int homeAsUpIndicator=0x7f010057;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int homeLayout=0x7f010010;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int icon=0x7f010009;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int iconifiedByDefault=0x7f0100f5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int imageButtonStyle=0x7f010067;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int indeterminateProgressStyle=0x7f010012;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int initialActivityCount=0x7f01001d;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int insetForeground=0x7f0100f2;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int isLightTheme=0x7f010002;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int itemBackground=0x7f0100e9;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemIconTint=0x7f0100e7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemPadding=0x7f010014;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int itemTextAppearance=0x7f0100ea;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemTextColor=0x7f0100e8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int keylines=0x7f0100af;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout=0x7f0100f4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layoutManager=0x7f0100ee;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout_anchor=0x7f0100b2;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int layout_anchorGravity=0x7f0100b4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_behavior=0x7f0100b1;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ */
+ public static int layout_collapseMode=0x7f01009e;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_collapseParallaxMultiplier=0x7f01009f;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_keyline=0x7f0100b3;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ */
+ public static int layout_scrollFlags=0x7f010025;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout_scrollInterpolator=0x7f010026;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listChoiceBackgroundIndicator=0x7f010078;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listDividerAlertDialog=0x7f010053;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listItemLayout=0x7f010023;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listLayout=0x7f010020;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listPopupWindowStyle=0x7f010072;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeight=0x7f01006c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeightLarge=0x7f01006e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeightSmall=0x7f01006d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemPaddingLeft=0x7f01006f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemPaddingRight=0x7f010070;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int logo=0x7f01000a;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int logoDescription=0x7f01012e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int maxActionInlineWidth=0x7f010101;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int maxButtonHeight=0x7f010129;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int measureWithLargestChild=0x7f0100de;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int menu=0x7f0100e6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int metaButtonBarButtonStyle=0x7f01009a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int metaButtonBarStyle=0x7f010099;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int multiChoiceItemLayout=0x7f010021;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int navigationContentDescription=0x7f01012d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int navigationIcon=0x7f01012c;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ */
+ public static int navigationMode=0x7f010004;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int overlapAnchor=0x7f0100ec;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int overlayImage=0x7f0100d3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int paddingEnd=0x7f010132;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int paddingStart=0x7f010131;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int panelBackground=0x7f010075;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int panelMenuListTheme=0x7f010077;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int panelMenuListWidth=0x7f010076;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int placeholderImage=0x7f0100c8;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int placeholderImageScaleType=0x7f0100c9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupMenuStyle=0x7f010063;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupTheme=0x7f01001b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupWindowStyle=0x7f010064;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int preserveIconSpacing=0x7f0100e5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int pressedStateOverlayImage=0x7f0100d4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int pressedTranslationZ=0x7f0100c2;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int progressBarAutoRotateInterval=0x7f0100d0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int progressBarImage=0x7f0100ce;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int progressBarImageScaleType=0x7f0100cf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int progressBarPadding=0x7f010013;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int progressBarStyle=0x7f010011;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int queryBackground=0x7f0100ff;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int queryHint=0x7f0100f6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int radioButtonStyle=0x7f010090;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyle=0x7f010091;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyleIndicator=0x7f010092;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyleSmall=0x7f010093;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int retryImage=0x7f0100ca;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int retryImageScaleType=0x7f0100cb;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int reverseLayout=0x7f0100f0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int rippleColor=0x7f0100c0;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundAsCircle=0x7f0100d5;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundBottomLeft=0x7f0100da;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundBottomRight=0x7f0100d9;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundTopLeft=0x7f0100d7;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundTopRight=0x7f0100d8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundWithOverlayColor=0x7f0100db;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundedCornerRadius=0x7f0100d6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundingBorderColor=0x7f0100dd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundingBorderWidth=0x7f0100dc;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchHintIcon=0x7f0100fb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchIcon=0x7f0100fa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchViewStyle=0x7f01006b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int seekBarStyle=0x7f010094;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int selectableItemBackground=0x7f01005b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int selectableItemBackgroundBorderless=0x7f01005c;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ */
+ public static int showAsAction=0x7f0100e1;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ */
+ public static int showDividers=0x7f0100df;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int showText=0x7f010108;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int show_fps=0x7f01009c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int singleChoiceItemLayout=0x7f010022;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int spanCount=0x7f0100ef;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int spinBars=0x7f0100b9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int spinnerDropDownItemStyle=0x7f010056;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int spinnerStyle=0x7f010095;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int splitTrack=0x7f010107;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int srcCompat=0x7f010027;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int stackFromEnd=0x7f0100f1;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int state_above_anchor=0x7f0100ed;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int statusBarBackground=0x7f0100b0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int statusBarScrim=0x7f0100a8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int submitBackground=0x7f010100;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int subtitle=0x7f010006;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int subtitleTextAppearance=0x7f010123;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int subtitleTextColor=0x7f010130;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int subtitleTextStyle=0x7f010008;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int suggestionRowLayout=0x7f0100fe;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int switchMinWidth=0x7f010105;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int switchPadding=0x7f010106;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int switchStyle=0x7f010096;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int switchTextAppearance=0x7f010104;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int tabBackground=0x7f01010c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabContentStart=0x7f01010b;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ */
+ public static int tabGravity=0x7f01010e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabIndicatorColor=0x7f010109;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabIndicatorHeight=0x7f01010a;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabMaxWidth=0x7f010110;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabMinWidth=0x7f01010f;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ */
+ public static int tabMode=0x7f01010d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPadding=0x7f010118;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingBottom=0x7f010117;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingEnd=0x7f010116;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingStart=0x7f010114;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingTop=0x7f010115;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabSelectedTextColor=0x7f010113;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int tabTextAppearance=0x7f010111;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabTextColor=0x7f010112;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ */
+ public static int textAllCaps=0x7f010028;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceLargePopupMenu=0x7f01004f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceListItem=0x7f010073;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceListItemSmall=0x7f010074;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSearchResultSubtitle=0x7f010069;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSearchResultTitle=0x7f010068;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSmallPopupMenu=0x7f010050;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int textColorAlertDialogListItem=0x7f010086;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int textColorError=0x7f0100b7;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int textColorSearchUrl=0x7f01006a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int theme=0x7f010133;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int thickness=0x7f0100bf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int thumbTextPadding=0x7f010103;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int title=0x7f010003;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleEnabled=0x7f0100ac;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginBottom=0x7f010128;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginEnd=0x7f010126;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginStart=0x7f010125;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginTop=0x7f010127;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMargins=0x7f010124;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int titleTextAppearance=0x7f010122;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleTextColor=0x7f01012f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int titleTextStyle=0x7f010007;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarId=0x7f0100a9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarNavigationButtonStyle=0x7f010062;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarStyle=0x7f010061;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int track=0x7f010102;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int useCompatPadding=0x7f0100c4;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int viewAspectRatio=0x7f0100c7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int voiceIcon=0x7f0100fc;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionBar=0x7f010029;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionBarOverlay=0x7f01002b;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionModeOverlay=0x7f01002c;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedHeightMajor=0x7f010030;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedHeightMinor=0x7f01002e;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedWidthMajor=0x7f01002d;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedWidthMinor=0x7f01002f;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowMinWidthMajor=0x7f010031;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowMinWidthMinor=0x7f010032;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowNoTitle=0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs=0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb=0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive=0x7f080004;
+ public static int abc_allow_stacked_button_bar=0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps=0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon=0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside=0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark=0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light=0x7f0c004a;
+ public static int abc_color_highlight_material=0x7f0c004b;
+ public static int abc_input_method_navigation_guard=0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark=0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light=0x7f0c004d;
+ public static int abc_primary_text_material_dark=0x7f0c004e;
+ public static int abc_primary_text_material_light=0x7f0c004f;
+ public static int abc_search_url_text=0x7f0c0050;
+ public static int abc_search_url_text_normal=0x7f0c0001;
+ public static int abc_search_url_text_pressed=0x7f0c0002;
+ public static int abc_search_url_text_selected=0x7f0c0003;
+ public static int abc_secondary_text_material_dark=0x7f0c0051;
+ public static int abc_secondary_text_material_light=0x7f0c0052;
+ public static int accent_material_dark=0x7f0c0004;
+ public static int accent_material_light=0x7f0c0005;
+ public static int background_floating_material_dark=0x7f0c0006;
+ public static int background_floating_material_light=0x7f0c0007;
+ public static int background_material_dark=0x7f0c0008;
+ public static int background_material_light=0x7f0c0009;
+ public static int black_overlay=0x7f0c000a;
+ public static int bright_foreground_disabled_material_dark=0x7f0c000b;
+ public static int bright_foreground_disabled_material_light=0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark=0x7f0c000d;
+ public static int bright_foreground_inverse_material_light=0x7f0c000e;
+ public static int bright_foreground_material_dark=0x7f0c000f;
+ public static int bright_foreground_material_light=0x7f0c0010;
+ public static int button_material_dark=0x7f0c0011;
+ public static int button_material_light=0x7f0c0012;
+ public static int catalyst_redbox_background=0x7f0c0013;
+ public static int colorAccent=0x7f0c0014;
+ public static int colorPrimary=0x7f0c0015;
+ public static int colorPrimaryDark=0x7f0c0016;
+ public static int design_fab_shadow_end_color=0x7f0c0017;
+ public static int design_fab_shadow_mid_color=0x7f0c0018;
+ public static int design_fab_shadow_start_color=0x7f0c0019;
+ public static int design_fab_stroke_end_inner_color=0x7f0c001a;
+ public static int design_fab_stroke_end_outer_color=0x7f0c001b;
+ public static int design_fab_stroke_top_inner_color=0x7f0c001c;
+ public static int design_fab_stroke_top_outer_color=0x7f0c001d;
+ public static int design_snackbar_background_color=0x7f0c001e;
+ public static int design_textinput_error_color_dark=0x7f0c001f;
+ public static int design_textinput_error_color_light=0x7f0c0020;
+ public static int dim_foreground_disabled_material_dark=0x7f0c0021;
+ public static int dim_foreground_disabled_material_light=0x7f0c0022;
+ public static int dim_foreground_material_dark=0x7f0c0023;
+ public static int dim_foreground_material_light=0x7f0c0024;
+ public static int foreground_material_dark=0x7f0c0025;
+ public static int foreground_material_light=0x7f0c0026;
+ public static int highlighted_text_material_dark=0x7f0c0027;
+ public static int highlighted_text_material_light=0x7f0c0028;
+ public static int hint_foreground_material_dark=0x7f0c0029;
+ public static int hint_foreground_material_light=0x7f0c002a;
+ public static int material_blue_grey_800=0x7f0c002b;
+ public static int material_blue_grey_900=0x7f0c002c;
+ public static int material_blue_grey_950=0x7f0c002d;
+ public static int material_deep_teal_200=0x7f0c002e;
+ public static int material_deep_teal_500=0x7f0c002f;
+ public static int material_grey_100=0x7f0c0030;
+ public static int material_grey_300=0x7f0c0031;
+ public static int material_grey_50=0x7f0c0032;
+ public static int material_grey_600=0x7f0c0033;
+ public static int material_grey_800=0x7f0c0034;
+ public static int material_grey_850=0x7f0c0035;
+ public static int material_grey_900=0x7f0c0036;
+ public static int primary_dark_material_dark=0x7f0c0037;
+ public static int primary_dark_material_light=0x7f0c0038;
+ public static int primary_material_dark=0x7f0c0039;
+ public static int primary_material_light=0x7f0c003a;
+ public static int primary_text_default_material_dark=0x7f0c003b;
+ public static int primary_text_default_material_light=0x7f0c003c;
+ public static int primary_text_disabled_material_dark=0x7f0c003d;
+ public static int primary_text_disabled_material_light=0x7f0c003e;
+ public static int ripple_material_dark=0x7f0c003f;
+ public static int ripple_material_light=0x7f0c0040;
+ public static int secondary_text_default_material_dark=0x7f0c0041;
+ public static int secondary_text_default_material_light=0x7f0c0042;
+ public static int secondary_text_disabled_material_dark=0x7f0c0043;
+ public static int secondary_text_disabled_material_light=0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark=0x7f0c0045;
+ public static int switch_thumb_disabled_material_light=0x7f0c0046;
+ public static int switch_thumb_material_dark=0x7f0c0053;
+ public static int switch_thumb_material_light=0x7f0c0054;
+ public static int switch_thumb_normal_material_dark=0x7f0c0047;
+ public static int switch_thumb_normal_material_light=0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material=0x7f09000d;
+ public static int abc_action_bar_default_height_material=0x7f090001;
+ public static int abc_action_bar_default_padding_end_material=0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material=0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material=0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material=0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material=0x7f09001c;
+ public static int abc_action_bar_progress_bar_size=0x7f090002;
+ public static int abc_action_bar_stacked_max_height=0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width=0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material=0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material=0x7f090020;
+ public static int abc_action_button_min_height_material=0x7f090021;
+ public static int abc_action_button_min_width_material=0x7f090022;
+ public static int abc_action_button_min_width_overflow_material=0x7f090023;
+ public static int abc_alert_dialog_button_bar_height=0x7f090000;
+ public static int abc_button_inset_horizontal_material=0x7f090024;
+ public static int abc_button_inset_vertical_material=0x7f090025;
+ public static int abc_button_padding_horizontal_material=0x7f090026;
+ public static int abc_button_padding_vertical_material=0x7f090027;
+ public static int abc_config_prefDialogWidth=0x7f090005;
+ public static int abc_control_corner_material=0x7f090028;
+ public static int abc_control_inset_material=0x7f090029;
+ public static int abc_control_padding_material=0x7f09002a;
+ public static int abc_dialog_fixed_height_major=0x7f090006;
+ public static int abc_dialog_fixed_height_minor=0x7f090007;
+ public static int abc_dialog_fixed_width_major=0x7f090008;
+ public static int abc_dialog_fixed_width_minor=0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material=0x7f09002b;
+ public static int abc_dialog_min_width_major=0x7f09000a;
+ public static int abc_dialog_min_width_minor=0x7f09000b;
+ public static int abc_dialog_padding_material=0x7f09002c;
+ public static int abc_dialog_padding_top_material=0x7f09002d;
+ public static int abc_disabled_alpha_material_dark=0x7f09002e;
+ public static int abc_disabled_alpha_material_light=0x7f09002f;
+ public static int abc_dropdownitem_icon_width=0x7f090030;
+ public static int abc_dropdownitem_text_padding_left=0x7f090031;
+ public static int abc_dropdownitem_text_padding_right=0x7f090032;
+ public static int abc_edit_text_inset_bottom_material=0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material=0x7f090034;
+ public static int abc_edit_text_inset_top_material=0x7f090035;
+ public static int abc_floating_window_z=0x7f090036;
+ public static int abc_list_item_padding_horizontal_material=0x7f090037;
+ public static int abc_panel_menu_list_width=0x7f090038;
+ public static int abc_search_view_preferred_width=0x7f090039;
+ public static int abc_search_view_text_min_width=0x7f09000c;
+ public static int abc_seekbar_track_background_height_material=0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material=0x7f09003b;
+ public static int abc_select_dialog_padding_start_material=0x7f09003c;
+ public static int abc_switch_padding=0x7f090018;
+ public static int abc_text_size_body_1_material=0x7f09003d;
+ public static int abc_text_size_body_2_material=0x7f09003e;
+ public static int abc_text_size_button_material=0x7f09003f;
+ public static int abc_text_size_caption_material=0x7f090040;
+ public static int abc_text_size_display_1_material=0x7f090041;
+ public static int abc_text_size_display_2_material=0x7f090042;
+ public static int abc_text_size_display_3_material=0x7f090043;
+ public static int abc_text_size_display_4_material=0x7f090044;
+ public static int abc_text_size_headline_material=0x7f090045;
+ public static int abc_text_size_large_material=0x7f090046;
+ public static int abc_text_size_medium_material=0x7f090047;
+ public static int abc_text_size_menu_material=0x7f090048;
+ public static int abc_text_size_small_material=0x7f090049;
+ public static int abc_text_size_subhead_material=0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar=0x7f090003;
+ public static int abc_text_size_title_material=0x7f09004b;
+ public static int abc_text_size_title_material_toolbar=0x7f090004;
+ public static int activity_horizontal_margin=0x7f090019;
+ public static int activity_vertical_margin=0x7f09004c;
+ public static int design_appbar_elevation=0x7f09004d;
+ public static int design_bottom_sheet_modal_elevation=0x7f09004e;
+ public static int design_bottom_sheet_modal_peek_height=0x7f09004f;
+ public static int design_fab_border_width=0x7f090050;
+ public static int design_fab_elevation=0x7f090051;
+ public static int design_fab_image_size=0x7f090052;
+ public static int design_fab_size_mini=0x7f090053;
+ public static int design_fab_size_normal=0x7f090054;
+ public static int design_fab_translation_z_pressed=0x7f090055;
+ public static int design_navigation_elevation=0x7f090056;
+ public static int design_navigation_icon_padding=0x7f090057;
+ public static int design_navigation_icon_size=0x7f090058;
+ public static int design_navigation_max_width=0x7f090010;
+ public static int design_navigation_padding_bottom=0x7f090059;
+ public static int design_navigation_separator_vertical_padding=0x7f09005a;
+ public static int design_snackbar_action_inline_max_width=0x7f090011;
+ public static int design_snackbar_background_corner_radius=0x7f090012;
+ public static int design_snackbar_elevation=0x7f09005b;
+ public static int design_snackbar_extra_spacing_horizontal=0x7f090013;
+ public static int design_snackbar_max_width=0x7f090014;
+ public static int design_snackbar_min_width=0x7f090015;
+ public static int design_snackbar_padding_horizontal=0x7f09005c;
+ public static int design_snackbar_padding_vertical=0x7f09005d;
+ public static int design_snackbar_padding_vertical_2lines=0x7f090016;
+ public static int design_snackbar_text_size=0x7f09005e;
+ public static int design_tab_max_width=0x7f09005f;
+ public static int design_tab_scrollable_min_width=0x7f090017;
+ public static int design_tab_text_size=0x7f090060;
+ public static int design_tab_text_size_2line=0x7f090061;
+ public static int disabled_alpha_material_dark=0x7f090062;
+ public static int disabled_alpha_material_light=0x7f090063;
+ public static int fab_margin=0x7f090064;
+ public static int highlight_alpha_material_colored=0x7f090065;
+ public static int highlight_alpha_material_dark=0x7f090066;
+ public static int highlight_alpha_material_light=0x7f090067;
+ public static int item_touch_helper_max_drag_scroll_per_frame=0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity=0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity=0x7f09006a;
+ public static int nav_header_height=0x7f09006b;
+ public static int nav_header_vertical_spacing=0x7f09006c;
+ public static int notification_large_icon_height=0x7f09006d;
+ public static int notification_large_icon_width=0x7f09006e;
+ public static int notification_subtext_size=0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+ public static int abc_action_bar_item_background_material=0x7f020001;
+ public static int abc_btn_borderless_material=0x7f020002;
+ public static int abc_btn_check_material=0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
+ public static int abc_btn_colored_material=0x7f020006;
+ public static int abc_btn_default_mtrl_shape=0x7f020007;
+ public static int abc_btn_radio_material=0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
+ public static int abc_cab_background_internal_bg=0x7f02000f;
+ public static int abc_cab_background_top_material=0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha=0x7f020011;
+ public static int abc_control_background_material=0x7f020012;
+ public static int abc_dialog_material_background_dark=0x7f020013;
+ public static int abc_dialog_material_background_light=0x7f020014;
+ public static int abc_edit_text_material=0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha=0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha=0x7f020020;
+ public static int abc_ic_star_black_16dp=0x7f020021;
+ public static int abc_ic_star_black_36dp=0x7f020022;
+ public static int abc_ic_star_half_black_16dp=0x7f020023;
+ public static int abc_ic_star_half_black_36dp=0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025;
+ public static int abc_item_background_holo_dark=0x7f020026;
+ public static int abc_item_background_holo_light=0x7f020027;
+ public static int abc_list_divider_mtrl_alpha=0x7f020028;
+ public static int abc_list_focused_holo=0x7f020029;
+ public static int abc_list_longpressed_holo=0x7f02002a;
+ public static int abc_list_pressed_holo_dark=0x7f02002b;
+ public static int abc_list_pressed_holo_light=0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light=0x7f020030;
+ public static int abc_list_selector_holo_dark=0x7f020031;
+ public static int abc_list_selector_holo_light=0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
+ public static int abc_popup_background_mtrl_mult=0x7f020034;
+ public static int abc_ratingbar_full_material=0x7f020035;
+ public static int abc_ratingbar_indicator_material=0x7f020036;
+ public static int abc_ratingbar_small_material=0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
+ public static int abc_seekbar_thumb_material=0x7f02003d;
+ public static int abc_seekbar_track_material=0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha=0x7f02003f;
+ public static int abc_spinner_textfield_background_material=0x7f020040;
+ public static int abc_switch_thumb_material=0x7f020041;
+ public static int abc_switch_track_mtrl_alpha=0x7f020042;
+ public static int abc_tab_indicator_material=0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha=0x7f020044;
+ public static int abc_text_cursor_material=0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha=0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha=0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha=0x7f020049;
+ public static int abc_textfield_search_material=0x7f02004a;
+ public static int angle=0x7f02004b;
+ public static int button_background=0x7f02004c;
+ public static int design_fab_background=0x7f02004d;
+ public static int design_snackbar_background=0x7f02004e;
+ public static int ic_arrow_back_24dp=0x7f02004f;
+ public static int ic_camera_green=0x7f020050;
+ public static int ic_delete_white_24dp=0x7f020051;
+ public static int ic_done_all_24dp=0x7f020052;
+ public static int ic_find_in_page=0x7f020053;
+ public static int ic_flash_on_24dp=0x7f020054;
+ public static int ic_info_outline_white_24px=0x7f020055;
+ public static int ic_launcher_background=0x7f020056;
+ public static int ic_launcher_foreground=0x7f020057;
+ public static int ic_menu_camera=0x7f020058;
+ public static int ic_menu_gallery=0x7f020059;
+ public static int ic_menu_manage=0x7f02005a;
+ public static int ic_menu_send=0x7f02005b;
+ public static int ic_menu_share=0x7f02005c;
+ public static int ic_menu_slideshow=0x7f02005d;
+ public static int ic_menu_tag=0x7f02005e;
+ public static int ic_monochrome=0x7f02005f;
+ public static int ic_palette=0x7f020060;
+ public static int ic_photo_filter_white_24dp=0x7f020061;
+ public static int ic_settings=0x7f020062;
+ public static int ic_tag_bell=0x7f020063;
+ public static int ic_tag_game=0x7f020064;
+ public static int ic_tag_gift=0x7f020065;
+ public static int ic_tag_magnet=0x7f020066;
+ public static int ic_tag_rocket=0x7f020067;
+ public static int ic_tag_star=0x7f020068;
+ public static int ic_tag_tv=0x7f020069;
+ public static int notification_template_icon_bg=0x7f02006c;
+ public static int round_button=0x7f02006a;
+ public static int side_nav_bar=0x7f02006b;
+ }
+ public static final class id {
+ public static int about_container=0x7f0d0074;
+ public static int about_markdown=0x7f0d0075;
+ public static int about_shareapp=0x7f0d0076;
+ public static int about_view=0x7f0d0073;
+ public static int action0=0x7f0d008a;
+ public static int action_about=0x7f0d00a9;
+ public static int action_bar=0x7f0d0064;
+ public static int action_bar_activity_content=0x7f0d0000;
+ public static int action_bar_container=0x7f0d0063;
+ public static int action_bar_root=0x7f0d005f;
+ public static int action_bar_spinner=0x7f0d0001;
+ public static int action_bar_subtitle=0x7f0d0045;
+ public static int action_bar_title=0x7f0d0044;
+ public static int action_context_bar=0x7f0d0065;
+ public static int action_delete=0x7f0d00a6;
+ public static int action_divider=0x7f0d008e;
+ public static int action_menu_divider=0x7f0d0002;
+ public static int action_menu_presenter=0x7f0d0003;
+ public static int action_mode_bar=0x7f0d0061;
+ public static int action_mode_bar_stub=0x7f0d0060;
+ public static int action_mode_close_button=0x7f0d0046;
+ public static int action_share=0x7f0d00a8;
+ public static int action_tag=0x7f0d00a7;
+ public static int activity_chooser_view_content=0x7f0d0047;
+ public static int alertTitle=0x7f0d0053;
+ public static int always=0x7f0d003d;
+ public static int any=0x7f0d001b;
+ public static int back=0x7f0d001c;
+ public static int beginning=0x7f0d003b;
+ public static int bottom=0x7f0d0020;
+ public static int buttonBell=0x7f0d00a1;
+ public static int buttonGame=0x7f0d00a2;
+ public static int buttonGift=0x7f0d009f;
+ public static int buttonMagnet=0x7f0d00a4;
+ public static int buttonPanel=0x7f0d004e;
+ public static int buttonRocket=0x7f0d009e;
+ public static int buttonStar=0x7f0d00a3;
+ public static int buttonTv=0x7f0d00a0;
+ public static int cancel_action=0x7f0d008b;
+ public static int catalyst_redbox_title=0x7f0d0099;
+ public static int center=0x7f0d0021;
+ public static int centerCrop=0x7f0d0034;
+ public static int centerInside=0x7f0d0035;
+ public static int center_horizontal=0x7f0d0022;
+ public static int center_vertical=0x7f0d0023;
+ public static int checkbox=0x7f0d005c;
+ public static int chronometer=0x7f0d0091;
+ public static int clip_horizontal=0x7f0d002f;
+ public static int clip_vertical=0x7f0d0030;
+ public static int collapseActionView=0x7f0d003e;
+ public static int colorSquare=0x7f0d0087;
+ public static int contentPanel=0x7f0d0054;
+ public static int custom=0x7f0d005a;
+ public static int customPanel=0x7f0d0059;
+ public static int decor_content_parent=0x7f0d0062;
+ public static int default_activity_button=0x7f0d004a;
+ public static int design_bottom_sheet=0x7f0d007e;
+ public static int design_menu_item_action_area=0x7f0d0085;
+ public static int design_menu_item_action_area_stub=0x7f0d0084;
+ public static int design_menu_item_text=0x7f0d0083;
+ public static int design_navigation_view=0x7f0d0082;
+ public static int disableHome=0x7f0d000e;
+ public static int edit_query=0x7f0d0066;
+ public static int end=0x7f0d0024;
+ public static int end_padder=0x7f0d0096;
+ public static int enterAlways=0x7f0d0015;
+ public static int enterAlwaysCollapsed=0x7f0d0016;
+ public static int exitUntilCollapsed=0x7f0d0017;
+ public static int expand_activities_button=0x7f0d0048;
+ public static int expanded_menu=0x7f0d005b;
+ public static int fill=0x7f0d0031;
+ public static int fill_horizontal=0x7f0d0032;
+ public static int fill_vertical=0x7f0d0025;
+ public static int fitCenter=0x7f0d0036;
+ public static int fitEnd=0x7f0d0037;
+ public static int fitStart=0x7f0d0038;
+ public static int fitXY=0x7f0d0039;
+ public static int fixed=0x7f0d0042;
+ public static int focusCrop=0x7f0d003a;
+ public static int fps_text=0x7f0d0086;
+ public static int front=0x7f0d001d;
+ public static int gallery_image=0x7f0d0088;
+ public static int home=0x7f0d0004;
+ public static int homeAsUp=0x7f0d000f;
+ public static int hud=0x7f0d007b;
+ public static int icon=0x7f0d004c;
+ public static int ifRoom=0x7f0d003f;
+ public static int image=0x7f0d0049;
+ public static int imgDisplay=0x7f0d0089;
+ public static int info=0x7f0d0095;
+ public static int item_touch_helper_previous_elevation=0x7f0d0005;
+ public static int left=0x7f0d0026;
+ public static int line1=0x7f0d008f;
+ public static int line3=0x7f0d0093;
+ public static int linearLayout=0x7f0d009d;
+ public static int listMode=0x7f0d000b;
+ public static int list_item=0x7f0d004b;
+ public static int media_actions=0x7f0d008d;
+ public static int middle=0x7f0d003c;
+ public static int mini=0x7f0d0033;
+ public static int multiply=0x7f0d002a;
+ public static int navigation_header_container=0x7f0d0081;
+ public static int never=0x7f0d0040;
+ public static int none=0x7f0d0010;
+ public static int normal=0x7f0d000c;
+ public static int pager=0x7f0d0077;
+ public static int parallax=0x7f0d001e;
+ public static int parentPanel=0x7f0d0050;
+ public static int pin=0x7f0d001f;
+ public static int progress_circular=0x7f0d0006;
+ public static int progress_horizontal=0x7f0d0007;
+ public static int radio=0x7f0d005e;
+ public static int recyclerview=0x7f0d0078;
+ public static int right=0x7f0d0027;
+ public static int rn_frame_file=0x7f0d0098;
+ public static int rn_frame_method=0x7f0d0097;
+ public static int rn_redbox_reloadjs=0x7f0d009b;
+ public static int rn_redbox_stack=0x7f0d009a;
+ public static int scannedAnimation=0x7f0d007a;
+ public static int screen=0x7f0d002b;
+ public static int scroll=0x7f0d0018;
+ public static int scrollIndicatorDown=0x7f0d0058;
+ public static int scrollIndicatorUp=0x7f0d0055;
+ public static int scrollView=0x7f0d0056;
+ public static int scrollable=0x7f0d0043;
+ public static int search_badge=0x7f0d0068;
+ public static int search_bar=0x7f0d0067;
+ public static int search_button=0x7f0d0069;
+ public static int search_close_btn=0x7f0d006e;
+ public static int search_edit_frame=0x7f0d006a;
+ public static int search_go_btn=0x7f0d0070;
+ public static int search_mag_icon=0x7f0d006b;
+ public static int search_plate=0x7f0d006c;
+ public static int search_src_text=0x7f0d006d;
+ public static int search_voice_btn=0x7f0d0071;
+ public static int select_dialog_listview=0x7f0d0072;
+ public static int shortcut=0x7f0d005d;
+ public static int showCustom=0x7f0d0011;
+ public static int showHome=0x7f0d0012;
+ public static int showTitle=0x7f0d0013;
+ public static int snackbar_action=0x7f0d0080;
+ public static int snackbar_text=0x7f0d007f;
+ public static int snap=0x7f0d0019;
+ public static int spacer=0x7f0d004f;
+ public static int split_action_bar=0x7f0d0008;
+ public static int src_atop=0x7f0d002c;
+ public static int src_in=0x7f0d002d;
+ public static int src_over=0x7f0d002e;
+ public static int start=0x7f0d0028;
+ public static int status_bar_latest_event_content=0x7f0d008c;
+ public static int submit_area=0x7f0d006f;
+ public static int surfaceView=0x7f0d0079;
+ public static int tabMode=0x7f0d000d;
+ public static int tag_done=0x7f0d00a5;
+ public static int text=0x7f0d0094;
+ public static int text2=0x7f0d0092;
+ public static int textSpacerNoButtons=0x7f0d0057;
+ public static int textView=0x7f0d009c;
+ public static int time=0x7f0d0090;
+ public static int title=0x7f0d004d;
+ public static int title_template=0x7f0d0052;
+ public static int top=0x7f0d0029;
+ public static int topPanel=0x7f0d0051;
+ public static int touch_outside=0x7f0d007d;
+ public static int up=0x7f0d0009;
+ public static int useLogo=0x7f0d0014;
+ public static int view_offset_helper=0x7f0d000a;
+ public static int wait_spinner=0x7f0d007c;
+ public static int withText=0x7f0d0041;
+ public static int wrap_content=0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur=0x7f0b0002;
+ public static int abc_config_activityShortDur=0x7f0b0003;
+ public static int abc_max_action_buttons=0x7f0b0000;
+ public static int bottom_sheet_slide_duration=0x7f0b0004;
+ public static int cancel_button_image_alpha=0x7f0b0005;
+ public static int design_snackbar_text_max_lines=0x7f0b0001;
+ public static int status_bar_notification_info_maxnum=0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item=0x7f040000;
+ public static int abc_action_bar_up_container=0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout=0x7f040002;
+ public static int abc_action_menu_item_layout=0x7f040003;
+ public static int abc_action_menu_layout=0x7f040004;
+ public static int abc_action_mode_bar=0x7f040005;
+ public static int abc_action_mode_close_item_material=0x7f040006;
+ public static int abc_activity_chooser_view=0x7f040007;
+ public static int abc_activity_chooser_view_list_item=0x7f040008;
+ public static int abc_alert_dialog_button_bar_material=0x7f040009;
+ public static int abc_alert_dialog_material=0x7f04000a;
+ public static int abc_dialog_title_material=0x7f04000b;
+ public static int abc_expanded_menu_layout=0x7f04000c;
+ public static int abc_list_menu_item_checkbox=0x7f04000d;
+ public static int abc_list_menu_item_icon=0x7f04000e;
+ public static int abc_list_menu_item_layout=0x7f04000f;
+ public static int abc_list_menu_item_radio=0x7f040010;
+ public static int abc_popup_menu_item_layout=0x7f040011;
+ public static int abc_screen_content_include=0x7f040012;
+ public static int abc_screen_simple=0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode=0x7f040014;
+ public static int abc_screen_toolbar=0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line=0x7f040016;
+ public static int abc_search_view=0x7f040017;
+ public static int abc_select_dialog_material=0x7f040018;
+ public static int about_view=0x7f040019;
+ public static int activity_fullscreen_view=0x7f04001a;
+ public static int activity_gallery=0x7f04001b;
+ public static int activity_main=0x7f04001c;
+ public static int activity_open_note_scanner=0x7f04001d;
+ public static int activity_settings=0x7f04001e;
+ public static int design_bottom_sheet_dialog=0x7f04001f;
+ public static int design_layout_snackbar=0x7f040020;
+ public static int design_layout_snackbar_include=0x7f040021;
+ public static int design_layout_tab_icon=0x7f040022;
+ public static int design_layout_tab_text=0x7f040023;
+ public static int design_menu_item_action_area=0x7f040024;
+ public static int design_navigation_item=0x7f040025;
+ public static int design_navigation_item_header=0x7f040026;
+ public static int design_navigation_item_separator=0x7f040027;
+ public static int design_navigation_item_subheader=0x7f040028;
+ public static int design_navigation_menu=0x7f040029;
+ public static int design_navigation_menu_item=0x7f04002a;
+ public static int fps_view=0x7f04002b;
+ public static int gallery_item=0x7f04002c;
+ public static int layout_fullscreen_image=0x7f04002d;
+ public static int notification_media_action=0x7f04002e;
+ public static int notification_media_cancel_action=0x7f04002f;
+ public static int notification_template_big_media=0x7f040030;
+ public static int notification_template_big_media_narrow=0x7f040031;
+ public static int notification_template_lines=0x7f040032;
+ public static int notification_template_media=0x7f040033;
+ public static int notification_template_part_chronometer=0x7f040034;
+ public static int notification_template_part_time=0x7f040035;
+ public static int redbox_item_frame=0x7f040036;
+ public static int redbox_item_title=0x7f040037;
+ public static int redbox_view=0x7f040038;
+ public static int select_dialog_item_material=0x7f040039;
+ public static int select_dialog_multichoice_material=0x7f04003a;
+ public static int select_dialog_singlechoice_material=0x7f04003b;
+ public static int support_simple_spinner_dropdown_item=0x7f04003c;
+ public static int tageditor_view=0x7f04003d;
+ }
+ public static final class menu {
+ public static int menu_gallery=0x7f0e0000;
+ public static int menu_imagepager=0x7f0e0001;
+ }
+ public static final class mipmap {
+ public static int ic_launcher=0x7f030000;
+ public static int ic_launcher_round=0x7f030001;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description=0x7f070000;
+ public static int abc_action_bar_home_description_format=0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format=0x7f070002;
+ public static int abc_action_bar_up_description=0x7f070003;
+ public static int abc_action_menu_overflow_description=0x7f070004;
+ public static int abc_action_mode_done=0x7f070005;
+ public static int abc_activity_chooser_view_see_all=0x7f070006;
+ public static int abc_activitychooserview_choose_application=0x7f070007;
+ public static int abc_capital_off=0x7f070008;
+ public static int abc_capital_on=0x7f070009;
+ public static int abc_search_hint=0x7f07000a;
+ public static int abc_searchview_description_clear=0x7f07000b;
+ public static int abc_searchview_description_query=0x7f07000c;
+ public static int abc_searchview_description_search=0x7f07000d;
+ public static int abc_searchview_description_submit=0x7f07000e;
+ public static int abc_searchview_description_voice=0x7f07000f;
+ public static int abc_shareactionprovider_share_with=0x7f070010;
+ public static int abc_shareactionprovider_share_with_application=0x7f070011;
+ public static int abc_toolbar_collapse_description=0x7f070012;
+ public static int about_filename=0x7f070014;
+ public static int action_about=0x7f070015;
+ public static int action_delete=0x7f070016;
+ public static int action_share=0x7f070017;
+ public static int action_tag=0x7f070018;
+ public static int activateunknown=0x7f070019;
+ public static int answer_cancel=0x7f07001a;
+ public static int answer_later=0x7f07001b;
+ public static int answer_no=0x7f07001c;
+ public static int answer_yes=0x7f07001d;
+ public static int app_name=0x7f07001e;
+ public static int appbar_scrolling_view_behavior=0x7f07005a;
+ public static int ask_install_opencv=0x7f07001f;
+ public static int autoMode=0x7f070020;
+ public static int automatic_tagging=0x7f070021;
+ public static int automatic_tagging_summary=0x7f070022;
+ public static int basic_settings=0x7f070023;
+ public static int bitcoin_summary=0x7f070024;
+ public static int bottom_sheet_behavior=0x7f07005b;
+ public static int bug_rotate=0x7f070025;
+ public static int bug_rotate_summary=0x7f070026;
+ public static int bwMode=0x7f070027;
+ public static int catalyst_debugjs=0x7f070028;
+ public static int catalyst_debugjs_off=0x7f07005c;
+ public static int catalyst_element_inspector=0x7f070029;
+ public static int catalyst_element_inspector_off=0x7f07005d;
+ public static int catalyst_hot_module_replacement=0x7f07005e;
+ public static int catalyst_hot_module_replacement_off=0x7f07005f;
+ public static int catalyst_jsload_error=0x7f07002a;
+ public static int catalyst_jsload_message=0x7f07002b;
+ public static int catalyst_jsload_title=0x7f07002c;
+ public static int catalyst_live_reload=0x7f070060;
+ public static int catalyst_live_reload_off=0x7f070061;
+ public static int catalyst_perf_monitor=0x7f070062;
+ public static int catalyst_perf_monitor_off=0x7f070063;
+ public static int catalyst_reloadjs=0x7f07002d;
+ public static int catalyst_remotedbg_error=0x7f070064;
+ public static int catalyst_remotedbg_message=0x7f070065;
+ public static int catalyst_settings=0x7f07002e;
+ public static int catalyst_settings_title=0x7f07002f;
+ public static int catalyst_start_profile=0x7f070066;
+ public static int catalyst_stop_profile=0x7f070067;
+ public static int character_counter_pattern=0x7f070068;
+ public static int colorMode=0x7f070030;
+ public static int confirm_delete_multiple_text=0x7f070031;
+ public static int confirm_delete_text=0x7f070032;
+ public static int confirm_install_opencv=0x7f070033;
+ public static int confirm_title=0x7f070034;
+ public static int dogecoin_summary=0x7f070069;
+ public static int donate=0x7f070035;
+ public static int donate_summary=0x7f070036;
+ public static int downloading=0x7f070037;
+ public static int downloading_opencv=0x7f070038;
+ public static int feedback_and_contributions=0x7f070039;
+ public static int filterModeOff=0x7f07003a;
+ public static int filterModeOn=0x7f07003b;
+ public static int github_project=0x7f07003c;
+ public static int github_project_summary=0x7f07003d;
+ public static int githubdownload=0x7f07003e;
+ public static int googleplay=0x7f07003f;
+ public static int images_scanned=0x7f070040;
+ public static int install_opencv=0x7f070041;
+ public static int manualMode=0x7f070042;
+ public static int match_aspect=0x7f070043;
+ public static int match_aspect_summary=0x7f070044;
+ public static int messageactivateunknown=0x7f070045;
+ public static int paypal_summary=0x7f070046;
+ public static int scanningToast=0x7f070047;
+ public static int send_message=0x7f070048;
+ public static int send_message_summary=0x7f070049;
+ public static int settings=0x7f07004a;
+ public static int share_app=0x7f07004b;
+ public static int share_app_body=0x7f07004c;
+ public static int share_app_subject=0x7f07004d;
+ public static int share_app_using=0x7f07004e;
+ public static int share_snackbar=0x7f07004f;
+ public static int stats_optin_text=0x7f070050;
+ public static int stats_optin_title=0x7f070051;
+ public static int status_bar_notification_info_overflow=0x7f070013;
+ public static int storage_folder=0x7f070052;
+ public static int storage_folder_summary=0x7f070053;
+ public static int telegram=0x7f070054;
+ public static int telegram_summary=0x7f070055;
+ public static int title_activity_full_image=0x7f070056;
+ public static int title_activity_gallery=0x7f070057;
+ public static int title_activity_open_note_scanner=0x7f07006a;
+ public static int usage_stats=0x7f070058;
+ public static int usage_stats_summary=0x7f070059;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat=0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light=0x7f0a0089;
+ public static int Animation_AppCompat_Dialog=0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp=0x7f0a008b;
+ public static int Animation_Catalyst_RedBox=0x7f0a008c;
+ public static int Animation_Design_BottomSheetDialog=0x7f0a008d;
+ public static int AppTheme=0x7f0a008e;
+ public static int AppTheme_AppBarOverlay=0x7f0a008f;
+ public static int AppTheme_NoActionBar=0x7f0a0037;
+ public static int AppTheme_PopupOverlay=0x7f0a0090;
+ public static int Base_AlertDialog_AppCompat=0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light=0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog=0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp=0x7f0a0094;
+ public static int Base_DialogWindowTitle_AppCompat=0x7f0a0095;
+ public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0a0096;
+ public static int Base_TextAppearance_AppCompat=0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1=0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2=0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button=0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption=0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1=0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2=0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3=0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4=0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline=0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse=0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large=0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium=0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu=0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small=0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead=0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title=0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0057;
+ public static int Base_Theme_AppCompat=0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu=0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog=0x7f0a0012;
+ public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a009d;
+ public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0002;
+ public static int Base_Theme_AppCompat_Light=0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog=0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a00a1;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0003;
+ public static int Base_ThemeOverlay_AppCompat=0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light=0x7f0a00a6;
+ public static int Base_V11_Theme_AppCompat_Dialog=0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText=0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat=0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog=0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light=0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat=0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light=0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat=0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light=0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat=0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog=0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light=0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText=0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar=0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton=0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode=0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button=0x7f0a0063;
+ public static int Base_Widget_AppCompat_Button_Borderless=0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored=0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small=0x7f0a0066;
+ public static int Base_Widget_AppCompat_ButtonBar=0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00b3;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText=0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton=0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView=0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu=0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu=0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow=0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar=0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar=0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView=0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar=0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner=0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar=0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007b;
+ public static int Base_Widget_Design_TabLayout=0x7f0a00bd;
+ public static int FullscreenActionBarStyle=0x7f0a00be;
+ public static int Platform_AppCompat=0x7f0a0018;
+ public static int Platform_AppCompat_Light=0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat=0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0a007e;
+ public static int Platform_V11_AppCompat=0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light=0x7f0a001b;
+ public static int Platform_V14_AppCompat=0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light=0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner=0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0033;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0034;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0036;
+ public static int TextAppearance_AppCompat=0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1=0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2=0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button=0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption=0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1=0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2=0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3=0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4=0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline=0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse=0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large=0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse=0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium=0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu=0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small=0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse=0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead=0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title=0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse=0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button=0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch=0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00ea;
+ public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a00eb;
+ public static int TextAppearance_Design_Counter=0x7f0a00ec;
+ public static int TextAppearance_Design_Counter_Overflow=0x7f0a00ed;
+ public static int TextAppearance_Design_Error=0x7f0a00ee;
+ public static int TextAppearance_Design_Hint=0x7f0a00ef;
+ public static int TextAppearance_Design_Snackbar_Message=0x7f0a00f0;
+ public static int TextAppearance_Design_Tab=0x7f0a00f1;
+ public static int TextAppearance_StatusBar_EventContent=0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info=0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2=0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time=0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title=0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f4;
+ public static int Theme=0x7f0a00f5;
+ public static int Theme_AppCompat=0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu=0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight=0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog=0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000b;
+ public static int Theme_AppCompat_Dialog=0x7f0a00f8;
+ public static int Theme_AppCompat_Dialog_Alert=0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fa;
+ public static int Theme_AppCompat_DialogWhenLarge=0x7f0a00fb;
+ public static int Theme_AppCompat_Light=0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar=0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog=0x7f0a00fe;
+ public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0100;
+ public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0101;
+ public static int Theme_AppCompat_Light_NoActionBar=0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar=0x7f0a0103;
+ public static int Theme_Catalyst=0x7f0a0104;
+ public static int Theme_Catalyst_RedBox=0x7f0a0105;
+ public static int Theme_Design=0x7f0a0106;
+ public static int Theme_Design_BottomSheetDialog=0x7f0a0107;
+ public static int Theme_Design_Light=0x7f0a0108;
+ public static int Theme_Design_Light_BottomSheetDialog=0x7f0a0109;
+ public static int Theme_Design_Light_NoActionBar=0x7f0a010a;
+ public static int Theme_Design_NoActionBar=0x7f0a010b;
+ public static int Theme_ReactNative_AppCompat_Light=0x7f0a010c;
+ public static int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0a010d;
+ public static int ThemeOverlay_AppCompat=0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar=0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark=0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light=0x7f0a0112;
+ public static int Widget_AppCompat_ActionBar=0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid=0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar=0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText=0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView=0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton=0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow=0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode=0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView=0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView=0x7f0a011d;
+ public static int Widget_AppCompat_Button=0x7f0a011e;
+ public static int Widget_AppCompat_Button_Borderless=0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored=0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small=0x7f0a0123;
+ public static int Widget_AppCompat_ButtonBar=0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0125;
+ public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch=0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle=0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012a;
+ public static int Widget_AppCompat_EditText=0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton=0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar=0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton=0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu=0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView=0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow=0x7f0a0143;
+ public static int Widget_AppCompat_ListView=0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown=0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu=0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu=0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow=0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar=0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar=0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator=0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small=0x7f0a014e;
+ public static int Widget_AppCompat_SearchView=0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar=0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar=0x7f0a0151;
+ public static int Widget_AppCompat_Spinner=0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown=0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined=0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar=0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0158;
+ public static int Widget_Design_AppBarLayout=0x7f0a0159;
+ public static int Widget_Design_BottomSheet_Modal=0x7f0a015a;
+ public static int Widget_Design_CollapsingToolbar=0x7f0a015b;
+ public static int Widget_Design_CoordinatorLayout=0x7f0a015c;
+ public static int Widget_Design_FloatingActionButton=0x7f0a015d;
+ public static int Widget_Design_NavigationView=0x7f0a015e;
+ public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0a015f;
+ public static int Widget_Design_Snackbar=0x7f0a0160;
+ public static int Widget_Design_TabLayout=0x7f0a0001;
+ public static int Widget_Design_TextInputLayout=0x7f0a0161;
+ }
+ public static final class xml {
+ public static int preferences=0x7f060000;
+ public static int settings=0x7f060001;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a ActionBar.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#background}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:background
+ */
+ public static int ActionBar_background = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundSplit
+ */
+ public static int ActionBar_backgroundSplit = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundStacked}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundStacked
+ */
+ public static int ActionBar_backgroundStacked = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetEnd
+ */
+ public static int ActionBar_contentInsetEnd = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetLeft
+ */
+ public static int ActionBar_contentInsetLeft = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetRight
+ */
+ public static int ActionBar_contentInsetRight = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetStart
+ */
+ public static int ActionBar_contentInsetStart = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#customNavigationLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:customNavigationLayout
+ */
+ public static int ActionBar_customNavigationLayout = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#displayOptions}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ @attr name com.documentscanner:displayOptions
+ */
+ public static int ActionBar_displayOptions = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#divider}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:divider
+ */
+ public static int ActionBar_divider = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int ActionBar_elevation = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#height}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:height
+ */
+ public static int ActionBar_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hideOnContentScroll}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hideOnContentScroll
+ */
+ public static int ActionBar_hideOnContentScroll = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeAsUpIndicator
+ */
+ public static int ActionBar_homeAsUpIndicator = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeLayout
+ */
+ public static int ActionBar_homeLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#icon}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:icon
+ */
+ public static int ActionBar_icon = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#indeterminateProgressStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:indeterminateProgressStyle
+ */
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemPadding
+ */
+ public static int ActionBar_itemPadding = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logo}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:logo
+ */
+ public static int ActionBar_logo = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationMode}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ @attr name com.documentscanner:navigationMode
+ */
+ public static int ActionBar_navigationMode = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int ActionBar_popupTheme = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:progressBarPadding
+ */
+ public static int ActionBar_progressBarPadding = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:progressBarStyle
+ */
+ public static int ActionBar_progressBarStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitle
+ */
+ public static int ActionBar_subtitle = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextStyle
+ */
+ public static int ActionBar_subtitleTextStyle = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int ActionBar_title = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextStyle
+ */
+ public static int ActionBar_titleTextStyle = 5;
+ /** Attributes that can be used with a ActionBarLayout.
+
+ @see #ActionBarLayout_android_layout_gravity
+ */
+ public static final int[] ActionBarLayout = {
+ 0x010100b3
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #ActionBarLayout} array.
+ @attr name android:layout_gravity
+ */
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ /** Attributes that can be used with a ActionMenuItemView.
+
+ @see #ActionMenuItemView_android_minWidth
+ */
+ public static final int[] ActionMenuItemView = {
+ 0x0101013f
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#minWidth}
+ attribute's value can be found in the {@link #ActionMenuItemView} array.
+ @attr name android:minWidth
+ */
+ public static int ActionMenuItemView_android_minWidth = 0;
+ /** Attributes that can be used with a ActionMenuView.
+ */
+ public static final int[] ActionMenuView = {
+
+ };
+ /** Attributes that can be used with a ActionMode.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#background}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:background
+ */
+ public static int ActionMode_background = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundSplit
+ */
+ public static int ActionMode_backgroundSplit = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#closeItemLayout}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:closeItemLayout
+ */
+ public static int ActionMode_closeItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#height}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:height
+ */
+ public static int ActionMode_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextStyle
+ */
+ public static int ActionMode_subtitleTextStyle = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextStyle
+ */
+ public static int ActionMode_titleTextStyle = 1;
+ /** Attributes that can be used with a ActivityChooserView.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandActivityOverflowButtonDrawable}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:expandActivityOverflowButtonDrawable
+ */
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#initialActivityCount}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:initialActivityCount
+ */
+ public static int ActivityChooserView_initialActivityCount = 0;
+ /** Attributes that can be used with a AlertDialog.
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+ @attr name android:layout
+ */
+ public static int AlertDialog_android_layout = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonPanelSideLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonPanelSideLayout
+ */
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listItemLayout
+ */
+ public static int AlertDialog_listItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listLayout
+ */
+ public static int AlertDialog_listLayout = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#multiChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:multiChoiceItemLayout
+ */
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#singleChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:singleChoiceItemLayout
+ */
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ /** Attributes that can be used with a AppBarLayout.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+ @attr name android:background
+ */
+ public static int AppBarLayout_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int AppBarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expanded}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expanded
+ */
+ public static int AppBarLayout_expanded = 2;
+ /** Attributes that can be used with a AppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_scrollFlags}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ @attr name com.documentscanner:layout_scrollFlags
+ */
+ public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_scrollInterpolator}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout_scrollInterpolator
+ */
+ public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ /** Attributes that can be used with a AppCompatImageView.
+
This symbol is the offset where the {@link android.R.attr#src}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+ @attr name android:src
+ */
+ public static int AppCompatImageView_android_src = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#srcCompat}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:srcCompat
+ */
+ public static int AppCompatImageView_srcCompat = 1;
+ /** Attributes that can be used with a AppCompatTextView.
+
This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+ @attr name android:textAppearance
+ */
+ public static int AppCompatTextView_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner:textAllCaps
+ */
+ public static int AppCompatTextView_textAllCaps = 1;
+ /** Attributes that can be used with a AppCompatTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarDivider}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarDivider
+ */
+ public static int AppCompatTheme_actionBarDivider = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarItemBackground
+ */
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarPopupTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarPopupTheme
+ */
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarSize}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ @attr name com.documentscanner:actionBarSize
+ */
+ public static int AppCompatTheme_actionBarSize = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarSplitStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarSplitStyle
+ */
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarStyle
+ */
+ public static int AppCompatTheme_actionBarStyle = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabBarStyle
+ */
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabStyle
+ */
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabTextStyle
+ */
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTheme
+ */
+ public static int AppCompatTheme_actionBarTheme = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarWidgetTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarWidgetTheme
+ */
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionButtonStyle
+ */
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionDropDownStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionDropDownStyle
+ */
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionMenuTextAppearance}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionMenuTextAppearance
+ */
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionMenuTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:actionMenuTextColor
+ */
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeBackground
+ */
+ public static int AppCompatTheme_actionModeBackground = 29;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCloseButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCloseButtonStyle
+ */
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCloseDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCloseDrawable
+ */
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCopyDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCopyDrawable
+ */
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCutDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCutDrawable
+ */
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeFindDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeFindDrawable
+ */
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModePasteDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModePasteDrawable
+ */
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModePopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModePopupWindowStyle
+ */
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeSelectAllDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeSelectAllDrawable
+ */
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeShareDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeShareDrawable
+ */
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeSplitBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeSplitBackground
+ */
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeStyle
+ */
+ public static int AppCompatTheme_actionModeStyle = 27;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeWebSearchDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeWebSearchDrawable
+ */
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionOverflowButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionOverflowButtonStyle
+ */
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionOverflowMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionOverflowMenuStyle
+ */
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#activityChooserViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:activityChooserViewStyle
+ */
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogButtonGroupStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogButtonGroupStyle
+ */
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogCenterButtons}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:alertDialogCenterButtons
+ */
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogStyle
+ */
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogTheme
+ */
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowIsFloating
+ */
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#autoCompleteTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:autoCompleteTextViewStyle
+ */
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#borderlessButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:borderlessButtonStyle
+ */
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarNegativeButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarNegativeButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarNeutralButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarNeutralButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarPositiveButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarPositiveButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarStyle
+ */
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonStyle
+ */
+ public static int AppCompatTheme_buttonStyle = 100;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonStyleSmall
+ */
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#checkboxStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:checkboxStyle
+ */
+ public static int AppCompatTheme_checkboxStyle = 102;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#checkedTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:checkedTextViewStyle
+ */
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorAccent}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorAccent
+ */
+ public static int AppCompatTheme_colorAccent = 84;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorButtonNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorButtonNormal
+ */
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlActivated}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlActivated
+ */
+ public static int AppCompatTheme_colorControlActivated = 86;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlHighlight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlHighlight
+ */
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlNormal
+ */
+ public static int AppCompatTheme_colorControlNormal = 85;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorPrimary}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorPrimary
+ */
+ public static int AppCompatTheme_colorPrimary = 82;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorPrimaryDark}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorPrimaryDark
+ */
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorSwitchThumbNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorSwitchThumbNormal
+ */
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#controlBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:controlBackground
+ */
+ public static int AppCompatTheme_controlBackground = 90;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dialogPreferredPadding}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dialogPreferredPadding
+ */
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dialogTheme
+ */
+ public static int AppCompatTheme_dialogTheme = 42;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerHorizontal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dividerHorizontal
+ */
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerVertical}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dividerVertical
+ */
+ public static int AppCompatTheme_dividerVertical = 55;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dropDownListViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dropDownListViewStyle
+ */
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dropdownListPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dropdownListPreferredItemHeight
+ */
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:editTextBackground
+ */
+ public static int AppCompatTheme_editTextBackground = 63;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:editTextColor
+ */
+ public static int AppCompatTheme_editTextColor = 62;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:editTextStyle
+ */
+ public static int AppCompatTheme_editTextStyle = 104;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeAsUpIndicator
+ */
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#imageButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:imageButtonStyle
+ */
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listChoiceBackgroundIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listChoiceBackgroundIndicator
+ */
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listDividerAlertDialog}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listDividerAlertDialog
+ */
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listPopupWindowStyle
+ */
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeight
+ */
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeightLarge}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeightLarge
+ */
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeightSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeightSmall
+ */
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemPaddingLeft}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemPaddingLeft
+ */
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemPaddingRight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemPaddingRight
+ */
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:panelBackground
+ */
+ public static int AppCompatTheme_panelBackground = 78;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelMenuListTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:panelMenuListTheme
+ */
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelMenuListWidth}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:panelMenuListWidth
+ */
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupMenuStyle
+ */
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupWindowStyle
+ */
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#radioButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:radioButtonStyle
+ */
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyle
+ */
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyleIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyleIndicator
+ */
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyleSmall
+ */
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchViewStyle
+ */
+ public static int AppCompatTheme_searchViewStyle = 68;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#seekBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:seekBarStyle
+ */
+ public static int AppCompatTheme_seekBarStyle = 109;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#selectableItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:selectableItemBackground
+ */
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#selectableItemBackgroundBorderless}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:selectableItemBackgroundBorderless
+ */
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinnerDropDownItemStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:spinnerDropDownItemStyle
+ */
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinnerStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:spinnerStyle
+ */
+ public static int AppCompatTheme_spinnerStyle = 110;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:switchStyle
+ */
+ public static int AppCompatTheme_switchStyle = 111;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceLargePopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceLargePopupMenu
+ */
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceListItem
+ */
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceListItemSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceListItemSmall
+ */
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSearchResultSubtitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSearchResultSubtitle
+ */
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSearchResultTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSearchResultTitle
+ */
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSmallPopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSmallPopupMenu
+ */
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorAlertDialogListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:textColorAlertDialogListItem
+ */
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorSearchUrl}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:textColorSearchUrl
+ */
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarNavigationButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarNavigationButtonStyle
+ */
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarStyle
+ */
+ public static int AppCompatTheme_toolbarStyle = 58;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionBar}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionBar
+ */
+ public static int AppCompatTheme_windowActionBar = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionBarOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionBarOverlay
+ */
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionModeOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionModeOverlay
+ */
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedHeightMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedHeightMajor
+ */
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedHeightMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedHeightMinor
+ */
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedWidthMajor
+ */
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedWidthMinor
+ */
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowMinWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowMinWidthMajor
+ */
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowMinWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowMinWidthMinor
+ */
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowNoTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowNoTitle
+ */
+ public static int AppCompatTheme_windowNoTitle = 3;
+ /** Attributes that can be used with a BottomSheetBehavior_Params.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_hideable}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_hideable
+ */
+ public static int BottomSheetBehavior_Params_behavior_hideable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_peekHeight}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_peekHeight
+ */
+ public static int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ /** Attributes that can be used with a ButtonBarContainerTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#metaButtonBarButtonStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:metaButtonBarButtonStyle
+ */
+ public static int ButtonBarContainerTheme_metaButtonBarButtonStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#metaButtonBarStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:metaButtonBarStyle
+ */
+ public static int ButtonBarContainerTheme_metaButtonBarStyle = 0;
+ /** Attributes that can be used with a ButtonBarLayout.
+
+ @see #ButtonBarLayout_allowStacking
+ */
+ public static final int[] ButtonBarLayout = {
+ 0x7f01009b
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#allowStacking}
+ attribute's value can be found in the {@link #ButtonBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:allowStacking
+ */
+ public static int ButtonBarLayout_allowStacking = 0;
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name com.documentscanner:camera_id
+ */
+ public static int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:show_fps
+ */
+ public static int CameraBridgeViewBase_show_fps = 0;
+ /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_collapseMode}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ @attr name com.documentscanner:layout_collapseMode
+ */
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_collapseParallaxMultiplier}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_collapseParallaxMultiplier
+ */
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ /** Attributes that can be used with a CollapsingToolbarLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapsedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:collapsedTitleGravity
+ */
+ public static int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapsedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:collapsedTitleTextAppearance
+ */
+ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentScrim
+ */
+ public static int CollapsingToolbarLayout_contentScrim = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:expandedTitleGravity
+ */
+ public static int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMargin}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMargin
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginBottom}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginBottom
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginEnd}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginEnd
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginStart}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginStart
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginTop}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginTop
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:expandedTitleTextAppearance
+ */
+ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#statusBarScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:statusBarScrim
+ */
+ public static int CollapsingToolbarLayout_statusBarScrim = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int CollapsingToolbarLayout_title = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleEnabled}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleEnabled
+ */
+ public static int CollapsingToolbarLayout_titleEnabled = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarId}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarId
+ */
+ public static int CollapsingToolbarLayout_toolbarId = 10;
+ /** Attributes that can be used with a CompoundButton.
+
This symbol is the offset where the {@link android.R.attr#button}
+ attribute's value can be found in the {@link #CompoundButton} array.
+ @attr name android:button
+ */
+ public static int CompoundButton_android_button = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonTint}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:buttonTint
+ */
+ public static int CompoundButton_buttonTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonTintMode}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:buttonTintMode
+ */
+ public static int CompoundButton_buttonTintMode = 2;
+ /** Attributes that can be used with a CoordinatorLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#keylines}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:keylines
+ */
+ public static int CoordinatorLayout_keylines = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#statusBarBackground}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:statusBarBackground
+ */
+ public static int CoordinatorLayout_statusBarBackground = 1;
+ /** Attributes that can be used with a CoordinatorLayout_LayoutParams.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+ @attr name android:layout_gravity
+ */
+ public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_anchor}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout_anchor
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_anchorGravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:layout_anchorGravity
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_behavior}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_behavior
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_keyline}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_keyline
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ /** Attributes that can be used with a DesignTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#bottomSheetDialogTheme}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:bottomSheetDialogTheme
+ */
+ public static int DesignTheme_bottomSheetDialogTheme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#bottomSheetStyle}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:bottomSheetStyle
+ */
+ public static int DesignTheme_bottomSheetStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorError}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:textColorError
+ */
+ public static int DesignTheme_textColorError = 2;
+ /** Attributes that can be used with a DrawerArrowToggle.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#arrowHeadLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:arrowHeadLength
+ */
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#arrowShaftLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:arrowShaftLength
+ */
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#barLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:barLength
+ */
+ public static int DrawerArrowToggle_barLength = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#color}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:color
+ */
+ public static int DrawerArrowToggle_color = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#drawableSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:drawableSize
+ */
+ public static int DrawerArrowToggle_drawableSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#gapBetweenBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:gapBetweenBars
+ */
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:spinBars
+ */
+ public static int DrawerArrowToggle_spinBars = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#thickness}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:thickness
+ */
+ public static int DrawerArrowToggle_thickness = 7;
+ /** Attributes that can be used with a FloatingActionButton.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:backgroundTint
+ */
+ public static int FloatingActionButton_backgroundTint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:backgroundTintMode
+ */
+ public static int FloatingActionButton_backgroundTintMode = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#borderWidth}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:borderWidth
+ */
+ public static int FloatingActionButton_borderWidth = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int FloatingActionButton_elevation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#fabSize}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ @attr name com.documentscanner:fabSize
+ */
+ public static int FloatingActionButton_fabSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#pressedTranslationZ}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:pressedTranslationZ
+ */
+ public static int FloatingActionButton_pressedTranslationZ = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#rippleColor}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:rippleColor
+ */
+ public static int FloatingActionButton_rippleColor = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#useCompatPadding}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:useCompatPadding
+ */
+ public static int FloatingActionButton_useCompatPadding = 5;
+ /** Attributes that can be used with a ForegroundLinearLayout.
+
This symbol is the offset where the {@link android.R.attr#foreground}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foreground
+ */
+ public static int ForegroundLinearLayout_android_foreground = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#foregroundGravity}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foregroundGravity
+ */
+ public static int ForegroundLinearLayout_android_foregroundGravity = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#foregroundInsidePadding}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:foregroundInsidePadding
+ */
+ public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ /** Attributes that can be used with a GenericDraweeView.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actualImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:actualImageScaleType
+ */
+ public static int GenericDraweeView_actualImageScaleType = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:backgroundImage
+ */
+ public static int GenericDraweeView_backgroundImage = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#fadeDuration}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:fadeDuration
+ */
+ public static int GenericDraweeView_fadeDuration = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#failureImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:failureImage
+ */
+ public static int GenericDraweeView_failureImage = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#failureImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:failureImageScaleType
+ */
+ public static int GenericDraweeView_failureImageScaleType = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#overlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:overlayImage
+ */
+ public static int GenericDraweeView_overlayImage = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#placeholderImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:placeholderImage
+ */
+ public static int GenericDraweeView_placeholderImage = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#placeholderImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:placeholderImageScaleType
+ */
+ public static int GenericDraweeView_placeholderImageScaleType = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#pressedStateOverlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:pressedStateOverlayImage
+ */
+ public static int GenericDraweeView_pressedStateOverlayImage = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarAutoRotateInterval}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:progressBarAutoRotateInterval
+ */
+ public static int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:progressBarImage
+ */
+ public static int GenericDraweeView_progressBarImage = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:progressBarImageScaleType
+ */
+ public static int GenericDraweeView_progressBarImageScaleType = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#retryImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:retryImage
+ */
+ public static int GenericDraweeView_retryImage = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#retryImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:retryImageScaleType
+ */
+ public static int GenericDraweeView_retryImageScaleType = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundAsCircle}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundAsCircle
+ */
+ public static int GenericDraweeView_roundAsCircle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundBottomLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundBottomLeft
+ */
+ public static int GenericDraweeView_roundBottomLeft = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundBottomRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundBottomRight
+ */
+ public static int GenericDraweeView_roundBottomRight = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundTopLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundTopLeft
+ */
+ public static int GenericDraweeView_roundTopLeft = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundTopRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundTopRight
+ */
+ public static int GenericDraweeView_roundTopRight = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundWithOverlayColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundWithOverlayColor
+ */
+ public static int GenericDraweeView_roundWithOverlayColor = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundedCornerRadius}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundedCornerRadius
+ */
+ public static int GenericDraweeView_roundedCornerRadius = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundingBorderColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundingBorderColor
+ */
+ public static int GenericDraweeView_roundingBorderColor = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundingBorderWidth}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundingBorderWidth
+ */
+ public static int GenericDraweeView_roundingBorderWidth = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#viewAspectRatio}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:viewAspectRatio
+ */
+ public static int GenericDraweeView_viewAspectRatio = 1;
+ /** Attributes that can be used with a LinearLayoutCompat.
+
This symbol is the offset where the {@link android.R.attr#baselineAligned}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAligned
+ */
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAlignedChildIndex
+ */
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:gravity
+ */
+ public static int LinearLayoutCompat_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:orientation
+ */
+ public static int LinearLayoutCompat_android_orientation = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#weightSum}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:weightSum
+ */
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#divider}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:divider
+ */
+ public static int LinearLayoutCompat_divider = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerPadding}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dividerPadding
+ */
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#measureWithLargestChild}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:measureWithLargestChild
+ */
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showDividers}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ @attr name com.documentscanner:showDividers
+ */
+ public static int LinearLayoutCompat_showDividers = 7;
+ /** Attributes that can be used with a LinearLayoutCompat_Layout.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_gravity
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_height}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_height
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_weight}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_weight
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_width}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_width
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ /** Attributes that can be used with a ListPopupWindow.
+
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ /** Attributes that can be used with a MenuGroup.
+
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:checkableBehavior
+ */
+ public static int MenuGroup_android_checkableBehavior = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:enabled
+ */
+ public static int MenuGroup_android_enabled = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:id
+ */
+ public static int MenuGroup_android_id = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:menuCategory
+ */
+ public static int MenuGroup_android_menuCategory = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:orderInCategory
+ */
+ public static int MenuGroup_android_orderInCategory = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:visible
+ */
+ public static int MenuGroup_android_visible = 2;
+ /** Attributes that can be used with a MenuItem.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionLayout}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionLayout
+ */
+ public static int MenuItem_actionLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionProviderClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:actionProviderClass
+ */
+ public static int MenuItem_actionProviderClass = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionViewClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:actionViewClass
+ */
+ public static int MenuItem_actionViewClass = 15;
+ /**
+
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:alphabeticShortcut
+ */
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checkable}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checkable
+ */
+ public static int MenuItem_android_checkable = 11;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checked}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checked
+ */
+ public static int MenuItem_android_checked = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:enabled
+ */
+ public static int MenuItem_android_enabled = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:icon
+ */
+ public static int MenuItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:id
+ */
+ public static int MenuItem_android_id = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:menuCategory
+ */
+ public static int MenuItem_android_menuCategory = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#numericShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:numericShortcut
+ */
+ public static int MenuItem_android_numericShortcut = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#onClick}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:onClick
+ */
+ public static int MenuItem_android_onClick = 12;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:orderInCategory
+ */
+ public static int MenuItem_android_orderInCategory = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#title}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:title
+ */
+ public static int MenuItem_android_title = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#titleCondensed}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:titleCondensed
+ */
+ public static int MenuItem_android_titleCondensed = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:visible
+ */
+ public static int MenuItem_android_visible = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showAsAction}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ @attr name com.documentscanner:showAsAction
+ */
+ public static int MenuItem_showAsAction = 13;
+ /** Attributes that can be used with a MenuView.
+
This symbol is the offset where the {@link android.R.attr#headerBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:headerBackground
+ */
+ public static int MenuView_android_headerBackground = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:horizontalDivider
+ */
+ public static int MenuView_android_horizontalDivider = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemBackground
+ */
+ public static int MenuView_android_itemBackground = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemIconDisabledAlpha
+ */
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemTextAppearance
+ */
+ public static int MenuView_android_itemTextAppearance = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#verticalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:verticalDivider
+ */
+ public static int MenuView_android_verticalDivider = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static int MenuView_android_windowAnimationStyle = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#preserveIconSpacing}
+ attribute's value can be found in the {@link #MenuView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:preserveIconSpacing
+ */
+ public static int MenuView_preserveIconSpacing = 7;
+ /** Attributes that can be used with a NavigationView.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:background
+ */
+ public static int NavigationView_android_background = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:fitsSystemWindows
+ */
+ public static int NavigationView_android_fitsSystemWindows = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:maxWidth
+ */
+ public static int NavigationView_android_maxWidth = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int NavigationView_elevation = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#headerLayout}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:headerLayout
+ */
+ public static int NavigationView_headerLayout = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemBackground}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:itemBackground
+ */
+ public static int NavigationView_itemBackground = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemIconTint}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemIconTint
+ */
+ public static int NavigationView_itemIconTint = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:itemTextAppearance
+ */
+ public static int NavigationView_itemTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemTextColor}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemTextColor
+ */
+ public static int NavigationView_itemTextColor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#menu}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:menu
+ */
+ public static int NavigationView_menu = 4;
+ /** Attributes that can be used with a PopupWindow.
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #PopupWindow} array.
+ @attr name android:popupBackground
+ */
+ public static int PopupWindow_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#overlapAnchor}
+ attribute's value can be found in the {@link #PopupWindow} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:overlapAnchor
+ */
+ public static int PopupWindow_overlapAnchor = 1;
+ /** Attributes that can be used with a PopupWindowBackgroundState.
+
+ @see #PopupWindowBackgroundState_state_above_anchor
+ */
+ public static final int[] PopupWindowBackgroundState = {
+ 0x7f0100ed
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#state_above_anchor}
+ attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:state_above_anchor
+ */
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ /** Attributes that can be used with a RecyclerView.
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #RecyclerView} array.
+ @attr name android:orientation
+ */
+ public static int RecyclerView_android_orientation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layoutManager}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layoutManager
+ */
+ public static int RecyclerView_layoutManager = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#reverseLayout}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:reverseLayout
+ */
+ public static int RecyclerView_reverseLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spanCount}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:spanCount
+ */
+ public static int RecyclerView_spanCount = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#stackFromEnd}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:stackFromEnd
+ */
+ public static int RecyclerView_stackFromEnd = 4;
+ /** Attributes that can be used with a ScrimInsetsFrameLayout.
+
+ @see #ScrimInsetsFrameLayout_insetForeground
+ */
+ public static final int[] ScrimInsetsFrameLayout = {
+ 0x7f0100f2
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#insetForeground}
+ attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:insetForeground
+ */
+ public static int ScrimInsetsFrameLayout_insetForeground = 0;
+ /** Attributes that can be used with a ScrollingViewBehavior_Params.
+
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop
+ */
+ public static final int[] ScrollingViewBehavior_Params = {
+ 0x7f0100f3
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_overlapTop}
+ attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_overlapTop
+ */
+ public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ /** Attributes that can be used with a SearchView.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:focusable
+ */
+ public static int SearchView_android_focusable = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#imeOptions}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:imeOptions
+ */
+ public static int SearchView_android_imeOptions = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inputType}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:inputType
+ */
+ public static int SearchView_android_inputType = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:maxWidth
+ */
+ public static int SearchView_android_maxWidth = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#closeIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:closeIcon
+ */
+ public static int SearchView_closeIcon = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#commitIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:commitIcon
+ */
+ public static int SearchView_commitIcon = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#defaultQueryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:defaultQueryHint
+ */
+ public static int SearchView_defaultQueryHint = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#goIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:goIcon
+ */
+ public static int SearchView_goIcon = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#iconifiedByDefault}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:iconifiedByDefault
+ */
+ public static int SearchView_iconifiedByDefault = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout
+ */
+ public static int SearchView_layout = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#queryBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:queryBackground
+ */
+ public static int SearchView_queryBackground = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#queryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:queryHint
+ */
+ public static int SearchView_queryHint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchHintIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchHintIcon
+ */
+ public static int SearchView_searchHintIcon = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchIcon
+ */
+ public static int SearchView_searchIcon = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#submitBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:submitBackground
+ */
+ public static int SearchView_submitBackground = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#suggestionRowLayout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:suggestionRowLayout
+ */
+ public static int SearchView_suggestionRowLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#voiceIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:voiceIcon
+ */
+ public static int SearchView_voiceIcon = 12;
+ /** Attributes that can be used with a SnackbarLayout.
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+ @attr name android:maxWidth
+ */
+ public static int SnackbarLayout_android_maxWidth = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int SnackbarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#maxActionInlineWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:maxActionInlineWidth
+ */
+ public static int SnackbarLayout_maxActionInlineWidth = 2;
+ /** Attributes that can be used with a Spinner.
+
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownWidth
+ */
+ public static int Spinner_android_dropDownWidth = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#entries}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:entries
+ */
+ public static int Spinner_android_entries = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:popupBackground
+ */
+ public static int Spinner_android_popupBackground = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#prompt}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:prompt
+ */
+ public static int Spinner_android_prompt = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int Spinner_popupTheme = 4;
+ /** Attributes that can be used with a SwitchCompat.
+
This symbol is the offset where the {@link android.R.attr#textOff}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOff
+ */
+ public static int SwitchCompat_android_textOff = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textOn}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOn
+ */
+ public static int SwitchCompat_android_textOn = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#thumb}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:thumb
+ */
+ public static int SwitchCompat_android_thumb = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showText}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:showText
+ */
+ public static int SwitchCompat_showText = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#splitTrack}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:splitTrack
+ */
+ public static int SwitchCompat_splitTrack = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchMinWidth}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:switchMinWidth
+ */
+ public static int SwitchCompat_switchMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:switchPadding
+ */
+ public static int SwitchCompat_switchPadding = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchTextAppearance}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:switchTextAppearance
+ */
+ public static int SwitchCompat_switchTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#thumbTextPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:thumbTextPadding
+ */
+ public static int SwitchCompat_thumbTextPadding = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#track}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:track
+ */
+ public static int SwitchCompat_track = 3;
+ /** Attributes that can be used with a TabItem.
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:icon
+ */
+ public static int TabItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:layout
+ */
+ public static int TabItem_android_layout = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#text}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:text
+ */
+ public static int TabItem_android_text = 2;
+ /** Attributes that can be used with a TabLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabBackground}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:tabBackground
+ */
+ public static int TabLayout_tabBackground = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabContentStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabContentStart
+ */
+ public static int TabLayout_tabContentStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabGravity}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ @attr name com.documentscanner:tabGravity
+ */
+ public static int TabLayout_tabGravity = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabIndicatorColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabIndicatorColor
+ */
+ public static int TabLayout_tabIndicatorColor = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabIndicatorHeight}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabIndicatorHeight
+ */
+ public static int TabLayout_tabIndicatorHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMaxWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabMaxWidth
+ */
+ public static int TabLayout_tabMaxWidth = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMinWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabMinWidth
+ */
+ public static int TabLayout_tabMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMode}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ @attr name com.documentscanner:tabMode
+ */
+ public static int TabLayout_tabMode = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPadding}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPadding
+ */
+ public static int TabLayout_tabPadding = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingBottom}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingBottom
+ */
+ public static int TabLayout_tabPaddingBottom = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingEnd}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingEnd
+ */
+ public static int TabLayout_tabPaddingEnd = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingStart
+ */
+ public static int TabLayout_tabPaddingStart = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingTop}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingTop
+ */
+ public static int TabLayout_tabPaddingTop = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabSelectedTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabSelectedTextColor
+ */
+ public static int TabLayout_tabSelectedTextColor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabTextAppearance}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:tabTextAppearance
+ */
+ public static int TabLayout_tabTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabTextColor
+ */
+ public static int TabLayout_tabTextColor = 9;
+ /** Attributes that can be used with a TextAppearance.
+
This symbol is the offset where the {@link android.R.attr#shadowColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowColor
+ */
+ public static int TextAppearance_android_shadowColor = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDx}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDx
+ */
+ public static int TextAppearance_android_shadowDx = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDy}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDy
+ */
+ public static int TextAppearance_android_shadowDy = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowRadius}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowRadius
+ */
+ public static int TextAppearance_android_shadowRadius = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textColor
+ */
+ public static int TextAppearance_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textSize
+ */
+ public static int TextAppearance_android_textSize = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textStyle
+ */
+ public static int TextAppearance_android_textStyle = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#typeface}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:typeface
+ */
+ public static int TextAppearance_android_typeface = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #TextAppearance} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner:textAllCaps
+ */
+ public static int TextAppearance_textAllCaps = 8;
+ /** Attributes that can be used with a TextInputLayout.
+
This symbol is the offset where the {@link android.R.attr#hint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:hint
+ */
+ public static int TextInputLayout_android_hint = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColorHint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:textColorHint
+ */
+ public static int TextInputLayout_android_textColorHint = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:counterEnabled
+ */
+ public static int TextInputLayout_counterEnabled = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterMaxLength}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:counterMaxLength
+ */
+ public static int TextInputLayout_counterMaxLength = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterOverflowTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:counterOverflowTextAppearance
+ */
+ public static int TextInputLayout_counterOverflowTextAppearance = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:counterTextAppearance
+ */
+ public static int TextInputLayout_counterTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#errorEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:errorEnabled
+ */
+ public static int TextInputLayout_errorEnabled = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#errorTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:errorTextAppearance
+ */
+ public static int TextInputLayout_errorTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintAnimationEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hintAnimationEnabled
+ */
+ public static int TextInputLayout_hintAnimationEnabled = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hintEnabled
+ */
+ public static int TextInputLayout_hintEnabled = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:hintTextAppearance
+ */
+ public static int TextInputLayout_hintTextAppearance = 2;
+ /** Attributes that can be used with a Toolbar.
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:gravity
+ */
+ public static int Toolbar_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#minHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:minHeight
+ */
+ public static int Toolbar_android_minHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapseContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:collapseContentDescription
+ */
+ public static int Toolbar_collapseContentDescription = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapseIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:collapseIcon
+ */
+ public static int Toolbar_collapseIcon = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetEnd
+ */
+ public static int Toolbar_contentInsetEnd = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetLeft
+ */
+ public static int Toolbar_contentInsetLeft = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetRight
+ */
+ public static int Toolbar_contentInsetRight = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetStart
+ */
+ public static int Toolbar_contentInsetStart = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logo}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:logo
+ */
+ public static int Toolbar_logo = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logoDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:logoDescription
+ */
+ public static int Toolbar_logoDescription = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#maxButtonHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:maxButtonHeight
+ */
+ public static int Toolbar_maxButtonHeight = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:navigationContentDescription
+ */
+ public static int Toolbar_navigationContentDescription = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:navigationIcon
+ */
+ public static int Toolbar_navigationIcon = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int Toolbar_popupTheme = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitle}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitle
+ */
+ public static int Toolbar_subtitle = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextAppearance
+ */
+ public static int Toolbar_subtitleTextAppearance = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitleTextColor
+ */
+ public static int Toolbar_subtitleTextColor = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int Toolbar_title = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginBottom}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginBottom
+ */
+ public static int Toolbar_titleMarginBottom = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginEnd
+ */
+ public static int Toolbar_titleMarginEnd = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginStart
+ */
+ public static int Toolbar_titleMarginStart = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginTop}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginTop
+ */
+ public static int Toolbar_titleMarginTop = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMargins}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMargins
+ */
+ public static int Toolbar_titleMargins = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextAppearance
+ */
+ public static int Toolbar_titleTextAppearance = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleTextColor
+ */
+ public static int Toolbar_titleTextColor = 23;
+ /** Attributes that can be used with a View.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:focusable
+ */
+ public static int View_android_focusable = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:theme
+ */
+ public static int View_android_theme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#paddingEnd}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:paddingEnd
+ */
+ public static int View_paddingEnd = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#paddingStart}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:paddingStart
+ */
+ public static int View_paddingStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:theme
+ */
+ public static int View_theme = 4;
+ /** Attributes that can be used with a ViewBackgroundHelper.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+ @attr name android:background
+ */
+ public static int ViewBackgroundHelper_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:backgroundTint
+ */
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:backgroundTintMode
+ */
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ /** Attributes that can be used with a ViewStubCompat.
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:id
+ */
+ public static int ViewStubCompat_android_id = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inflatedId}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:inflatedId
+ */
+ public static int ViewStubCompat_android_inflatedId = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:layout
+ */
+ public static int ViewStubCompat_android_layout = 1;
+ };
+}
diff --git a/android/build/generated/source/r/debug/com/facebook/drawee/R.java b/android/build/generated/source/r/debug/com/facebook/drawee/R.java
new file mode 100644
index 000000000..b21e1a585
--- /dev/null
+++ b/android/build/generated/source/r/debug/com/facebook/drawee/R.java
@@ -0,0 +1,74 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee;
+
+public final class R {
+ public static final class attr {
+ public static int actualImageScaleType = 0x7f0100d1;
+ public static int backgroundImage = 0x7f0100d2;
+ public static int fadeDuration = 0x7f0100c6;
+ public static int failureImage = 0x7f0100cc;
+ public static int failureImageScaleType = 0x7f0100cd;
+ public static int overlayImage = 0x7f0100d3;
+ public static int placeholderImage = 0x7f0100c8;
+ public static int placeholderImageScaleType = 0x7f0100c9;
+ public static int pressedStateOverlayImage = 0x7f0100d4;
+ public static int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static int progressBarImage = 0x7f0100ce;
+ public static int progressBarImageScaleType = 0x7f0100cf;
+ public static int retryImage = 0x7f0100ca;
+ public static int retryImageScaleType = 0x7f0100cb;
+ public static int roundAsCircle = 0x7f0100d5;
+ public static int roundBottomLeft = 0x7f0100da;
+ public static int roundBottomRight = 0x7f0100d9;
+ public static int roundTopLeft = 0x7f0100d7;
+ public static int roundTopRight = 0x7f0100d8;
+ public static int roundWithOverlayColor = 0x7f0100db;
+ public static int roundedCornerRadius = 0x7f0100d6;
+ public static int roundingBorderColor = 0x7f0100dd;
+ public static int roundingBorderWidth = 0x7f0100dc;
+ public static int viewAspectRatio = 0x7f0100c7;
+ }
+ public static final class id {
+ public static int center = 0x7f0d0021;
+ public static int centerCrop = 0x7f0d0034;
+ public static int centerInside = 0x7f0d0035;
+ public static int fitCenter = 0x7f0d0036;
+ public static int fitEnd = 0x7f0d0037;
+ public static int fitStart = 0x7f0d0038;
+ public static int fitXY = 0x7f0d0039;
+ public static int focusCrop = 0x7f0d003a;
+ public static int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static int GenericDraweeView_actualImageScaleType = 11;
+ public static int GenericDraweeView_backgroundImage = 12;
+ public static int GenericDraweeView_fadeDuration = 0;
+ public static int GenericDraweeView_failureImage = 6;
+ public static int GenericDraweeView_failureImageScaleType = 7;
+ public static int GenericDraweeView_overlayImage = 13;
+ public static int GenericDraweeView_placeholderImage = 2;
+ public static int GenericDraweeView_placeholderImageScaleType = 3;
+ public static int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static int GenericDraweeView_progressBarImage = 8;
+ public static int GenericDraweeView_progressBarImageScaleType = 9;
+ public static int GenericDraweeView_retryImage = 4;
+ public static int GenericDraweeView_retryImageScaleType = 5;
+ public static int GenericDraweeView_roundAsCircle = 15;
+ public static int GenericDraweeView_roundBottomLeft = 20;
+ public static int GenericDraweeView_roundBottomRight = 19;
+ public static int GenericDraweeView_roundTopLeft = 17;
+ public static int GenericDraweeView_roundTopRight = 18;
+ public static int GenericDraweeView_roundWithOverlayColor = 21;
+ public static int GenericDraweeView_roundedCornerRadius = 16;
+ public static int GenericDraweeView_roundingBorderColor = 23;
+ public static int GenericDraweeView_roundingBorderWidth = 22;
+ public static int GenericDraweeView_viewAspectRatio = 1;
+ }
+}
diff --git a/android/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java b/android/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java
new file mode 100644
index 000000000..f2cc6cb78
--- /dev/null
+++ b/android/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java
@@ -0,0 +1,74 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee.backends.pipeline;
+
+public final class R {
+ public static final class attr {
+ public static int actualImageScaleType = 0x7f0100d1;
+ public static int backgroundImage = 0x7f0100d2;
+ public static int fadeDuration = 0x7f0100c6;
+ public static int failureImage = 0x7f0100cc;
+ public static int failureImageScaleType = 0x7f0100cd;
+ public static int overlayImage = 0x7f0100d3;
+ public static int placeholderImage = 0x7f0100c8;
+ public static int placeholderImageScaleType = 0x7f0100c9;
+ public static int pressedStateOverlayImage = 0x7f0100d4;
+ public static int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static int progressBarImage = 0x7f0100ce;
+ public static int progressBarImageScaleType = 0x7f0100cf;
+ public static int retryImage = 0x7f0100ca;
+ public static int retryImageScaleType = 0x7f0100cb;
+ public static int roundAsCircle = 0x7f0100d5;
+ public static int roundBottomLeft = 0x7f0100da;
+ public static int roundBottomRight = 0x7f0100d9;
+ public static int roundTopLeft = 0x7f0100d7;
+ public static int roundTopRight = 0x7f0100d8;
+ public static int roundWithOverlayColor = 0x7f0100db;
+ public static int roundedCornerRadius = 0x7f0100d6;
+ public static int roundingBorderColor = 0x7f0100dd;
+ public static int roundingBorderWidth = 0x7f0100dc;
+ public static int viewAspectRatio = 0x7f0100c7;
+ }
+ public static final class id {
+ public static int center = 0x7f0d0021;
+ public static int centerCrop = 0x7f0d0034;
+ public static int centerInside = 0x7f0d0035;
+ public static int fitCenter = 0x7f0d0036;
+ public static int fitEnd = 0x7f0d0037;
+ public static int fitStart = 0x7f0d0038;
+ public static int fitXY = 0x7f0d0039;
+ public static int focusCrop = 0x7f0d003a;
+ public static int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static int GenericDraweeView_actualImageScaleType = 11;
+ public static int GenericDraweeView_backgroundImage = 12;
+ public static int GenericDraweeView_fadeDuration = 0;
+ public static int GenericDraweeView_failureImage = 6;
+ public static int GenericDraweeView_failureImageScaleType = 7;
+ public static int GenericDraweeView_overlayImage = 13;
+ public static int GenericDraweeView_placeholderImage = 2;
+ public static int GenericDraweeView_placeholderImageScaleType = 3;
+ public static int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static int GenericDraweeView_progressBarImage = 8;
+ public static int GenericDraweeView_progressBarImageScaleType = 9;
+ public static int GenericDraweeView_retryImage = 4;
+ public static int GenericDraweeView_retryImageScaleType = 5;
+ public static int GenericDraweeView_roundAsCircle = 15;
+ public static int GenericDraweeView_roundBottomLeft = 20;
+ public static int GenericDraweeView_roundBottomRight = 19;
+ public static int GenericDraweeView_roundTopLeft = 17;
+ public static int GenericDraweeView_roundTopRight = 18;
+ public static int GenericDraweeView_roundWithOverlayColor = 21;
+ public static int GenericDraweeView_roundedCornerRadius = 16;
+ public static int GenericDraweeView_roundingBorderColor = 23;
+ public static int GenericDraweeView_roundingBorderWidth = 22;
+ public static int GenericDraweeView_viewAspectRatio = 1;
+ }
+}
diff --git a/android/build/generated/source/r/debug/com/facebook/react/R.java b/android/build/generated/source/r/debug/com/facebook/react/R.java
new file mode 100644
index 000000000..1ba354441
--- /dev/null
+++ b/android/build/generated/source/r/debug/com/facebook/react/R.java
@@ -0,0 +1,1219 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.react;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ public static int catalyst_push_up_in = 0x7f05000a;
+ public static int catalyst_push_up_out = 0x7f05000b;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int actualImageScaleType = 0x7f0100d1;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundImage = 0x7f0100d2;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int controlBackground = 0x7f010081;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int fadeDuration = 0x7f0100c6;
+ public static int failureImage = 0x7f0100cc;
+ public static int failureImageScaleType = 0x7f0100cd;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemPadding = 0x7f010014;
+ public static int layout = 0x7f0100f4;
+ public static int layoutManager = 0x7f0100ee;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int overlayImage = 0x7f0100d3;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int placeholderImage = 0x7f0100c8;
+ public static int placeholderImageScaleType = 0x7f0100c9;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int pressedStateOverlayImage = 0x7f0100d4;
+ public static int progressBarAutoRotateInterval = 0x7f0100d0;
+ public static int progressBarImage = 0x7f0100ce;
+ public static int progressBarImageScaleType = 0x7f0100cf;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int retryImage = 0x7f0100ca;
+ public static int retryImageScaleType = 0x7f0100cb;
+ public static int reverseLayout = 0x7f0100f0;
+ public static int roundAsCircle = 0x7f0100d5;
+ public static int roundBottomLeft = 0x7f0100da;
+ public static int roundBottomRight = 0x7f0100d9;
+ public static int roundTopLeft = 0x7f0100d7;
+ public static int roundTopRight = 0x7f0100d8;
+ public static int roundWithOverlayColor = 0x7f0100db;
+ public static int roundedCornerRadius = 0x7f0100d6;
+ public static int roundingBorderColor = 0x7f0100dd;
+ public static int roundingBorderWidth = 0x7f0100dc;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spanCount = 0x7f0100ef;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int stackFromEnd = 0x7f0100f1;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int viewAspectRatio = 0x7f0100c7;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int catalyst_redbox_background = 0x7f0c0013;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int catalyst_redbox_title = 0x7f0d0099;
+ public static int center = 0x7f0d0021;
+ public static int centerCrop = 0x7f0d0034;
+ public static int centerInside = 0x7f0d0035;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int fitCenter = 0x7f0d0036;
+ public static int fitEnd = 0x7f0d0037;
+ public static int fitStart = 0x7f0d0038;
+ public static int fitXY = 0x7f0d0039;
+ public static int focusCrop = 0x7f0d003a;
+ public static int fps_text = 0x7f0d0086;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int multiply = 0x7f0d002a;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parentPanel = 0x7f0d0050;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int rn_frame_file = 0x7f0d0098;
+ public static int rn_frame_method = 0x7f0d0097;
+ public static int rn_redbox_reloadjs = 0x7f0d009b;
+ public static int rn_redbox_stack = 0x7f0d009a;
+ public static int screen = 0x7f0d002b;
+ public static int scrollView = 0x7f0d0056;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int topPanel = 0x7f0d0051;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int fps_view = 0x7f04002b;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int redbox_item_frame = 0x7f040036;
+ public static int redbox_item_title = 0x7f040037;
+ public static int redbox_view = 0x7f040038;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int catalyst_debugjs = 0x7f070028;
+ public static int catalyst_debugjs_off = 0x7f07005c;
+ public static int catalyst_element_inspector = 0x7f070029;
+ public static int catalyst_element_inspector_off = 0x7f07005d;
+ public static int catalyst_hot_module_replacement = 0x7f07005e;
+ public static int catalyst_hot_module_replacement_off = 0x7f07005f;
+ public static int catalyst_jsload_error = 0x7f07002a;
+ public static int catalyst_jsload_message = 0x7f07002b;
+ public static int catalyst_jsload_title = 0x7f07002c;
+ public static int catalyst_live_reload = 0x7f070060;
+ public static int catalyst_live_reload_off = 0x7f070061;
+ public static int catalyst_perf_monitor = 0x7f070062;
+ public static int catalyst_perf_monitor_off = 0x7f070063;
+ public static int catalyst_reloadjs = 0x7f07002d;
+ public static int catalyst_remotedbg_error = 0x7f070064;
+ public static int catalyst_remotedbg_message = 0x7f070065;
+ public static int catalyst_settings = 0x7f07002e;
+ public static int catalyst_settings_title = 0x7f07002f;
+ public static int catalyst_start_profile = 0x7f070066;
+ public static int catalyst_stop_profile = 0x7f070067;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Animation_Catalyst_RedBox = 0x7f0a008c;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int Theme = 0x7f0a00f5;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Theme_Catalyst = 0x7f0a0104;
+ public static int Theme_Catalyst_RedBox = 0x7f0a0105;
+ public static int Theme_ReactNative_AppCompat_Light = 0x7f0a010c;
+ public static int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0a010d;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] GenericDraweeView = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd };
+ public static int GenericDraweeView_actualImageScaleType = 11;
+ public static int GenericDraweeView_backgroundImage = 12;
+ public static int GenericDraweeView_fadeDuration = 0;
+ public static int GenericDraweeView_failureImage = 6;
+ public static int GenericDraweeView_failureImageScaleType = 7;
+ public static int GenericDraweeView_overlayImage = 13;
+ public static int GenericDraweeView_placeholderImage = 2;
+ public static int GenericDraweeView_placeholderImageScaleType = 3;
+ public static int GenericDraweeView_pressedStateOverlayImage = 14;
+ public static int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ public static int GenericDraweeView_progressBarImage = 8;
+ public static int GenericDraweeView_progressBarImageScaleType = 9;
+ public static int GenericDraweeView_retryImage = 4;
+ public static int GenericDraweeView_retryImageScaleType = 5;
+ public static int GenericDraweeView_roundAsCircle = 15;
+ public static int GenericDraweeView_roundBottomLeft = 20;
+ public static int GenericDraweeView_roundBottomRight = 19;
+ public static int GenericDraweeView_roundTopLeft = 17;
+ public static int GenericDraweeView_roundTopRight = 18;
+ public static int GenericDraweeView_roundWithOverlayColor = 21;
+ public static int GenericDraweeView_roundedCornerRadius = 16;
+ public static int GenericDraweeView_roundingBorderColor = 23;
+ public static int GenericDraweeView_roundingBorderWidth = 22;
+ public static int GenericDraweeView_viewAspectRatio = 1;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static int RecyclerView_android_orientation = 0;
+ public static int RecyclerView_layoutManager = 1;
+ public static int RecyclerView_reverseLayout = 3;
+ public static int RecyclerView_spanCount = 2;
+ public static int RecyclerView_stackFromEnd = 4;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+ public static final class xml {
+ public static int preferences = 0x7f060000;
+ }
+}
diff --git a/android/build/generated/source/r/debug/org/opencv/R.java b/android/build/generated/source/r/debug/org/opencv/R.java
new file mode 100644
index 000000000..1fa359297
--- /dev/null
+++ b/android/build/generated/source/r/debug/org/opencv/R.java
@@ -0,0 +1,24 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.opencv;
+
+public final class R {
+ public static final class attr {
+ public static int camera_id = 0x7f01009d;
+ public static int show_fps = 0x7f01009c;
+ }
+ public static final class id {
+ public static int any = 0x7f0d001b;
+ public static int back = 0x7f0d001c;
+ public static int front = 0x7f0d001d;
+ }
+ public static final class styleable {
+ public static int[] CameraBridgeViewBase = { 0x7f01009c, 0x7f01009d };
+ public static int CameraBridgeViewBase_camera_id = 1;
+ public static int CameraBridgeViewBase_show_fps = 0;
+ }
+}
diff --git a/android/build/generated/source/r/debug/org/webkit/android_jsc/R.java b/android/build/generated/source/r/debug/org/webkit/android_jsc/R.java
new file mode 100644
index 000000000..2a9140d87
--- /dev/null
+++ b/android/build/generated/source/r/debug/org/webkit/android_jsc/R.java
@@ -0,0 +1,10 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.webkit.android_jsc;
+
+public final class R {
+}
diff --git a/android/build/generated/source/r/debug/us/feras/mdv/R.java b/android/build/generated/source/r/debug/us/feras/mdv/R.java
new file mode 100644
index 000000000..a1cde5037
--- /dev/null
+++ b/android/build/generated/source/r/debug/us/feras/mdv/R.java
@@ -0,0 +1,1145 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package us.feras.mdv;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int allowStacking = 0x7f01009b;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int controlBackground = 0x7f010081;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int imageButtonStyle = 0x7f010067;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemPadding = 0x7f010014;
+ public static int layout = 0x7f0100f4;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int seekBarStyle = 0x7f010094;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_allow_stacked_button_bar = 0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_fixed_height_major = 0x7f090006;
+ public static int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static int abc_dialog_fixed_width_major = 0x7f090008;
+ public static int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static int abc_seekbar_thumb_material = 0x7f02003d;
+ public static int abc_seekbar_track_material = 0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int multiply = 0x7f0d002a;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parentPanel = 0x7f0d0050;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int screen = 0x7f0d002b;
+ public static int scrollIndicatorDown = 0x7f0d0058;
+ public static int scrollIndicatorUp = 0x7f0d0055;
+ public static int scrollView = 0x7f0d0056;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int spacer = 0x7f0d004f;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int topPanel = 0x7f0d0051;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_capital_off = 0x7f070008;
+ public static int abc_capital_on = 0x7f070009;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int app_name = 0x7f07001e;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] ButtonBarLayout = { 0x7f01009b };
+ public static int ButtonBarLayout_allowStacking = 0;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_shadowColor = 4;
+ public static int TextAppearance_android_shadowDx = 5;
+ public static int TextAppearance_android_shadowDy = 6;
+ public static int TextAppearance_android_shadowRadius = 7;
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/release/android/support/design/R.java b/android/build/generated/source/r/release/android/support/design/R.java
new file mode 100644
index 000000000..6d3a98515
--- /dev/null
+++ b/android/build/generated/source/r/release/android/support/design/R.java
@@ -0,0 +1,1592 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.design;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ public static int design_bottom_sheet_slide_in = 0x7f05000c;
+ public static int design_bottom_sheet_slide_out = 0x7f05000d;
+ public static int design_fab_in = 0x7f05000e;
+ public static int design_fab_out = 0x7f05000f;
+ public static int design_snackbar_in = 0x7f050010;
+ public static int design_snackbar_out = 0x7f050011;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int allowStacking = 0x7f01009b;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int behavior_hideable = 0x7f010098;
+ public static int behavior_overlapTop = 0x7f0100f3;
+ public static int behavior_peekHeight = 0x7f010097;
+ public static int borderWidth = 0x7f0100c3;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int bottomSheetDialogTheme = 0x7f0100b5;
+ public static int bottomSheetStyle = 0x7f0100b6;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int collapsedTitleGravity = 0x7f0100aa;
+ public static int collapsedTitleTextAppearance = 0x7f0100a6;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int contentScrim = 0x7f0100a7;
+ public static int controlBackground = 0x7f010081;
+ public static int counterEnabled = 0x7f01011d;
+ public static int counterMaxLength = 0x7f01011e;
+ public static int counterOverflowTextAppearance = 0x7f010120;
+ public static int counterTextAppearance = 0x7f01011f;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int errorEnabled = 0x7f01011b;
+ public static int errorTextAppearance = 0x7f01011c;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int expanded = 0x7f010024;
+ public static int expandedTitleGravity = 0x7f0100ab;
+ public static int expandedTitleMargin = 0x7f0100a0;
+ public static int expandedTitleMarginBottom = 0x7f0100a4;
+ public static int expandedTitleMarginEnd = 0x7f0100a3;
+ public static int expandedTitleMarginStart = 0x7f0100a1;
+ public static int expandedTitleMarginTop = 0x7f0100a2;
+ public static int expandedTitleTextAppearance = 0x7f0100a5;
+ public static int fabSize = 0x7f0100c1;
+ public static int foregroundInsidePadding = 0x7f0100c5;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int headerLayout = 0x7f0100eb;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int hintAnimationEnabled = 0x7f010121;
+ public static int hintEnabled = 0x7f01011a;
+ public static int hintTextAppearance = 0x7f010119;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int imageButtonStyle = 0x7f010067;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int insetForeground = 0x7f0100f2;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemBackground = 0x7f0100e9;
+ public static int itemIconTint = 0x7f0100e7;
+ public static int itemPadding = 0x7f010014;
+ public static int itemTextAppearance = 0x7f0100ea;
+ public static int itemTextColor = 0x7f0100e8;
+ public static int keylines = 0x7f0100af;
+ public static int layout = 0x7f0100f4;
+ public static int layoutManager = 0x7f0100ee;
+ public static int layout_anchor = 0x7f0100b2;
+ public static int layout_anchorGravity = 0x7f0100b4;
+ public static int layout_behavior = 0x7f0100b1;
+ public static int layout_collapseMode = 0x7f01009e;
+ public static int layout_collapseParallaxMultiplier = 0x7f01009f;
+ public static int layout_keyline = 0x7f0100b3;
+ public static int layout_scrollFlags = 0x7f010025;
+ public static int layout_scrollInterpolator = 0x7f010026;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxActionInlineWidth = 0x7f010101;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int menu = 0x7f0100e6;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int pressedTranslationZ = 0x7f0100c2;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int ratingBarStyleIndicator = 0x7f010092;
+ public static int ratingBarStyleSmall = 0x7f010093;
+ public static int reverseLayout = 0x7f0100f0;
+ public static int rippleColor = 0x7f0100c0;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int seekBarStyle = 0x7f010094;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spanCount = 0x7f0100ef;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int srcCompat = 0x7f010027;
+ public static int stackFromEnd = 0x7f0100f1;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int statusBarBackground = 0x7f0100b0;
+ public static int statusBarScrim = 0x7f0100a8;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int tabBackground = 0x7f01010c;
+ public static int tabContentStart = 0x7f01010b;
+ public static int tabGravity = 0x7f01010e;
+ public static int tabIndicatorColor = 0x7f010109;
+ public static int tabIndicatorHeight = 0x7f01010a;
+ public static int tabMaxWidth = 0x7f010110;
+ public static int tabMinWidth = 0x7f01010f;
+ public static int tabMode = 0x7f01010d;
+ public static int tabPadding = 0x7f010118;
+ public static int tabPaddingBottom = 0x7f010117;
+ public static int tabPaddingEnd = 0x7f010116;
+ public static int tabPaddingStart = 0x7f010114;
+ public static int tabPaddingTop = 0x7f010115;
+ public static int tabSelectedTextColor = 0x7f010113;
+ public static int tabTextAppearance = 0x7f010111;
+ public static int tabTextColor = 0x7f010112;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorError = 0x7f0100b7;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleEnabled = 0x7f0100ac;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarId = 0x7f0100a9;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int useCompatPadding = 0x7f0100c4;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_allow_stacked_button_bar = 0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int design_fab_shadow_end_color = 0x7f0c0017;
+ public static int design_fab_shadow_mid_color = 0x7f0c0018;
+ public static int design_fab_shadow_start_color = 0x7f0c0019;
+ public static int design_fab_stroke_end_inner_color = 0x7f0c001a;
+ public static int design_fab_stroke_end_outer_color = 0x7f0c001b;
+ public static int design_fab_stroke_top_inner_color = 0x7f0c001c;
+ public static int design_fab_stroke_top_outer_color = 0x7f0c001d;
+ public static int design_snackbar_background_color = 0x7f0c001e;
+ public static int design_textinput_error_color_dark = 0x7f0c001f;
+ public static int design_textinput_error_color_light = 0x7f0c0020;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_fixed_height_major = 0x7f090006;
+ public static int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static int abc_dialog_fixed_width_major = 0x7f090008;
+ public static int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int design_appbar_elevation = 0x7f09004d;
+ public static int design_bottom_sheet_modal_elevation = 0x7f09004e;
+ public static int design_bottom_sheet_modal_peek_height = 0x7f09004f;
+ public static int design_fab_border_width = 0x7f090050;
+ public static int design_fab_elevation = 0x7f090051;
+ public static int design_fab_image_size = 0x7f090052;
+ public static int design_fab_size_mini = 0x7f090053;
+ public static int design_fab_size_normal = 0x7f090054;
+ public static int design_fab_translation_z_pressed = 0x7f090055;
+ public static int design_navigation_elevation = 0x7f090056;
+ public static int design_navigation_icon_padding = 0x7f090057;
+ public static int design_navigation_icon_size = 0x7f090058;
+ public static int design_navigation_max_width = 0x7f090010;
+ public static int design_navigation_padding_bottom = 0x7f090059;
+ public static int design_navigation_separator_vertical_padding = 0x7f09005a;
+ public static int design_snackbar_action_inline_max_width = 0x7f090011;
+ public static int design_snackbar_background_corner_radius = 0x7f090012;
+ public static int design_snackbar_elevation = 0x7f09005b;
+ public static int design_snackbar_extra_spacing_horizontal = 0x7f090013;
+ public static int design_snackbar_max_width = 0x7f090014;
+ public static int design_snackbar_min_width = 0x7f090015;
+ public static int design_snackbar_padding_horizontal = 0x7f09005c;
+ public static int design_snackbar_padding_vertical = 0x7f09005d;
+ public static int design_snackbar_padding_vertical_2lines = 0x7f090016;
+ public static int design_snackbar_text_size = 0x7f09005e;
+ public static int design_tab_max_width = 0x7f09005f;
+ public static int design_tab_scrollable_min_width = 0x7f090017;
+ public static int design_tab_text_size = 0x7f090060;
+ public static int design_tab_text_size_2line = 0x7f090061;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_star_black_16dp = 0x7f020021;
+ public static int abc_ic_star_black_36dp = 0x7f020022;
+ public static int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_ratingbar_indicator_material = 0x7f020036;
+ public static int abc_ratingbar_small_material = 0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static int abc_seekbar_thumb_material = 0x7f02003d;
+ public static int abc_seekbar_track_material = 0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int design_fab_background = 0x7f02004d;
+ public static int design_snackbar_background = 0x7f02004e;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int bottom = 0x7f0d0020;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int center = 0x7f0d0021;
+ public static int center_horizontal = 0x7f0d0022;
+ public static int center_vertical = 0x7f0d0023;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int clip_horizontal = 0x7f0d002f;
+ public static int clip_vertical = 0x7f0d0030;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int design_bottom_sheet = 0x7f0d007e;
+ public static int design_menu_item_action_area = 0x7f0d0085;
+ public static int design_menu_item_action_area_stub = 0x7f0d0084;
+ public static int design_menu_item_text = 0x7f0d0083;
+ public static int design_navigation_view = 0x7f0d0082;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int enterAlways = 0x7f0d0015;
+ public static int enterAlwaysCollapsed = 0x7f0d0016;
+ public static int exitUntilCollapsed = 0x7f0d0017;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int fill = 0x7f0d0031;
+ public static int fill_horizontal = 0x7f0d0032;
+ public static int fill_vertical = 0x7f0d0025;
+ public static int fixed = 0x7f0d0042;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int item_touch_helper_previous_elevation = 0x7f0d0005;
+ public static int left = 0x7f0d0026;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int mini = 0x7f0d0033;
+ public static int multiply = 0x7f0d002a;
+ public static int navigation_header_container = 0x7f0d0081;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parallax = 0x7f0d001e;
+ public static int parentPanel = 0x7f0d0050;
+ public static int pin = 0x7f0d001f;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int right = 0x7f0d0027;
+ public static int screen = 0x7f0d002b;
+ public static int scroll = 0x7f0d0018;
+ public static int scrollIndicatorDown = 0x7f0d0058;
+ public static int scrollIndicatorUp = 0x7f0d0055;
+ public static int scrollView = 0x7f0d0056;
+ public static int scrollable = 0x7f0d0043;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int snackbar_action = 0x7f0d0080;
+ public static int snackbar_text = 0x7f0d007f;
+ public static int snap = 0x7f0d0019;
+ public static int spacer = 0x7f0d004f;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int start = 0x7f0d0028;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int top = 0x7f0d0029;
+ public static int topPanel = 0x7f0d0051;
+ public static int touch_outside = 0x7f0d007d;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int view_offset_helper = 0x7f0d000a;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int bottom_sheet_slide_duration = 0x7f0b0004;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int design_snackbar_text_max_lines = 0x7f0b0001;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int design_bottom_sheet_dialog = 0x7f04001f;
+ public static int design_layout_snackbar = 0x7f040020;
+ public static int design_layout_snackbar_include = 0x7f040021;
+ public static int design_layout_tab_icon = 0x7f040022;
+ public static int design_layout_tab_text = 0x7f040023;
+ public static int design_menu_item_action_area = 0x7f040024;
+ public static int design_navigation_item = 0x7f040025;
+ public static int design_navigation_item_header = 0x7f040026;
+ public static int design_navigation_item_separator = 0x7f040027;
+ public static int design_navigation_item_subheader = 0x7f040028;
+ public static int design_navigation_menu = 0x7f040029;
+ public static int design_navigation_menu_item = 0x7f04002a;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_capital_off = 0x7f070008;
+ public static int abc_capital_on = 0x7f070009;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int appbar_scrolling_view_behavior = 0x7f07005a;
+ public static int bottom_sheet_behavior = 0x7f07005b;
+ public static int character_counter_pattern = 0x7f070068;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Animation_Design_BottomSheetDialog = 0x7f0a008d;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Base_Widget_Design_TabLayout = 0x7f0a00bd;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0a00eb;
+ public static int TextAppearance_Design_Counter = 0x7f0a00ec;
+ public static int TextAppearance_Design_Counter_Overflow = 0x7f0a00ed;
+ public static int TextAppearance_Design_Error = 0x7f0a00ee;
+ public static int TextAppearance_Design_Hint = 0x7f0a00ef;
+ public static int TextAppearance_Design_Snackbar_Message = 0x7f0a00f0;
+ public static int TextAppearance_Design_Tab = 0x7f0a00f1;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Theme_Design = 0x7f0a0106;
+ public static int Theme_Design_BottomSheetDialog = 0x7f0a0107;
+ public static int Theme_Design_Light = 0x7f0a0108;
+ public static int Theme_Design_Light_BottomSheetDialog = 0x7f0a0109;
+ public static int Theme_Design_Light_NoActionBar = 0x7f0a010a;
+ public static int Theme_Design_NoActionBar = 0x7f0a010b;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ public static int Widget_Design_AppBarLayout = 0x7f0a0159;
+ public static int Widget_Design_BottomSheet_Modal = 0x7f0a015a;
+ public static int Widget_Design_CollapsingToolbar = 0x7f0a015b;
+ public static int Widget_Design_CoordinatorLayout = 0x7f0a015c;
+ public static int Widget_Design_FloatingActionButton = 0x7f0a015d;
+ public static int Widget_Design_NavigationView = 0x7f0a015e;
+ public static int Widget_Design_ScrimInsetsFrameLayout = 0x7f0a015f;
+ public static int Widget_Design_Snackbar = 0x7f0a0160;
+ public static int Widget_Design_TabLayout = 0x7f0a0001;
+ public static int Widget_Design_TextInputLayout = 0x7f0a0161;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 };
+ public static int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 };
+ public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ public static int AppBarLayout_android_background = 0;
+ public static int AppBarLayout_elevation = 1;
+ public static int AppBarLayout_expanded = 2;
+ public static int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static int AppCompatImageView_android_src = 0;
+ public static int AppCompatImageView_srcCompat = 1;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static int AppCompatTheme_actionBarDivider = 23;
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ public static int AppCompatTheme_actionBarSize = 22;
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ public static int AppCompatTheme_actionBarStyle = 18;
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static int AppCompatTheme_actionBarTheme = 20;
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ public static int AppCompatTheme_actionModeBackground = 29;
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ public static int AppCompatTheme_actionModeStyle = 27;
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ public static int AppCompatTheme_buttonStyle = 100;
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ public static int AppCompatTheme_checkboxStyle = 102;
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ public static int AppCompatTheme_colorAccent = 84;
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ public static int AppCompatTheme_colorControlActivated = 86;
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ public static int AppCompatTheme_colorControlNormal = 85;
+ public static int AppCompatTheme_colorPrimary = 82;
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static int AppCompatTheme_controlBackground = 90;
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ public static int AppCompatTheme_dialogTheme = 42;
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ public static int AppCompatTheme_dividerVertical = 55;
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static int AppCompatTheme_editTextBackground = 63;
+ public static int AppCompatTheme_editTextColor = 62;
+ public static int AppCompatTheme_editTextStyle = 104;
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static int AppCompatTheme_panelBackground = 78;
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static int AppCompatTheme_searchViewStyle = 68;
+ public static int AppCompatTheme_seekBarStyle = 109;
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static int AppCompatTheme_spinnerStyle = 110;
+ public static int AppCompatTheme_switchStyle = 111;
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static int AppCompatTheme_toolbarStyle = 58;
+ public static int AppCompatTheme_windowActionBar = 2;
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ public static int AppCompatTheme_windowNoTitle = 3;
+ public static int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 };
+ public static int BottomSheetBehavior_Params_behavior_hideable = 1;
+ public static int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ public static int[] ButtonBarLayout = { 0x7f01009b };
+ public static int ButtonBarLayout_allowStacking = 0;
+ public static int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009e, 0x7f01009f };
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ public static int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac };
+ public static int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ public static int CollapsingToolbarLayout_contentScrim = 8;
+ public static int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ public static int CollapsingToolbarLayout_statusBarScrim = 9;
+ public static int CollapsingToolbarLayout_title = 0;
+ public static int CollapsingToolbarLayout_titleEnabled = 13;
+ public static int CollapsingToolbarLayout_toolbarId = 10;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] CoordinatorLayout = { 0x7f0100af, 0x7f0100b0 };
+ public static int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 };
+ public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ public static int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ public static int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ public static int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ public static int CoordinatorLayout_keylines = 0;
+ public static int CoordinatorLayout_statusBarBackground = 1;
+ public static int[] DesignTheme = { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 };
+ public static int DesignTheme_bottomSheetDialogTheme = 0;
+ public static int DesignTheme_bottomSheetStyle = 1;
+ public static int DesignTheme_textColorError = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] FloatingActionButton = { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 };
+ public static int FloatingActionButton_backgroundTint = 6;
+ public static int FloatingActionButton_backgroundTintMode = 7;
+ public static int FloatingActionButton_borderWidth = 4;
+ public static int FloatingActionButton_elevation = 0;
+ public static int FloatingActionButton_fabSize = 2;
+ public static int FloatingActionButton_pressedTranslationZ = 3;
+ public static int FloatingActionButton_rippleColor = 1;
+ public static int FloatingActionButton_useCompatPadding = 5;
+ public static int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c5 };
+ public static int ForegroundLinearLayout_android_foreground = 0;
+ public static int ForegroundLinearLayout_android_foregroundGravity = 1;
+ public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb };
+ public static int NavigationView_android_background = 0;
+ public static int NavigationView_android_fitsSystemWindows = 1;
+ public static int NavigationView_android_maxWidth = 2;
+ public static int NavigationView_elevation = 3;
+ public static int NavigationView_headerLayout = 9;
+ public static int NavigationView_itemBackground = 7;
+ public static int NavigationView_itemIconTint = 5;
+ public static int NavigationView_itemTextAppearance = 8;
+ public static int NavigationView_itemTextColor = 6;
+ public static int NavigationView_menu = 4;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static int RecyclerView_android_orientation = 0;
+ public static int RecyclerView_layoutManager = 1;
+ public static int RecyclerView_reverseLayout = 3;
+ public static int RecyclerView_spanCount = 2;
+ public static int RecyclerView_stackFromEnd = 4;
+ public static int[] ScrimInsetsFrameLayout = { 0x7f0100f2 };
+ public static int ScrimInsetsFrameLayout_insetForeground = 0;
+ public static int[] ScrollingViewBehavior_Params = { 0x7f0100f3 };
+ public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f010101 };
+ public static int SnackbarLayout_android_maxWidth = 0;
+ public static int SnackbarLayout_elevation = 1;
+ public static int SnackbarLayout_maxActionInlineWidth = 2;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_entries = 0;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f };
+ public static int TabItem_android_icon = 0;
+ public static int TabItem_android_layout = 1;
+ public static int TabItem_android_text = 2;
+ public static int[] TabLayout = { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 };
+ public static int TabLayout_tabBackground = 3;
+ public static int TabLayout_tabContentStart = 2;
+ public static int TabLayout_tabGravity = 5;
+ public static int TabLayout_tabIndicatorColor = 0;
+ public static int TabLayout_tabIndicatorHeight = 1;
+ public static int TabLayout_tabMaxWidth = 7;
+ public static int TabLayout_tabMinWidth = 6;
+ public static int TabLayout_tabMode = 4;
+ public static int TabLayout_tabPadding = 15;
+ public static int TabLayout_tabPaddingBottom = 14;
+ public static int TabLayout_tabPaddingEnd = 13;
+ public static int TabLayout_tabPaddingStart = 11;
+ public static int TabLayout_tabPaddingTop = 12;
+ public static int TabLayout_tabSelectedTextColor = 10;
+ public static int TabLayout_tabTextAppearance = 8;
+ public static int TabLayout_tabTextColor = 9;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_shadowColor = 4;
+ public static int TextAppearance_android_shadowDx = 5;
+ public static int TextAppearance_android_shadowDy = 6;
+ public static int TextAppearance_android_shadowRadius = 7;
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 };
+ public static int TextInputLayout_android_hint = 1;
+ public static int TextInputLayout_android_textColorHint = 0;
+ public static int TextInputLayout_counterEnabled = 6;
+ public static int TextInputLayout_counterMaxLength = 7;
+ public static int TextInputLayout_counterOverflowTextAppearance = 9;
+ public static int TextInputLayout_counterTextAppearance = 8;
+ public static int TextInputLayout_errorEnabled = 4;
+ public static int TextInputLayout_errorTextAppearance = 5;
+ public static int TextInputLayout_hintAnimationEnabled = 10;
+ public static int TextInputLayout_hintEnabled = 3;
+ public static int TextInputLayout_hintTextAppearance = 2;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/release/android/support/v7/appcompat/R.java b/android/build/generated/source/r/release/android/support/v7/appcompat/R.java
new file mode 100644
index 000000000..aa47e587d
--- /dev/null
+++ b/android/build/generated/source/r/release/android/support/v7/appcompat/R.java
@@ -0,0 +1,1281 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in = 0x7f050000;
+ public static int abc_fade_out = 0x7f050001;
+ public static int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static int abc_popup_enter = 0x7f050003;
+ public static int abc_popup_exit = 0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static int abc_slide_in_bottom = 0x7f050006;
+ public static int abc_slide_in_top = 0x7f050007;
+ public static int abc_slide_out_bottom = 0x7f050008;
+ public static int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static int actionBarDivider = 0x7f01003e;
+ public static int actionBarItemBackground = 0x7f01003f;
+ public static int actionBarPopupTheme = 0x7f010038;
+ public static int actionBarSize = 0x7f01003d;
+ public static int actionBarSplitStyle = 0x7f01003a;
+ public static int actionBarStyle = 0x7f010039;
+ public static int actionBarTabBarStyle = 0x7f010034;
+ public static int actionBarTabStyle = 0x7f010033;
+ public static int actionBarTabTextStyle = 0x7f010035;
+ public static int actionBarTheme = 0x7f01003b;
+ public static int actionBarWidgetTheme = 0x7f01003c;
+ public static int actionButtonStyle = 0x7f010058;
+ public static int actionDropDownStyle = 0x7f010054;
+ public static int actionLayout = 0x7f0100e2;
+ public static int actionMenuTextAppearance = 0x7f010040;
+ public static int actionMenuTextColor = 0x7f010041;
+ public static int actionModeBackground = 0x7f010044;
+ public static int actionModeCloseButtonStyle = 0x7f010043;
+ public static int actionModeCloseDrawable = 0x7f010046;
+ public static int actionModeCopyDrawable = 0x7f010048;
+ public static int actionModeCutDrawable = 0x7f010047;
+ public static int actionModeFindDrawable = 0x7f01004c;
+ public static int actionModePasteDrawable = 0x7f010049;
+ public static int actionModePopupWindowStyle = 0x7f01004e;
+ public static int actionModeSelectAllDrawable = 0x7f01004a;
+ public static int actionModeShareDrawable = 0x7f01004b;
+ public static int actionModeSplitBackground = 0x7f010045;
+ public static int actionModeStyle = 0x7f010042;
+ public static int actionModeWebSearchDrawable = 0x7f01004d;
+ public static int actionOverflowButtonStyle = 0x7f010036;
+ public static int actionOverflowMenuStyle = 0x7f010037;
+ public static int actionProviderClass = 0x7f0100e4;
+ public static int actionViewClass = 0x7f0100e3;
+ public static int activityChooserViewStyle = 0x7f010060;
+ public static int alertDialogButtonGroupStyle = 0x7f010083;
+ public static int alertDialogCenterButtons = 0x7f010084;
+ public static int alertDialogStyle = 0x7f010082;
+ public static int alertDialogTheme = 0x7f010085;
+ public static int allowStacking = 0x7f01009b;
+ public static int arrowHeadLength = 0x7f0100bc;
+ public static int arrowShaftLength = 0x7f0100bd;
+ public static int autoCompleteTextViewStyle = 0x7f01008a;
+ public static int background = 0x7f01000c;
+ public static int backgroundSplit = 0x7f01000e;
+ public static int backgroundStacked = 0x7f01000d;
+ public static int backgroundTint = 0x7f010134;
+ public static int backgroundTintMode = 0x7f010135;
+ public static int barLength = 0x7f0100be;
+ public static int borderlessButtonStyle = 0x7f01005d;
+ public static int buttonBarButtonStyle = 0x7f01005a;
+ public static int buttonBarNegativeButtonStyle = 0x7f010088;
+ public static int buttonBarNeutralButtonStyle = 0x7f010089;
+ public static int buttonBarPositiveButtonStyle = 0x7f010087;
+ public static int buttonBarStyle = 0x7f010059;
+ public static int buttonPanelSideLayout = 0x7f01001f;
+ public static int buttonStyle = 0x7f01008b;
+ public static int buttonStyleSmall = 0x7f01008c;
+ public static int buttonTint = 0x7f0100ad;
+ public static int buttonTintMode = 0x7f0100ae;
+ public static int checkboxStyle = 0x7f01008d;
+ public static int checkedTextViewStyle = 0x7f01008e;
+ public static int closeIcon = 0x7f0100f8;
+ public static int closeItemLayout = 0x7f01001c;
+ public static int collapseContentDescription = 0x7f01012b;
+ public static int collapseIcon = 0x7f01012a;
+ public static int color = 0x7f0100b8;
+ public static int colorAccent = 0x7f01007b;
+ public static int colorButtonNormal = 0x7f01007f;
+ public static int colorControlActivated = 0x7f01007d;
+ public static int colorControlHighlight = 0x7f01007e;
+ public static int colorControlNormal = 0x7f01007c;
+ public static int colorPrimary = 0x7f010079;
+ public static int colorPrimaryDark = 0x7f01007a;
+ public static int colorSwitchThumbNormal = 0x7f010080;
+ public static int commitIcon = 0x7f0100fd;
+ public static int contentInsetEnd = 0x7f010017;
+ public static int contentInsetLeft = 0x7f010018;
+ public static int contentInsetRight = 0x7f010019;
+ public static int contentInsetStart = 0x7f010016;
+ public static int controlBackground = 0x7f010081;
+ public static int customNavigationLayout = 0x7f01000f;
+ public static int defaultQueryHint = 0x7f0100f7;
+ public static int dialogPreferredPadding = 0x7f010052;
+ public static int dialogTheme = 0x7f010051;
+ public static int displayOptions = 0x7f010005;
+ public static int divider = 0x7f01000b;
+ public static int dividerHorizontal = 0x7f01005f;
+ public static int dividerPadding = 0x7f0100e0;
+ public static int dividerVertical = 0x7f01005e;
+ public static int drawableSize = 0x7f0100ba;
+ public static int drawerArrowStyle = 0x7f010000;
+ public static int dropDownListViewStyle = 0x7f010071;
+ public static int dropdownListPreferredItemHeight = 0x7f010055;
+ public static int editTextBackground = 0x7f010066;
+ public static int editTextColor = 0x7f010065;
+ public static int editTextStyle = 0x7f01008f;
+ public static int elevation = 0x7f01001a;
+ public static int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static int gapBetweenBars = 0x7f0100bb;
+ public static int goIcon = 0x7f0100f9;
+ public static int height = 0x7f010001;
+ public static int hideOnContentScroll = 0x7f010015;
+ public static int homeAsUpIndicator = 0x7f010057;
+ public static int homeLayout = 0x7f010010;
+ public static int icon = 0x7f010009;
+ public static int iconifiedByDefault = 0x7f0100f5;
+ public static int imageButtonStyle = 0x7f010067;
+ public static int indeterminateProgressStyle = 0x7f010012;
+ public static int initialActivityCount = 0x7f01001d;
+ public static int isLightTheme = 0x7f010002;
+ public static int itemPadding = 0x7f010014;
+ public static int layout = 0x7f0100f4;
+ public static int listChoiceBackgroundIndicator = 0x7f010078;
+ public static int listDividerAlertDialog = 0x7f010053;
+ public static int listItemLayout = 0x7f010023;
+ public static int listLayout = 0x7f010020;
+ public static int listPopupWindowStyle = 0x7f010072;
+ public static int listPreferredItemHeight = 0x7f01006c;
+ public static int listPreferredItemHeightLarge = 0x7f01006e;
+ public static int listPreferredItemHeightSmall = 0x7f01006d;
+ public static int listPreferredItemPaddingLeft = 0x7f01006f;
+ public static int listPreferredItemPaddingRight = 0x7f010070;
+ public static int logo = 0x7f01000a;
+ public static int logoDescription = 0x7f01012e;
+ public static int maxButtonHeight = 0x7f010129;
+ public static int measureWithLargestChild = 0x7f0100de;
+ public static int multiChoiceItemLayout = 0x7f010021;
+ public static int navigationContentDescription = 0x7f01012d;
+ public static int navigationIcon = 0x7f01012c;
+ public static int navigationMode = 0x7f010004;
+ public static int overlapAnchor = 0x7f0100ec;
+ public static int paddingEnd = 0x7f010132;
+ public static int paddingStart = 0x7f010131;
+ public static int panelBackground = 0x7f010075;
+ public static int panelMenuListTheme = 0x7f010077;
+ public static int panelMenuListWidth = 0x7f010076;
+ public static int popupMenuStyle = 0x7f010063;
+ public static int popupTheme = 0x7f01001b;
+ public static int popupWindowStyle = 0x7f010064;
+ public static int preserveIconSpacing = 0x7f0100e5;
+ public static int progressBarPadding = 0x7f010013;
+ public static int progressBarStyle = 0x7f010011;
+ public static int queryBackground = 0x7f0100ff;
+ public static int queryHint = 0x7f0100f6;
+ public static int radioButtonStyle = 0x7f010090;
+ public static int ratingBarStyle = 0x7f010091;
+ public static int ratingBarStyleIndicator = 0x7f010092;
+ public static int ratingBarStyleSmall = 0x7f010093;
+ public static int searchHintIcon = 0x7f0100fb;
+ public static int searchIcon = 0x7f0100fa;
+ public static int searchViewStyle = 0x7f01006b;
+ public static int seekBarStyle = 0x7f010094;
+ public static int selectableItemBackground = 0x7f01005b;
+ public static int selectableItemBackgroundBorderless = 0x7f01005c;
+ public static int showAsAction = 0x7f0100e1;
+ public static int showDividers = 0x7f0100df;
+ public static int showText = 0x7f010108;
+ public static int singleChoiceItemLayout = 0x7f010022;
+ public static int spinBars = 0x7f0100b9;
+ public static int spinnerDropDownItemStyle = 0x7f010056;
+ public static int spinnerStyle = 0x7f010095;
+ public static int splitTrack = 0x7f010107;
+ public static int srcCompat = 0x7f010027;
+ public static int state_above_anchor = 0x7f0100ed;
+ public static int submitBackground = 0x7f010100;
+ public static int subtitle = 0x7f010006;
+ public static int subtitleTextAppearance = 0x7f010123;
+ public static int subtitleTextColor = 0x7f010130;
+ public static int subtitleTextStyle = 0x7f010008;
+ public static int suggestionRowLayout = 0x7f0100fe;
+ public static int switchMinWidth = 0x7f010105;
+ public static int switchPadding = 0x7f010106;
+ public static int switchStyle = 0x7f010096;
+ public static int switchTextAppearance = 0x7f010104;
+ public static int textAllCaps = 0x7f010028;
+ public static int textAppearanceLargePopupMenu = 0x7f01004f;
+ public static int textAppearanceListItem = 0x7f010073;
+ public static int textAppearanceListItemSmall = 0x7f010074;
+ public static int textAppearanceSearchResultSubtitle = 0x7f010069;
+ public static int textAppearanceSearchResultTitle = 0x7f010068;
+ public static int textAppearanceSmallPopupMenu = 0x7f010050;
+ public static int textColorAlertDialogListItem = 0x7f010086;
+ public static int textColorSearchUrl = 0x7f01006a;
+ public static int theme = 0x7f010133;
+ public static int thickness = 0x7f0100bf;
+ public static int thumbTextPadding = 0x7f010103;
+ public static int title = 0x7f010003;
+ public static int titleMarginBottom = 0x7f010128;
+ public static int titleMarginEnd = 0x7f010126;
+ public static int titleMarginStart = 0x7f010125;
+ public static int titleMarginTop = 0x7f010127;
+ public static int titleMargins = 0x7f010124;
+ public static int titleTextAppearance = 0x7f010122;
+ public static int titleTextColor = 0x7f01012f;
+ public static int titleTextStyle = 0x7f010007;
+ public static int toolbarNavigationButtonStyle = 0x7f010062;
+ public static int toolbarStyle = 0x7f010061;
+ public static int track = 0x7f010102;
+ public static int voiceIcon = 0x7f0100fc;
+ public static int windowActionBar = 0x7f010029;
+ public static int windowActionBarOverlay = 0x7f01002b;
+ public static int windowActionModeOverlay = 0x7f01002c;
+ public static int windowFixedHeightMajor = 0x7f010030;
+ public static int windowFixedHeightMinor = 0x7f01002e;
+ public static int windowFixedWidthMajor = 0x7f01002d;
+ public static int windowFixedWidthMinor = 0x7f01002f;
+ public static int windowMinWidthMajor = 0x7f010031;
+ public static int windowMinWidthMinor = 0x7f010032;
+ public static int windowNoTitle = 0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs = 0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb = 0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive = 0x7f080004;
+ public static int abc_allow_stacked_button_bar = 0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps = 0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside = 0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark = 0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light = 0x7f0c004a;
+ public static int abc_color_highlight_material = 0x7f0c004b;
+ public static int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark = 0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light = 0x7f0c004d;
+ public static int abc_primary_text_material_dark = 0x7f0c004e;
+ public static int abc_primary_text_material_light = 0x7f0c004f;
+ public static int abc_search_url_text = 0x7f0c0050;
+ public static int abc_search_url_text_normal = 0x7f0c0001;
+ public static int abc_search_url_text_pressed = 0x7f0c0002;
+ public static int abc_search_url_text_selected = 0x7f0c0003;
+ public static int abc_secondary_text_material_dark = 0x7f0c0051;
+ public static int abc_secondary_text_material_light = 0x7f0c0052;
+ public static int accent_material_dark = 0x7f0c0004;
+ public static int accent_material_light = 0x7f0c0005;
+ public static int background_floating_material_dark = 0x7f0c0006;
+ public static int background_floating_material_light = 0x7f0c0007;
+ public static int background_material_dark = 0x7f0c0008;
+ public static int background_material_light = 0x7f0c0009;
+ public static int bright_foreground_disabled_material_dark = 0x7f0c000b;
+ public static int bright_foreground_disabled_material_light = 0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark = 0x7f0c000d;
+ public static int bright_foreground_inverse_material_light = 0x7f0c000e;
+ public static int bright_foreground_material_dark = 0x7f0c000f;
+ public static int bright_foreground_material_light = 0x7f0c0010;
+ public static int button_material_dark = 0x7f0c0011;
+ public static int button_material_light = 0x7f0c0012;
+ public static int dim_foreground_disabled_material_dark = 0x7f0c0021;
+ public static int dim_foreground_disabled_material_light = 0x7f0c0022;
+ public static int dim_foreground_material_dark = 0x7f0c0023;
+ public static int dim_foreground_material_light = 0x7f0c0024;
+ public static int foreground_material_dark = 0x7f0c0025;
+ public static int foreground_material_light = 0x7f0c0026;
+ public static int highlighted_text_material_dark = 0x7f0c0027;
+ public static int highlighted_text_material_light = 0x7f0c0028;
+ public static int hint_foreground_material_dark = 0x7f0c0029;
+ public static int hint_foreground_material_light = 0x7f0c002a;
+ public static int material_blue_grey_800 = 0x7f0c002b;
+ public static int material_blue_grey_900 = 0x7f0c002c;
+ public static int material_blue_grey_950 = 0x7f0c002d;
+ public static int material_deep_teal_200 = 0x7f0c002e;
+ public static int material_deep_teal_500 = 0x7f0c002f;
+ public static int material_grey_100 = 0x7f0c0030;
+ public static int material_grey_300 = 0x7f0c0031;
+ public static int material_grey_50 = 0x7f0c0032;
+ public static int material_grey_600 = 0x7f0c0033;
+ public static int material_grey_800 = 0x7f0c0034;
+ public static int material_grey_850 = 0x7f0c0035;
+ public static int material_grey_900 = 0x7f0c0036;
+ public static int primary_dark_material_dark = 0x7f0c0037;
+ public static int primary_dark_material_light = 0x7f0c0038;
+ public static int primary_material_dark = 0x7f0c0039;
+ public static int primary_material_light = 0x7f0c003a;
+ public static int primary_text_default_material_dark = 0x7f0c003b;
+ public static int primary_text_default_material_light = 0x7f0c003c;
+ public static int primary_text_disabled_material_dark = 0x7f0c003d;
+ public static int primary_text_disabled_material_light = 0x7f0c003e;
+ public static int ripple_material_dark = 0x7f0c003f;
+ public static int ripple_material_light = 0x7f0c0040;
+ public static int secondary_text_default_material_dark = 0x7f0c0041;
+ public static int secondary_text_default_material_light = 0x7f0c0042;
+ public static int secondary_text_disabled_material_dark = 0x7f0c0043;
+ public static int secondary_text_disabled_material_light = 0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark = 0x7f0c0045;
+ public static int switch_thumb_disabled_material_light = 0x7f0c0046;
+ public static int switch_thumb_material_dark = 0x7f0c0053;
+ public static int switch_thumb_material_light = 0x7f0c0054;
+ public static int switch_thumb_normal_material_dark = 0x7f0c0047;
+ public static int switch_thumb_normal_material_light = 0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material = 0x7f09000d;
+ public static int abc_action_bar_default_height_material = 0x7f090001;
+ public static int abc_action_bar_default_padding_end_material = 0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material = 0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material = 0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material = 0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material = 0x7f09001c;
+ public static int abc_action_bar_progress_bar_size = 0x7f090002;
+ public static int abc_action_bar_stacked_max_height = 0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width = 0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material = 0x7f090020;
+ public static int abc_action_button_min_height_material = 0x7f090021;
+ public static int abc_action_button_min_width_material = 0x7f090022;
+ public static int abc_action_button_min_width_overflow_material = 0x7f090023;
+ public static int abc_alert_dialog_button_bar_height = 0x7f090000;
+ public static int abc_button_inset_horizontal_material = 0x7f090024;
+ public static int abc_button_inset_vertical_material = 0x7f090025;
+ public static int abc_button_padding_horizontal_material = 0x7f090026;
+ public static int abc_button_padding_vertical_material = 0x7f090027;
+ public static int abc_config_prefDialogWidth = 0x7f090005;
+ public static int abc_control_corner_material = 0x7f090028;
+ public static int abc_control_inset_material = 0x7f090029;
+ public static int abc_control_padding_material = 0x7f09002a;
+ public static int abc_dialog_fixed_height_major = 0x7f090006;
+ public static int abc_dialog_fixed_height_minor = 0x7f090007;
+ public static int abc_dialog_fixed_width_major = 0x7f090008;
+ public static int abc_dialog_fixed_width_minor = 0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material = 0x7f09002b;
+ public static int abc_dialog_min_width_major = 0x7f09000a;
+ public static int abc_dialog_min_width_minor = 0x7f09000b;
+ public static int abc_dialog_padding_material = 0x7f09002c;
+ public static int abc_dialog_padding_top_material = 0x7f09002d;
+ public static int abc_disabled_alpha_material_dark = 0x7f09002e;
+ public static int abc_disabled_alpha_material_light = 0x7f09002f;
+ public static int abc_dropdownitem_icon_width = 0x7f090030;
+ public static int abc_dropdownitem_text_padding_left = 0x7f090031;
+ public static int abc_dropdownitem_text_padding_right = 0x7f090032;
+ public static int abc_edit_text_inset_bottom_material = 0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material = 0x7f090034;
+ public static int abc_edit_text_inset_top_material = 0x7f090035;
+ public static int abc_floating_window_z = 0x7f090036;
+ public static int abc_list_item_padding_horizontal_material = 0x7f090037;
+ public static int abc_panel_menu_list_width = 0x7f090038;
+ public static int abc_search_view_preferred_width = 0x7f090039;
+ public static int abc_search_view_text_min_width = 0x7f09000c;
+ public static int abc_seekbar_track_background_height_material = 0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material = 0x7f09003b;
+ public static int abc_select_dialog_padding_start_material = 0x7f09003c;
+ public static int abc_switch_padding = 0x7f090018;
+ public static int abc_text_size_body_1_material = 0x7f09003d;
+ public static int abc_text_size_body_2_material = 0x7f09003e;
+ public static int abc_text_size_button_material = 0x7f09003f;
+ public static int abc_text_size_caption_material = 0x7f090040;
+ public static int abc_text_size_display_1_material = 0x7f090041;
+ public static int abc_text_size_display_2_material = 0x7f090042;
+ public static int abc_text_size_display_3_material = 0x7f090043;
+ public static int abc_text_size_display_4_material = 0x7f090044;
+ public static int abc_text_size_headline_material = 0x7f090045;
+ public static int abc_text_size_large_material = 0x7f090046;
+ public static int abc_text_size_medium_material = 0x7f090047;
+ public static int abc_text_size_menu_material = 0x7f090048;
+ public static int abc_text_size_small_material = 0x7f090049;
+ public static int abc_text_size_subhead_material = 0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar = 0x7f090003;
+ public static int abc_text_size_title_material = 0x7f09004b;
+ public static int abc_text_size_title_material_toolbar = 0x7f090004;
+ public static int disabled_alpha_material_dark = 0x7f090062;
+ public static int disabled_alpha_material_light = 0x7f090063;
+ public static int highlight_alpha_material_colored = 0x7f090065;
+ public static int highlight_alpha_material_dark = 0x7f090066;
+ public static int highlight_alpha_material_light = 0x7f090067;
+ public static int notification_large_icon_height = 0x7f09006d;
+ public static int notification_large_icon_width = 0x7f09006e;
+ public static int notification_subtext_size = 0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static int abc_action_bar_item_background_material = 0x7f020001;
+ public static int abc_btn_borderless_material = 0x7f020002;
+ public static int abc_btn_check_material = 0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static int abc_btn_colored_material = 0x7f020006;
+ public static int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static int abc_btn_radio_material = 0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static int abc_cab_background_internal_bg = 0x7f02000f;
+ public static int abc_cab_background_top_material = 0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static int abc_control_background_material = 0x7f020012;
+ public static int abc_dialog_material_background_dark = 0x7f020013;
+ public static int abc_dialog_material_background_light = 0x7f020014;
+ public static int abc_edit_text_material = 0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static int abc_ic_star_black_16dp = 0x7f020021;
+ public static int abc_ic_star_black_36dp = 0x7f020022;
+ public static int abc_ic_star_half_black_16dp = 0x7f020023;
+ public static int abc_ic_star_half_black_36dp = 0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
+ public static int abc_item_background_holo_dark = 0x7f020026;
+ public static int abc_item_background_holo_light = 0x7f020027;
+ public static int abc_list_divider_mtrl_alpha = 0x7f020028;
+ public static int abc_list_focused_holo = 0x7f020029;
+ public static int abc_list_longpressed_holo = 0x7f02002a;
+ public static int abc_list_pressed_holo_dark = 0x7f02002b;
+ public static int abc_list_pressed_holo_light = 0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light = 0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark = 0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light = 0x7f020030;
+ public static int abc_list_selector_holo_dark = 0x7f020031;
+ public static int abc_list_selector_holo_light = 0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
+ public static int abc_popup_background_mtrl_mult = 0x7f020034;
+ public static int abc_ratingbar_full_material = 0x7f020035;
+ public static int abc_ratingbar_indicator_material = 0x7f020036;
+ public static int abc_ratingbar_small_material = 0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
+ public static int abc_seekbar_thumb_material = 0x7f02003d;
+ public static int abc_seekbar_track_material = 0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha = 0x7f02003f;
+ public static int abc_spinner_textfield_background_material = 0x7f020040;
+ public static int abc_switch_thumb_material = 0x7f020041;
+ public static int abc_switch_track_mtrl_alpha = 0x7f020042;
+ public static int abc_tab_indicator_material = 0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha = 0x7f020044;
+ public static int abc_text_cursor_material = 0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha = 0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha = 0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
+ public static int abc_textfield_search_material = 0x7f02004a;
+ public static int notification_template_icon_bg = 0x7f02006c;
+ }
+ public static final class id {
+ public static int action0 = 0x7f0d008a;
+ public static int action_bar = 0x7f0d0064;
+ public static int action_bar_activity_content = 0x7f0d0000;
+ public static int action_bar_container = 0x7f0d0063;
+ public static int action_bar_root = 0x7f0d005f;
+ public static int action_bar_spinner = 0x7f0d0001;
+ public static int action_bar_subtitle = 0x7f0d0045;
+ public static int action_bar_title = 0x7f0d0044;
+ public static int action_context_bar = 0x7f0d0065;
+ public static int action_divider = 0x7f0d008e;
+ public static int action_menu_divider = 0x7f0d0002;
+ public static int action_menu_presenter = 0x7f0d0003;
+ public static int action_mode_bar = 0x7f0d0061;
+ public static int action_mode_bar_stub = 0x7f0d0060;
+ public static int action_mode_close_button = 0x7f0d0046;
+ public static int activity_chooser_view_content = 0x7f0d0047;
+ public static int alertTitle = 0x7f0d0053;
+ public static int always = 0x7f0d003d;
+ public static int beginning = 0x7f0d003b;
+ public static int buttonPanel = 0x7f0d004e;
+ public static int cancel_action = 0x7f0d008b;
+ public static int checkbox = 0x7f0d005c;
+ public static int chronometer = 0x7f0d0091;
+ public static int collapseActionView = 0x7f0d003e;
+ public static int contentPanel = 0x7f0d0054;
+ public static int custom = 0x7f0d005a;
+ public static int customPanel = 0x7f0d0059;
+ public static int decor_content_parent = 0x7f0d0062;
+ public static int default_activity_button = 0x7f0d004a;
+ public static int disableHome = 0x7f0d000e;
+ public static int edit_query = 0x7f0d0066;
+ public static int end = 0x7f0d0024;
+ public static int end_padder = 0x7f0d0096;
+ public static int expand_activities_button = 0x7f0d0048;
+ public static int expanded_menu = 0x7f0d005b;
+ public static int home = 0x7f0d0004;
+ public static int homeAsUp = 0x7f0d000f;
+ public static int icon = 0x7f0d004c;
+ public static int ifRoom = 0x7f0d003f;
+ public static int image = 0x7f0d0049;
+ public static int info = 0x7f0d0095;
+ public static int line1 = 0x7f0d008f;
+ public static int line3 = 0x7f0d0093;
+ public static int listMode = 0x7f0d000b;
+ public static int list_item = 0x7f0d004b;
+ public static int media_actions = 0x7f0d008d;
+ public static int middle = 0x7f0d003c;
+ public static int multiply = 0x7f0d002a;
+ public static int never = 0x7f0d0040;
+ public static int none = 0x7f0d0010;
+ public static int normal = 0x7f0d000c;
+ public static int parentPanel = 0x7f0d0050;
+ public static int progress_circular = 0x7f0d0006;
+ public static int progress_horizontal = 0x7f0d0007;
+ public static int radio = 0x7f0d005e;
+ public static int screen = 0x7f0d002b;
+ public static int scrollIndicatorDown = 0x7f0d0058;
+ public static int scrollIndicatorUp = 0x7f0d0055;
+ public static int scrollView = 0x7f0d0056;
+ public static int search_badge = 0x7f0d0068;
+ public static int search_bar = 0x7f0d0067;
+ public static int search_button = 0x7f0d0069;
+ public static int search_close_btn = 0x7f0d006e;
+ public static int search_edit_frame = 0x7f0d006a;
+ public static int search_go_btn = 0x7f0d0070;
+ public static int search_mag_icon = 0x7f0d006b;
+ public static int search_plate = 0x7f0d006c;
+ public static int search_src_text = 0x7f0d006d;
+ public static int search_voice_btn = 0x7f0d0071;
+ public static int select_dialog_listview = 0x7f0d0072;
+ public static int shortcut = 0x7f0d005d;
+ public static int showCustom = 0x7f0d0011;
+ public static int showHome = 0x7f0d0012;
+ public static int showTitle = 0x7f0d0013;
+ public static int spacer = 0x7f0d004f;
+ public static int split_action_bar = 0x7f0d0008;
+ public static int src_atop = 0x7f0d002c;
+ public static int src_in = 0x7f0d002d;
+ public static int src_over = 0x7f0d002e;
+ public static int status_bar_latest_event_content = 0x7f0d008c;
+ public static int submit_area = 0x7f0d006f;
+ public static int tabMode = 0x7f0d000d;
+ public static int text = 0x7f0d0094;
+ public static int text2 = 0x7f0d0092;
+ public static int textSpacerNoButtons = 0x7f0d0057;
+ public static int time = 0x7f0d0090;
+ public static int title = 0x7f0d004d;
+ public static int title_template = 0x7f0d0052;
+ public static int topPanel = 0x7f0d0051;
+ public static int up = 0x7f0d0009;
+ public static int useLogo = 0x7f0d0014;
+ public static int withText = 0x7f0d0041;
+ public static int wrap_content = 0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur = 0x7f0b0002;
+ public static int abc_config_activityShortDur = 0x7f0b0003;
+ public static int abc_max_action_buttons = 0x7f0b0000;
+ public static int cancel_button_image_alpha = 0x7f0b0005;
+ public static int status_bar_notification_info_maxnum = 0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item = 0x7f040000;
+ public static int abc_action_bar_up_container = 0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static int abc_action_menu_item_layout = 0x7f040003;
+ public static int abc_action_menu_layout = 0x7f040004;
+ public static int abc_action_mode_bar = 0x7f040005;
+ public static int abc_action_mode_close_item_material = 0x7f040006;
+ public static int abc_activity_chooser_view = 0x7f040007;
+ public static int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static int abc_alert_dialog_button_bar_material = 0x7f040009;
+ public static int abc_alert_dialog_material = 0x7f04000a;
+ public static int abc_dialog_title_material = 0x7f04000b;
+ public static int abc_expanded_menu_layout = 0x7f04000c;
+ public static int abc_list_menu_item_checkbox = 0x7f04000d;
+ public static int abc_list_menu_item_icon = 0x7f04000e;
+ public static int abc_list_menu_item_layout = 0x7f04000f;
+ public static int abc_list_menu_item_radio = 0x7f040010;
+ public static int abc_popup_menu_item_layout = 0x7f040011;
+ public static int abc_screen_content_include = 0x7f040012;
+ public static int abc_screen_simple = 0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode = 0x7f040014;
+ public static int abc_screen_toolbar = 0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line = 0x7f040016;
+ public static int abc_search_view = 0x7f040017;
+ public static int abc_select_dialog_material = 0x7f040018;
+ public static int notification_media_action = 0x7f04002e;
+ public static int notification_media_cancel_action = 0x7f04002f;
+ public static int notification_template_big_media = 0x7f040030;
+ public static int notification_template_big_media_narrow = 0x7f040031;
+ public static int notification_template_lines = 0x7f040032;
+ public static int notification_template_media = 0x7f040033;
+ public static int notification_template_part_chronometer = 0x7f040034;
+ public static int notification_template_part_time = 0x7f040035;
+ public static int select_dialog_item_material = 0x7f040039;
+ public static int select_dialog_multichoice_material = 0x7f04003a;
+ public static int select_dialog_singlechoice_material = 0x7f04003b;
+ public static int support_simple_spinner_dropdown_item = 0x7f04003c;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description = 0x7f070000;
+ public static int abc_action_bar_home_description_format = 0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static int abc_action_bar_up_description = 0x7f070003;
+ public static int abc_action_menu_overflow_description = 0x7f070004;
+ public static int abc_action_mode_done = 0x7f070005;
+ public static int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static int abc_activitychooserview_choose_application = 0x7f070007;
+ public static int abc_capital_off = 0x7f070008;
+ public static int abc_capital_on = 0x7f070009;
+ public static int abc_search_hint = 0x7f07000a;
+ public static int abc_searchview_description_clear = 0x7f07000b;
+ public static int abc_searchview_description_query = 0x7f07000c;
+ public static int abc_searchview_description_search = 0x7f07000d;
+ public static int abc_searchview_description_submit = 0x7f07000e;
+ public static int abc_searchview_description_voice = 0x7f07000f;
+ public static int abc_shareactionprovider_share_with = 0x7f070010;
+ public static int abc_shareactionprovider_share_with_application = 0x7f070011;
+ public static int abc_toolbar_collapse_description = 0x7f070012;
+ public static int status_bar_notification_info_overflow = 0x7f070013;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat = 0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light = 0x7f0a0089;
+ public static int Animation_AppCompat_Dialog = 0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp = 0x7f0a008b;
+ public static int Base_AlertDialog_AppCompat = 0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light = 0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog = 0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp = 0x7f0a0094;
+ public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a0096;
+ public static int Base_DialogWindowTitle_AppCompat = 0x7f0a0095;
+ public static int Base_TextAppearance_AppCompat = 0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2 = 0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button = 0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption = 0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1 = 0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2 = 0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3 = 0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4 = 0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline = 0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse = 0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large = 0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium = 0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu = 0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small = 0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title = 0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0057;
+ public static int Base_ThemeOverlay_AppCompat = 0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light = 0x7f0a00a6;
+ public static int Base_Theme_AppCompat = 0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu = 0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog = 0x7f0a0012;
+ public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002;
+ public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a009d;
+ public static int Base_Theme_AppCompat_Light = 0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog = 0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00a1;
+ public static int Base_V11_Theme_AppCompat_Dialog = 0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText = 0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat = 0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog = 0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light = 0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat = 0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light = 0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat = 0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light = 0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat = 0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog = 0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light = 0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText = 0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar = 0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton = 0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode = 0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button = 0x7f0a0063;
+ public static int Base_Widget_AppCompat_ButtonBar = 0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00b3;
+ public static int Base_Widget_AppCompat_Button_Borderless = 0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored = 0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small = 0x7f0a0066;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText = 0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton = 0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView = 0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu = 0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu = 0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow = 0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar = 0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar = 0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small = 0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView = 0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar = 0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner = 0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar = 0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a007b;
+ public static int Platform_AppCompat = 0x7f0a0018;
+ public static int Platform_AppCompat_Light = 0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat = 0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a007e;
+ public static int Platform_V11_AppCompat = 0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light = 0x7f0a001b;
+ public static int Platform_V14_AppCompat = 0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light = 0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner = 0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a0034;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a0033;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0036;
+ public static int TextAppearance_AppCompat = 0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1 = 0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2 = 0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button = 0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption = 0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1 = 0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2 = 0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3 = 0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4 = 0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline = 0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse = 0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large = 0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium = 0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu = 0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small = 0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead = 0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title = 0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button = 0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00ea;
+ public static int TextAppearance_StatusBar_EventContent = 0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info = 0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00f4;
+ public static int ThemeOverlay_AppCompat = 0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark = 0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light = 0x7f0a0112;
+ public static int Theme_AppCompat = 0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu = 0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight = 0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog = 0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_NoActionBar = 0x7f0a000b;
+ public static int Theme_AppCompat_Dialog = 0x7f0a00f8;
+ public static int Theme_AppCompat_DialogWhenLarge = 0x7f0a00fb;
+ public static int Theme_AppCompat_Dialog_Alert = 0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00fa;
+ public static int Theme_AppCompat_Light = 0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog = 0x7f0a00fe;
+ public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0101;
+ public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0100;
+ public static int Theme_AppCompat_Light_NoActionBar = 0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar = 0x7f0a0103;
+ public static int Widget_AppCompat_ActionBar = 0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid = 0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText = 0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView = 0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton = 0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode = 0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView = 0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0a011d;
+ public static int Widget_AppCompat_Button = 0x7f0a011e;
+ public static int Widget_AppCompat_ButtonBar = 0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0125;
+ public static int Widget_AppCompat_Button_Borderless = 0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored = 0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small = 0x7f0a0123;
+ public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a012a;
+ public static int Widget_AppCompat_EditText = 0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton = 0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar = 0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton = 0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu = 0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView = 0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow = 0x7f0a0143;
+ public static int Widget_AppCompat_ListView = 0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown = 0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu = 0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu = 0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow = 0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar = 0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar = 0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator = 0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small = 0x7f0a014e;
+ public static int Widget_AppCompat_SearchView = 0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar = 0x7f0a0151;
+ public static int Widget_AppCompat_Spinner = 0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown = 0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined = 0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar = 0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0158;
+ }
+ public static final class styleable {
+ public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
+ public static int[] ActionBarLayout = { 0x010100b3 };
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ public static int ActionBar_background = 10;
+ public static int ActionBar_backgroundSplit = 12;
+ public static int ActionBar_backgroundStacked = 11;
+ public static int ActionBar_contentInsetEnd = 21;
+ public static int ActionBar_contentInsetLeft = 22;
+ public static int ActionBar_contentInsetRight = 23;
+ public static int ActionBar_contentInsetStart = 20;
+ public static int ActionBar_customNavigationLayout = 13;
+ public static int ActionBar_displayOptions = 3;
+ public static int ActionBar_divider = 9;
+ public static int ActionBar_elevation = 24;
+ public static int ActionBar_height = 0;
+ public static int ActionBar_hideOnContentScroll = 19;
+ public static int ActionBar_homeAsUpIndicator = 26;
+ public static int ActionBar_homeLayout = 14;
+ public static int ActionBar_icon = 7;
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ public static int ActionBar_itemPadding = 18;
+ public static int ActionBar_logo = 8;
+ public static int ActionBar_navigationMode = 2;
+ public static int ActionBar_popupTheme = 25;
+ public static int ActionBar_progressBarPadding = 17;
+ public static int ActionBar_progressBarStyle = 15;
+ public static int ActionBar_subtitle = 4;
+ public static int ActionBar_subtitleTextStyle = 6;
+ public static int ActionBar_title = 1;
+ public static int ActionBar_titleTextStyle = 5;
+ public static int[] ActionMenuItemView = { 0x0101013f };
+ public static int ActionMenuItemView_android_minWidth = 0;
+ public static int[] ActionMenuView = { };
+ public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static int ActionMode_background = 3;
+ public static int ActionMode_backgroundSplit = 4;
+ public static int ActionMode_closeItemLayout = 5;
+ public static int ActionMode_height = 0;
+ public static int ActionMode_subtitleTextStyle = 2;
+ public static int ActionMode_titleTextStyle = 1;
+ public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static int ActivityChooserView_initialActivityCount = 0;
+ public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static int AlertDialog_android_layout = 0;
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ public static int AlertDialog_listItemLayout = 5;
+ public static int AlertDialog_listLayout = 2;
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ public static int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
+ public static int AppCompatImageView_android_src = 0;
+ public static int AppCompatImageView_srcCompat = 1;
+ public static int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
+ public static int AppCompatTextView_android_textAppearance = 0;
+ public static int AppCompatTextView_textAllCaps = 1;
+ public static int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+ public static int AppCompatTheme_actionBarDivider = 23;
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ public static int AppCompatTheme_actionBarSize = 22;
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ public static int AppCompatTheme_actionBarStyle = 18;
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ public static int AppCompatTheme_actionBarTheme = 20;
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ public static int AppCompatTheme_actionModeBackground = 29;
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ public static int AppCompatTheme_actionModeStyle = 27;
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ public static int AppCompatTheme_buttonStyle = 100;
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ public static int AppCompatTheme_checkboxStyle = 102;
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ public static int AppCompatTheme_colorAccent = 84;
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ public static int AppCompatTheme_colorControlActivated = 86;
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ public static int AppCompatTheme_colorControlNormal = 85;
+ public static int AppCompatTheme_colorPrimary = 82;
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ public static int AppCompatTheme_controlBackground = 90;
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ public static int AppCompatTheme_dialogTheme = 42;
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ public static int AppCompatTheme_dividerVertical = 55;
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ public static int AppCompatTheme_editTextBackground = 63;
+ public static int AppCompatTheme_editTextColor = 62;
+ public static int AppCompatTheme_editTextStyle = 104;
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ public static int AppCompatTheme_panelBackground = 78;
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ public static int AppCompatTheme_searchViewStyle = 68;
+ public static int AppCompatTheme_seekBarStyle = 109;
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ public static int AppCompatTheme_spinnerStyle = 110;
+ public static int AppCompatTheme_switchStyle = 111;
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ public static int AppCompatTheme_toolbarStyle = 58;
+ public static int AppCompatTheme_windowActionBar = 2;
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ public static int AppCompatTheme_windowNoTitle = 3;
+ public static int[] ButtonBarLayout = { 0x7f01009b };
+ public static int ButtonBarLayout_allowStacking = 0;
+ public static int[] CompoundButton = { 0x01010107, 0x7f0100ad, 0x7f0100ae };
+ public static int CompoundButton_android_button = 0;
+ public static int CompoundButton_buttonTint = 1;
+ public static int CompoundButton_buttonTintMode = 2;
+ public static int[] DrawerArrowToggle = { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf };
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ public static int DrawerArrowToggle_barLength = 6;
+ public static int DrawerArrowToggle_color = 0;
+ public static int DrawerArrowToggle_drawableSize = 2;
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ public static int DrawerArrowToggle_spinBars = 1;
+ public static int DrawerArrowToggle_thickness = 7;
+ public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static int LinearLayoutCompat_android_gravity = 0;
+ public static int LinearLayoutCompat_android_orientation = 1;
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ public static int LinearLayoutCompat_divider = 5;
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static int LinearLayoutCompat_showDividers = 7;
+ public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static int MenuGroup_android_checkableBehavior = 5;
+ public static int MenuGroup_android_enabled = 0;
+ public static int MenuGroup_android_id = 1;
+ public static int MenuGroup_android_menuCategory = 3;
+ public static int MenuGroup_android_orderInCategory = 4;
+ public static int MenuGroup_android_visible = 2;
+ public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
+ public static int MenuItem_actionLayout = 14;
+ public static int MenuItem_actionProviderClass = 16;
+ public static int MenuItem_actionViewClass = 15;
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ public static int MenuItem_android_checkable = 11;
+ public static int MenuItem_android_checked = 3;
+ public static int MenuItem_android_enabled = 1;
+ public static int MenuItem_android_icon = 0;
+ public static int MenuItem_android_id = 2;
+ public static int MenuItem_android_menuCategory = 5;
+ public static int MenuItem_android_numericShortcut = 10;
+ public static int MenuItem_android_onClick = 12;
+ public static int MenuItem_android_orderInCategory = 6;
+ public static int MenuItem_android_title = 7;
+ public static int MenuItem_android_titleCondensed = 8;
+ public static int MenuItem_android_visible = 4;
+ public static int MenuItem_showAsAction = 13;
+ public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 };
+ public static int MenuView_android_headerBackground = 4;
+ public static int MenuView_android_horizontalDivider = 2;
+ public static int MenuView_android_itemBackground = 5;
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ public static int MenuView_android_itemTextAppearance = 1;
+ public static int MenuView_android_verticalDivider = 3;
+ public static int MenuView_android_windowAnimationStyle = 0;
+ public static int MenuView_preserveIconSpacing = 7;
+ public static int[] PopupWindow = { 0x01010176, 0x7f0100ec };
+ public static int[] PopupWindowBackgroundState = { 0x7f0100ed };
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static int PopupWindow_android_popupBackground = 0;
+ public static int PopupWindow_overlapAnchor = 1;
+ public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 };
+ public static int SearchView_android_focusable = 0;
+ public static int SearchView_android_imeOptions = 3;
+ public static int SearchView_android_inputType = 2;
+ public static int SearchView_android_maxWidth = 1;
+ public static int SearchView_closeIcon = 8;
+ public static int SearchView_commitIcon = 13;
+ public static int SearchView_defaultQueryHint = 7;
+ public static int SearchView_goIcon = 9;
+ public static int SearchView_iconifiedByDefault = 5;
+ public static int SearchView_layout = 4;
+ public static int SearchView_queryBackground = 15;
+ public static int SearchView_queryHint = 6;
+ public static int SearchView_searchHintIcon = 11;
+ public static int SearchView_searchIcon = 10;
+ public static int SearchView_submitBackground = 16;
+ public static int SearchView_suggestionRowLayout = 14;
+ public static int SearchView_voiceIcon = 12;
+ public static int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static int Spinner_android_dropDownWidth = 3;
+ public static int Spinner_android_entries = 0;
+ public static int Spinner_android_popupBackground = 1;
+ public static int Spinner_android_prompt = 2;
+ public static int Spinner_popupTheme = 4;
+ public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 };
+ public static int SwitchCompat_android_textOff = 1;
+ public static int SwitchCompat_android_textOn = 0;
+ public static int SwitchCompat_android_thumb = 2;
+ public static int SwitchCompat_showText = 9;
+ public static int SwitchCompat_splitTrack = 8;
+ public static int SwitchCompat_switchMinWidth = 6;
+ public static int SwitchCompat_switchPadding = 7;
+ public static int SwitchCompat_switchTextAppearance = 5;
+ public static int SwitchCompat_thumbTextPadding = 4;
+ public static int SwitchCompat_track = 3;
+ public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
+ public static int TextAppearance_android_shadowColor = 4;
+ public static int TextAppearance_android_shadowDx = 5;
+ public static int TextAppearance_android_shadowDy = 6;
+ public static int TextAppearance_android_shadowRadius = 7;
+ public static int TextAppearance_android_textColor = 3;
+ public static int TextAppearance_android_textSize = 0;
+ public static int TextAppearance_android_textStyle = 2;
+ public static int TextAppearance_android_typeface = 1;
+ public static int TextAppearance_textAllCaps = 8;
+ public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 };
+ public static int Toolbar_android_gravity = 0;
+ public static int Toolbar_android_minHeight = 1;
+ public static int Toolbar_collapseContentDescription = 19;
+ public static int Toolbar_collapseIcon = 18;
+ public static int Toolbar_contentInsetEnd = 6;
+ public static int Toolbar_contentInsetLeft = 7;
+ public static int Toolbar_contentInsetRight = 8;
+ public static int Toolbar_contentInsetStart = 5;
+ public static int Toolbar_logo = 4;
+ public static int Toolbar_logoDescription = 22;
+ public static int Toolbar_maxButtonHeight = 17;
+ public static int Toolbar_navigationContentDescription = 21;
+ public static int Toolbar_navigationIcon = 20;
+ public static int Toolbar_popupTheme = 9;
+ public static int Toolbar_subtitle = 3;
+ public static int Toolbar_subtitleTextAppearance = 11;
+ public static int Toolbar_subtitleTextColor = 24;
+ public static int Toolbar_title = 2;
+ public static int Toolbar_titleMarginBottom = 16;
+ public static int Toolbar_titleMarginEnd = 14;
+ public static int Toolbar_titleMarginStart = 13;
+ public static int Toolbar_titleMarginTop = 15;
+ public static int Toolbar_titleMargins = 12;
+ public static int Toolbar_titleTextAppearance = 10;
+ public static int Toolbar_titleTextColor = 23;
+ public static int[] View = { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 };
+ public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010134, 0x7f010135 };
+ public static int ViewBackgroundHelper_android_background = 0;
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static int ViewStubCompat_android_id = 0;
+ public static int ViewStubCompat_android_inflatedId = 2;
+ public static int ViewStubCompat_android_layout = 1;
+ public static int View_android_focusable = 1;
+ public static int View_android_theme = 0;
+ public static int View_paddingEnd = 3;
+ public static int View_paddingStart = 2;
+ public static int View_theme = 4;
+ }
+}
diff --git a/android/build/generated/source/r/release/android/support/v7/recyclerview/R.java b/android/build/generated/source/r/release/android/support/v7/recyclerview/R.java
new file mode 100644
index 000000000..b6a1c7c53
--- /dev/null
+++ b/android/build/generated/source/r/release/android/support/v7/recyclerview/R.java
@@ -0,0 +1,32 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.recyclerview;
+
+public final class R {
+ public static final class attr {
+ public static int layoutManager = 0x7f0100ee;
+ public static int reverseLayout = 0x7f0100f0;
+ public static int spanCount = 0x7f0100ef;
+ public static int stackFromEnd = 0x7f0100f1;
+ }
+ public static final class dimen {
+ public static int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity = 0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity = 0x7f09006a;
+ }
+ public static final class id {
+ public static int item_touch_helper_previous_elevation = 0x7f0d0005;
+ }
+ public static final class styleable {
+ public static int[] RecyclerView = { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 };
+ public static int RecyclerView_android_orientation = 0;
+ public static int RecyclerView_layoutManager = 1;
+ public static int RecyclerView_reverseLayout = 3;
+ public static int RecyclerView_spanCount = 2;
+ public static int RecyclerView_stackFromEnd = 4;
+ }
+}
diff --git a/android/build/generated/source/r/release/com/documentscanner/R.java b/android/build/generated/source/r/release/com/documentscanner/R.java
new file mode 100644
index 000000000..5935f506c
--- /dev/null
+++ b/android/build/generated/source/r/release/com/documentscanner/R.java
@@ -0,0 +1,9645 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.documentscanner;
+
+public final class R {
+ public static final class anim {
+ public static int abc_fade_in=0x7f050000;
+ public static int abc_fade_out=0x7f050001;
+ public static int abc_grow_fade_in_from_bottom=0x7f050002;
+ public static int abc_popup_enter=0x7f050003;
+ public static int abc_popup_exit=0x7f050004;
+ public static int abc_shrink_fade_out_from_bottom=0x7f050005;
+ public static int abc_slide_in_bottom=0x7f050006;
+ public static int abc_slide_in_top=0x7f050007;
+ public static int abc_slide_out_bottom=0x7f050008;
+ public static int abc_slide_out_top=0x7f050009;
+ public static int catalyst_push_up_in=0x7f05000a;
+ public static int catalyst_push_up_out=0x7f05000b;
+ public static int design_bottom_sheet_slide_in=0x7f05000c;
+ public static int design_bottom_sheet_slide_out=0x7f05000d;
+ public static int design_fab_in=0x7f05000e;
+ public static int design_fab_out=0x7f05000f;
+ public static int design_snackbar_in=0x7f050010;
+ public static int design_snackbar_out=0x7f050011;
+ }
+ public static final class attr {
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarDivider=0x7f01003e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarItemBackground=0x7f01003f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarPopupTheme=0x7f010038;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ */
+ public static int actionBarSize=0x7f01003d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarSplitStyle=0x7f01003a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarStyle=0x7f010039;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabBarStyle=0x7f010034;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabStyle=0x7f010033;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTabTextStyle=0x7f010035;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarTheme=0x7f01003b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionBarWidgetTheme=0x7f01003c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionButtonStyle=0x7f010058;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionDropDownStyle=0x7f010054;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionLayout=0x7f0100e2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionMenuTextAppearance=0x7f010040;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int actionMenuTextColor=0x7f010041;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeBackground=0x7f010044;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCloseButtonStyle=0x7f010043;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCloseDrawable=0x7f010046;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCopyDrawable=0x7f010048;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeCutDrawable=0x7f010047;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeFindDrawable=0x7f01004c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModePasteDrawable=0x7f010049;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModePopupWindowStyle=0x7f01004e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeSelectAllDrawable=0x7f01004a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeShareDrawable=0x7f01004b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeSplitBackground=0x7f010045;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeStyle=0x7f010042;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionModeWebSearchDrawable=0x7f01004d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionOverflowButtonStyle=0x7f010036;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int actionOverflowMenuStyle=0x7f010037;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int actionProviderClass=0x7f0100e4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int actionViewClass=0x7f0100e3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int activityChooserViewStyle=0x7f010060;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int actualImageScaleType=0x7f0100d1;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogButtonGroupStyle=0x7f010083;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int alertDialogCenterButtons=0x7f010084;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogStyle=0x7f010082;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int alertDialogTheme=0x7f010085;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int allowStacking=0x7f01009b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int arrowHeadLength=0x7f0100bc;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int arrowShaftLength=0x7f0100bd;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int autoCompleteTextViewStyle=0x7f01008a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int background=0x7f01000c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int backgroundImage=0x7f0100d2;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int backgroundSplit=0x7f01000e;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int backgroundStacked=0x7f01000d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int backgroundTint=0x7f010134;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static int backgroundTintMode=0x7f010135;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int barLength=0x7f0100be;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_hideable=0x7f010098;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_overlapTop=0x7f0100f3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int behavior_peekHeight=0x7f010097;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int borderWidth=0x7f0100c3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int borderlessButtonStyle=0x7f01005d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int bottomSheetDialogTheme=0x7f0100b5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int bottomSheetStyle=0x7f0100b6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarButtonStyle=0x7f01005a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarNegativeButtonStyle=0x7f010088;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarNeutralButtonStyle=0x7f010089;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarPositiveButtonStyle=0x7f010087;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonBarStyle=0x7f010059;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonPanelSideLayout=0x7f01001f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonStyle=0x7f01008b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int buttonStyleSmall=0x7f01008c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int buttonTint=0x7f0100ad;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static int buttonTintMode=0x7f0100ae;
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static int camera_id=0x7f01009d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int checkboxStyle=0x7f01008d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int checkedTextViewStyle=0x7f01008e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int closeIcon=0x7f0100f8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int closeItemLayout=0x7f01001c;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int collapseContentDescription=0x7f01012b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int collapseIcon=0x7f01012a;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int collapsedTitleGravity=0x7f0100aa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int collapsedTitleTextAppearance=0x7f0100a6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int color=0x7f0100b8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorAccent=0x7f01007b;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorButtonNormal=0x7f01007f;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlActivated=0x7f01007d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlHighlight=0x7f01007e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorControlNormal=0x7f01007c;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorPrimary=0x7f010079;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorPrimaryDark=0x7f01007a;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int colorSwitchThumbNormal=0x7f010080;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int commitIcon=0x7f0100fd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetEnd=0x7f010017;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetLeft=0x7f010018;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetRight=0x7f010019;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentInsetStart=0x7f010016;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int contentScrim=0x7f0100a7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int controlBackground=0x7f010081;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int counterEnabled=0x7f01011d;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int counterMaxLength=0x7f01011e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int counterOverflowTextAppearance=0x7f010120;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int counterTextAppearance=0x7f01011f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int customNavigationLayout=0x7f01000f;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int defaultQueryHint=0x7f0100f7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dialogPreferredPadding=0x7f010052;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dialogTheme=0x7f010051;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ */
+ public static int displayOptions=0x7f010005;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int divider=0x7f01000b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dividerHorizontal=0x7f01005f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dividerPadding=0x7f0100e0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dividerVertical=0x7f01005e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int drawableSize=0x7f0100ba;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int drawerArrowStyle=0x7f010000;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int dropDownListViewStyle=0x7f010071;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int dropdownListPreferredItemHeight=0x7f010055;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int editTextBackground=0x7f010066;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int editTextColor=0x7f010065;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int editTextStyle=0x7f01008f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int elevation=0x7f01001a;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int errorEnabled=0x7f01011b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int errorTextAppearance=0x7f01011c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int expandActivityOverflowButtonDrawable=0x7f01001e;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expanded=0x7f010024;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int expandedTitleGravity=0x7f0100ab;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMargin=0x7f0100a0;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginBottom=0x7f0100a4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginEnd=0x7f0100a3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginStart=0x7f0100a1;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int expandedTitleMarginTop=0x7f0100a2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int expandedTitleTextAppearance=0x7f0100a5;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ */
+ public static int fabSize=0x7f0100c1;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int fadeDuration=0x7f0100c6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int failureImage=0x7f0100cc;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int failureImageScaleType=0x7f0100cd;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int foregroundInsidePadding=0x7f0100c5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int gapBetweenBars=0x7f0100bb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int goIcon=0x7f0100f9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int headerLayout=0x7f0100eb;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int height=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hideOnContentScroll=0x7f010015;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hintAnimationEnabled=0x7f010121;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int hintEnabled=0x7f01011a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int hintTextAppearance=0x7f010119;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int homeAsUpIndicator=0x7f010057;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int homeLayout=0x7f010010;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int icon=0x7f010009;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int iconifiedByDefault=0x7f0100f5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int imageButtonStyle=0x7f010067;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int indeterminateProgressStyle=0x7f010012;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int initialActivityCount=0x7f01001d;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int insetForeground=0x7f0100f2;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int isLightTheme=0x7f010002;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int itemBackground=0x7f0100e9;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemIconTint=0x7f0100e7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemPadding=0x7f010014;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int itemTextAppearance=0x7f0100ea;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int itemTextColor=0x7f0100e8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int keylines=0x7f0100af;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout=0x7f0100f4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layoutManager=0x7f0100ee;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout_anchor=0x7f0100b2;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ */
+ public static int layout_anchorGravity=0x7f0100b4;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_behavior=0x7f0100b1;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ */
+ public static int layout_collapseMode=0x7f01009e;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_collapseParallaxMultiplier=0x7f01009f;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int layout_keyline=0x7f0100b3;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ */
+ public static int layout_scrollFlags=0x7f010025;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int layout_scrollInterpolator=0x7f010026;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listChoiceBackgroundIndicator=0x7f010078;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listDividerAlertDialog=0x7f010053;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listItemLayout=0x7f010023;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listLayout=0x7f010020;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int listPopupWindowStyle=0x7f010072;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeight=0x7f01006c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeightLarge=0x7f01006e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemHeightSmall=0x7f01006d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemPaddingLeft=0x7f01006f;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int listPreferredItemPaddingRight=0x7f010070;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int logo=0x7f01000a;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int logoDescription=0x7f01012e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int maxActionInlineWidth=0x7f010101;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int maxButtonHeight=0x7f010129;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int measureWithLargestChild=0x7f0100de;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int menu=0x7f0100e6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int metaButtonBarButtonStyle=0x7f01009a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int metaButtonBarStyle=0x7f010099;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int multiChoiceItemLayout=0x7f010021;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int navigationContentDescription=0x7f01012d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int navigationIcon=0x7f01012c;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ */
+ public static int navigationMode=0x7f010004;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int overlapAnchor=0x7f0100ec;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int overlayImage=0x7f0100d3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int paddingEnd=0x7f010132;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int paddingStart=0x7f010131;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int panelBackground=0x7f010075;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int panelMenuListTheme=0x7f010077;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int panelMenuListWidth=0x7f010076;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int placeholderImage=0x7f0100c8;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int placeholderImageScaleType=0x7f0100c9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupMenuStyle=0x7f010063;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupTheme=0x7f01001b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int popupWindowStyle=0x7f010064;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int preserveIconSpacing=0x7f0100e5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int pressedStateOverlayImage=0x7f0100d4;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int pressedTranslationZ=0x7f0100c2;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int progressBarAutoRotateInterval=0x7f0100d0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int progressBarImage=0x7f0100ce;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int progressBarImageScaleType=0x7f0100cf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int progressBarPadding=0x7f010013;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int progressBarStyle=0x7f010011;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int queryBackground=0x7f0100ff;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int queryHint=0x7f0100f6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int radioButtonStyle=0x7f010090;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyle=0x7f010091;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyleIndicator=0x7f010092;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int ratingBarStyleSmall=0x7f010093;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int retryImage=0x7f0100ca;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ */
+ public static int retryImageScaleType=0x7f0100cb;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int reverseLayout=0x7f0100f0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int rippleColor=0x7f0100c0;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundAsCircle=0x7f0100d5;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundBottomLeft=0x7f0100da;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundBottomRight=0x7f0100d9;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundTopLeft=0x7f0100d7;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundTopRight=0x7f0100d8;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundWithOverlayColor=0x7f0100db;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundedCornerRadius=0x7f0100d6;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundingBorderColor=0x7f0100dd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int roundingBorderWidth=0x7f0100dc;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchHintIcon=0x7f0100fb;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchIcon=0x7f0100fa;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int searchViewStyle=0x7f01006b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int seekBarStyle=0x7f010094;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int selectableItemBackground=0x7f01005b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int selectableItemBackgroundBorderless=0x7f01005c;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ */
+ public static int showAsAction=0x7f0100e1;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ */
+ public static int showDividers=0x7f0100df;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int showText=0x7f010108;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int show_fps=0x7f01009c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int singleChoiceItemLayout=0x7f010022;
+ /**
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int spanCount=0x7f0100ef;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int spinBars=0x7f0100b9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int spinnerDropDownItemStyle=0x7f010056;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int spinnerStyle=0x7f010095;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int splitTrack=0x7f010107;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int srcCompat=0x7f010027;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int stackFromEnd=0x7f0100f1;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int state_above_anchor=0x7f0100ed;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int statusBarBackground=0x7f0100b0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int statusBarScrim=0x7f0100a8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int submitBackground=0x7f010100;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int subtitle=0x7f010006;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int subtitleTextAppearance=0x7f010123;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int subtitleTextColor=0x7f010130;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int subtitleTextStyle=0x7f010008;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int suggestionRowLayout=0x7f0100fe;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int switchMinWidth=0x7f010105;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int switchPadding=0x7f010106;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int switchStyle=0x7f010096;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int switchTextAppearance=0x7f010104;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int tabBackground=0x7f01010c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabContentStart=0x7f01010b;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ */
+ public static int tabGravity=0x7f01010e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabIndicatorColor=0x7f010109;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabIndicatorHeight=0x7f01010a;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabMaxWidth=0x7f010110;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabMinWidth=0x7f01010f;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ */
+ public static int tabMode=0x7f01010d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPadding=0x7f010118;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingBottom=0x7f010117;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingEnd=0x7f010116;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingStart=0x7f010114;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabPaddingTop=0x7f010115;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabSelectedTextColor=0x7f010113;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int tabTextAppearance=0x7f010111;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int tabTextColor=0x7f010112;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ */
+ public static int textAllCaps=0x7f010028;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceLargePopupMenu=0x7f01004f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceListItem=0x7f010073;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceListItemSmall=0x7f010074;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSearchResultSubtitle=0x7f010069;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSearchResultTitle=0x7f010068;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int textAppearanceSmallPopupMenu=0x7f010050;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int textColorAlertDialogListItem=0x7f010086;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int textColorError=0x7f0100b7;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static int textColorSearchUrl=0x7f01006a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int theme=0x7f010133;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int thickness=0x7f0100bf;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int thumbTextPadding=0x7f010103;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int title=0x7f010003;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleEnabled=0x7f0100ac;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginBottom=0x7f010128;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginEnd=0x7f010126;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginStart=0x7f010125;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMarginTop=0x7f010127;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleMargins=0x7f010124;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int titleTextAppearance=0x7f010122;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int titleTextColor=0x7f01012f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int titleTextStyle=0x7f010007;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarId=0x7f0100a9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarNavigationButtonStyle=0x7f010062;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int toolbarStyle=0x7f010061;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int track=0x7f010102;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int useCompatPadding=0x7f0100c4;
+ /**
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int viewAspectRatio=0x7f0100c7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static int voiceIcon=0x7f0100fc;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionBar=0x7f010029;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionBarOverlay=0x7f01002b;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowActionModeOverlay=0x7f01002c;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedHeightMajor=0x7f010030;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedHeightMinor=0x7f01002e;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedWidthMajor=0x7f01002d;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowFixedWidthMinor=0x7f01002f;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowMinWidthMajor=0x7f010031;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowMinWidthMinor=0x7f010032;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int windowNoTitle=0x7f01002a;
+ }
+ public static final class bool {
+ public static int abc_action_bar_embed_tabs=0x7f080003;
+ public static int abc_action_bar_embed_tabs_pre_jb=0x7f080001;
+ public static int abc_action_bar_expanded_action_views_exclusive=0x7f080004;
+ public static int abc_allow_stacked_button_bar=0x7f080000;
+ public static int abc_config_actionMenuItemAllCaps=0x7f080005;
+ public static int abc_config_allowActionMenuItemTextWithIcon=0x7f080002;
+ public static int abc_config_closeDialogWhenTouchOutside=0x7f080006;
+ public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080007;
+ }
+ public static final class color {
+ public static int abc_background_cache_hint_selector_material_dark=0x7f0c0049;
+ public static int abc_background_cache_hint_selector_material_light=0x7f0c004a;
+ public static int abc_color_highlight_material=0x7f0c004b;
+ public static int abc_input_method_navigation_guard=0x7f0c0000;
+ public static int abc_primary_text_disable_only_material_dark=0x7f0c004c;
+ public static int abc_primary_text_disable_only_material_light=0x7f0c004d;
+ public static int abc_primary_text_material_dark=0x7f0c004e;
+ public static int abc_primary_text_material_light=0x7f0c004f;
+ public static int abc_search_url_text=0x7f0c0050;
+ public static int abc_search_url_text_normal=0x7f0c0001;
+ public static int abc_search_url_text_pressed=0x7f0c0002;
+ public static int abc_search_url_text_selected=0x7f0c0003;
+ public static int abc_secondary_text_material_dark=0x7f0c0051;
+ public static int abc_secondary_text_material_light=0x7f0c0052;
+ public static int accent_material_dark=0x7f0c0004;
+ public static int accent_material_light=0x7f0c0005;
+ public static int background_floating_material_dark=0x7f0c0006;
+ public static int background_floating_material_light=0x7f0c0007;
+ public static int background_material_dark=0x7f0c0008;
+ public static int background_material_light=0x7f0c0009;
+ public static int black_overlay=0x7f0c000a;
+ public static int bright_foreground_disabled_material_dark=0x7f0c000b;
+ public static int bright_foreground_disabled_material_light=0x7f0c000c;
+ public static int bright_foreground_inverse_material_dark=0x7f0c000d;
+ public static int bright_foreground_inverse_material_light=0x7f0c000e;
+ public static int bright_foreground_material_dark=0x7f0c000f;
+ public static int bright_foreground_material_light=0x7f0c0010;
+ public static int button_material_dark=0x7f0c0011;
+ public static int button_material_light=0x7f0c0012;
+ public static int catalyst_redbox_background=0x7f0c0013;
+ public static int colorAccent=0x7f0c0014;
+ public static int colorPrimary=0x7f0c0015;
+ public static int colorPrimaryDark=0x7f0c0016;
+ public static int design_fab_shadow_end_color=0x7f0c0017;
+ public static int design_fab_shadow_mid_color=0x7f0c0018;
+ public static int design_fab_shadow_start_color=0x7f0c0019;
+ public static int design_fab_stroke_end_inner_color=0x7f0c001a;
+ public static int design_fab_stroke_end_outer_color=0x7f0c001b;
+ public static int design_fab_stroke_top_inner_color=0x7f0c001c;
+ public static int design_fab_stroke_top_outer_color=0x7f0c001d;
+ public static int design_snackbar_background_color=0x7f0c001e;
+ public static int design_textinput_error_color_dark=0x7f0c001f;
+ public static int design_textinput_error_color_light=0x7f0c0020;
+ public static int dim_foreground_disabled_material_dark=0x7f0c0021;
+ public static int dim_foreground_disabled_material_light=0x7f0c0022;
+ public static int dim_foreground_material_dark=0x7f0c0023;
+ public static int dim_foreground_material_light=0x7f0c0024;
+ public static int foreground_material_dark=0x7f0c0025;
+ public static int foreground_material_light=0x7f0c0026;
+ public static int highlighted_text_material_dark=0x7f0c0027;
+ public static int highlighted_text_material_light=0x7f0c0028;
+ public static int hint_foreground_material_dark=0x7f0c0029;
+ public static int hint_foreground_material_light=0x7f0c002a;
+ public static int material_blue_grey_800=0x7f0c002b;
+ public static int material_blue_grey_900=0x7f0c002c;
+ public static int material_blue_grey_950=0x7f0c002d;
+ public static int material_deep_teal_200=0x7f0c002e;
+ public static int material_deep_teal_500=0x7f0c002f;
+ public static int material_grey_100=0x7f0c0030;
+ public static int material_grey_300=0x7f0c0031;
+ public static int material_grey_50=0x7f0c0032;
+ public static int material_grey_600=0x7f0c0033;
+ public static int material_grey_800=0x7f0c0034;
+ public static int material_grey_850=0x7f0c0035;
+ public static int material_grey_900=0x7f0c0036;
+ public static int primary_dark_material_dark=0x7f0c0037;
+ public static int primary_dark_material_light=0x7f0c0038;
+ public static int primary_material_dark=0x7f0c0039;
+ public static int primary_material_light=0x7f0c003a;
+ public static int primary_text_default_material_dark=0x7f0c003b;
+ public static int primary_text_default_material_light=0x7f0c003c;
+ public static int primary_text_disabled_material_dark=0x7f0c003d;
+ public static int primary_text_disabled_material_light=0x7f0c003e;
+ public static int ripple_material_dark=0x7f0c003f;
+ public static int ripple_material_light=0x7f0c0040;
+ public static int secondary_text_default_material_dark=0x7f0c0041;
+ public static int secondary_text_default_material_light=0x7f0c0042;
+ public static int secondary_text_disabled_material_dark=0x7f0c0043;
+ public static int secondary_text_disabled_material_light=0x7f0c0044;
+ public static int switch_thumb_disabled_material_dark=0x7f0c0045;
+ public static int switch_thumb_disabled_material_light=0x7f0c0046;
+ public static int switch_thumb_material_dark=0x7f0c0053;
+ public static int switch_thumb_material_light=0x7f0c0054;
+ public static int switch_thumb_normal_material_dark=0x7f0c0047;
+ public static int switch_thumb_normal_material_light=0x7f0c0048;
+ }
+ public static final class dimen {
+ public static int abc_action_bar_content_inset_material=0x7f09000d;
+ public static int abc_action_bar_default_height_material=0x7f090001;
+ public static int abc_action_bar_default_padding_end_material=0x7f09000e;
+ public static int abc_action_bar_default_padding_start_material=0x7f09000f;
+ public static int abc_action_bar_icon_vertical_padding_material=0x7f09001a;
+ public static int abc_action_bar_overflow_padding_end_material=0x7f09001b;
+ public static int abc_action_bar_overflow_padding_start_material=0x7f09001c;
+ public static int abc_action_bar_progress_bar_size=0x7f090002;
+ public static int abc_action_bar_stacked_max_height=0x7f09001d;
+ public static int abc_action_bar_stacked_tab_max_width=0x7f09001e;
+ public static int abc_action_bar_subtitle_bottom_margin_material=0x7f09001f;
+ public static int abc_action_bar_subtitle_top_margin_material=0x7f090020;
+ public static int abc_action_button_min_height_material=0x7f090021;
+ public static int abc_action_button_min_width_material=0x7f090022;
+ public static int abc_action_button_min_width_overflow_material=0x7f090023;
+ public static int abc_alert_dialog_button_bar_height=0x7f090000;
+ public static int abc_button_inset_horizontal_material=0x7f090024;
+ public static int abc_button_inset_vertical_material=0x7f090025;
+ public static int abc_button_padding_horizontal_material=0x7f090026;
+ public static int abc_button_padding_vertical_material=0x7f090027;
+ public static int abc_config_prefDialogWidth=0x7f090005;
+ public static int abc_control_corner_material=0x7f090028;
+ public static int abc_control_inset_material=0x7f090029;
+ public static int abc_control_padding_material=0x7f09002a;
+ public static int abc_dialog_fixed_height_major=0x7f090006;
+ public static int abc_dialog_fixed_height_minor=0x7f090007;
+ public static int abc_dialog_fixed_width_major=0x7f090008;
+ public static int abc_dialog_fixed_width_minor=0x7f090009;
+ public static int abc_dialog_list_padding_vertical_material=0x7f09002b;
+ public static int abc_dialog_min_width_major=0x7f09000a;
+ public static int abc_dialog_min_width_minor=0x7f09000b;
+ public static int abc_dialog_padding_material=0x7f09002c;
+ public static int abc_dialog_padding_top_material=0x7f09002d;
+ public static int abc_disabled_alpha_material_dark=0x7f09002e;
+ public static int abc_disabled_alpha_material_light=0x7f09002f;
+ public static int abc_dropdownitem_icon_width=0x7f090030;
+ public static int abc_dropdownitem_text_padding_left=0x7f090031;
+ public static int abc_dropdownitem_text_padding_right=0x7f090032;
+ public static int abc_edit_text_inset_bottom_material=0x7f090033;
+ public static int abc_edit_text_inset_horizontal_material=0x7f090034;
+ public static int abc_edit_text_inset_top_material=0x7f090035;
+ public static int abc_floating_window_z=0x7f090036;
+ public static int abc_list_item_padding_horizontal_material=0x7f090037;
+ public static int abc_panel_menu_list_width=0x7f090038;
+ public static int abc_search_view_preferred_width=0x7f090039;
+ public static int abc_search_view_text_min_width=0x7f09000c;
+ public static int abc_seekbar_track_background_height_material=0x7f09003a;
+ public static int abc_seekbar_track_progress_height_material=0x7f09003b;
+ public static int abc_select_dialog_padding_start_material=0x7f09003c;
+ public static int abc_switch_padding=0x7f090018;
+ public static int abc_text_size_body_1_material=0x7f09003d;
+ public static int abc_text_size_body_2_material=0x7f09003e;
+ public static int abc_text_size_button_material=0x7f09003f;
+ public static int abc_text_size_caption_material=0x7f090040;
+ public static int abc_text_size_display_1_material=0x7f090041;
+ public static int abc_text_size_display_2_material=0x7f090042;
+ public static int abc_text_size_display_3_material=0x7f090043;
+ public static int abc_text_size_display_4_material=0x7f090044;
+ public static int abc_text_size_headline_material=0x7f090045;
+ public static int abc_text_size_large_material=0x7f090046;
+ public static int abc_text_size_medium_material=0x7f090047;
+ public static int abc_text_size_menu_material=0x7f090048;
+ public static int abc_text_size_small_material=0x7f090049;
+ public static int abc_text_size_subhead_material=0x7f09004a;
+ public static int abc_text_size_subtitle_material_toolbar=0x7f090003;
+ public static int abc_text_size_title_material=0x7f09004b;
+ public static int abc_text_size_title_material_toolbar=0x7f090004;
+ public static int activity_horizontal_margin=0x7f090019;
+ public static int activity_vertical_margin=0x7f09004c;
+ public static int design_appbar_elevation=0x7f09004d;
+ public static int design_bottom_sheet_modal_elevation=0x7f09004e;
+ public static int design_bottom_sheet_modal_peek_height=0x7f09004f;
+ public static int design_fab_border_width=0x7f090050;
+ public static int design_fab_elevation=0x7f090051;
+ public static int design_fab_image_size=0x7f090052;
+ public static int design_fab_size_mini=0x7f090053;
+ public static int design_fab_size_normal=0x7f090054;
+ public static int design_fab_translation_z_pressed=0x7f090055;
+ public static int design_navigation_elevation=0x7f090056;
+ public static int design_navigation_icon_padding=0x7f090057;
+ public static int design_navigation_icon_size=0x7f090058;
+ public static int design_navigation_max_width=0x7f090010;
+ public static int design_navigation_padding_bottom=0x7f090059;
+ public static int design_navigation_separator_vertical_padding=0x7f09005a;
+ public static int design_snackbar_action_inline_max_width=0x7f090011;
+ public static int design_snackbar_background_corner_radius=0x7f090012;
+ public static int design_snackbar_elevation=0x7f09005b;
+ public static int design_snackbar_extra_spacing_horizontal=0x7f090013;
+ public static int design_snackbar_max_width=0x7f090014;
+ public static int design_snackbar_min_width=0x7f090015;
+ public static int design_snackbar_padding_horizontal=0x7f09005c;
+ public static int design_snackbar_padding_vertical=0x7f09005d;
+ public static int design_snackbar_padding_vertical_2lines=0x7f090016;
+ public static int design_snackbar_text_size=0x7f09005e;
+ public static int design_tab_max_width=0x7f09005f;
+ public static int design_tab_scrollable_min_width=0x7f090017;
+ public static int design_tab_text_size=0x7f090060;
+ public static int design_tab_text_size_2line=0x7f090061;
+ public static int disabled_alpha_material_dark=0x7f090062;
+ public static int disabled_alpha_material_light=0x7f090063;
+ public static int fab_margin=0x7f090064;
+ public static int highlight_alpha_material_colored=0x7f090065;
+ public static int highlight_alpha_material_dark=0x7f090066;
+ public static int highlight_alpha_material_light=0x7f090067;
+ public static int item_touch_helper_max_drag_scroll_per_frame=0x7f090068;
+ public static int item_touch_helper_swipe_escape_max_velocity=0x7f090069;
+ public static int item_touch_helper_swipe_escape_velocity=0x7f09006a;
+ public static int nav_header_height=0x7f09006b;
+ public static int nav_header_vertical_spacing=0x7f09006c;
+ public static int notification_large_icon_height=0x7f09006d;
+ public static int notification_large_icon_width=0x7f09006e;
+ public static int notification_subtext_size=0x7f09006f;
+ }
+ public static final class drawable {
+ public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+ public static int abc_action_bar_item_background_material=0x7f020001;
+ public static int abc_btn_borderless_material=0x7f020002;
+ public static int abc_btn_check_material=0x7f020003;
+ public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
+ public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
+ public static int abc_btn_colored_material=0x7f020006;
+ public static int abc_btn_default_mtrl_shape=0x7f020007;
+ public static int abc_btn_radio_material=0x7f020008;
+ public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
+ public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
+ public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
+ public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
+ public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
+ public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
+ public static int abc_cab_background_internal_bg=0x7f02000f;
+ public static int abc_cab_background_top_material=0x7f020010;
+ public static int abc_cab_background_top_mtrl_alpha=0x7f020011;
+ public static int abc_control_background_material=0x7f020012;
+ public static int abc_dialog_material_background_dark=0x7f020013;
+ public static int abc_dialog_material_background_light=0x7f020014;
+ public static int abc_edit_text_material=0x7f020015;
+ public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
+ public static int abc_ic_clear_mtrl_alpha=0x7f020017;
+ public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
+ public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
+ public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
+ public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
+ public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
+ public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
+ public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
+ public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
+ public static int abc_ic_search_api_mtrl_alpha=0x7f020020;
+ public static int abc_ic_star_black_16dp=0x7f020021;
+ public static int abc_ic_star_black_36dp=0x7f020022;
+ public static int abc_ic_star_half_black_16dp=0x7f020023;
+ public static int abc_ic_star_half_black_36dp=0x7f020024;
+ public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025;
+ public static int abc_item_background_holo_dark=0x7f020026;
+ public static int abc_item_background_holo_light=0x7f020027;
+ public static int abc_list_divider_mtrl_alpha=0x7f020028;
+ public static int abc_list_focused_holo=0x7f020029;
+ public static int abc_list_longpressed_holo=0x7f02002a;
+ public static int abc_list_pressed_holo_dark=0x7f02002b;
+ public static int abc_list_pressed_holo_light=0x7f02002c;
+ public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
+ public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
+ public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
+ public static int abc_list_selector_disabled_holo_light=0x7f020030;
+ public static int abc_list_selector_holo_dark=0x7f020031;
+ public static int abc_list_selector_holo_light=0x7f020032;
+ public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
+ public static int abc_popup_background_mtrl_mult=0x7f020034;
+ public static int abc_ratingbar_full_material=0x7f020035;
+ public static int abc_ratingbar_indicator_material=0x7f020036;
+ public static int abc_ratingbar_small_material=0x7f020037;
+ public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
+ public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
+ public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
+ public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
+ public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
+ public static int abc_seekbar_thumb_material=0x7f02003d;
+ public static int abc_seekbar_track_material=0x7f02003e;
+ public static int abc_spinner_mtrl_am_alpha=0x7f02003f;
+ public static int abc_spinner_textfield_background_material=0x7f020040;
+ public static int abc_switch_thumb_material=0x7f020041;
+ public static int abc_switch_track_mtrl_alpha=0x7f020042;
+ public static int abc_tab_indicator_material=0x7f020043;
+ public static int abc_tab_indicator_mtrl_alpha=0x7f020044;
+ public static int abc_text_cursor_material=0x7f020045;
+ public static int abc_textfield_activated_mtrl_alpha=0x7f020046;
+ public static int abc_textfield_default_mtrl_alpha=0x7f020047;
+ public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
+ public static int abc_textfield_search_default_mtrl_alpha=0x7f020049;
+ public static int abc_textfield_search_material=0x7f02004a;
+ public static int angle=0x7f02004b;
+ public static int button_background=0x7f02004c;
+ public static int design_fab_background=0x7f02004d;
+ public static int design_snackbar_background=0x7f02004e;
+ public static int ic_arrow_back_24dp=0x7f02004f;
+ public static int ic_camera_green=0x7f020050;
+ public static int ic_delete_white_24dp=0x7f020051;
+ public static int ic_done_all_24dp=0x7f020052;
+ public static int ic_find_in_page=0x7f020053;
+ public static int ic_flash_on_24dp=0x7f020054;
+ public static int ic_info_outline_white_24px=0x7f020055;
+ public static int ic_launcher_background=0x7f020056;
+ public static int ic_launcher_foreground=0x7f020057;
+ public static int ic_menu_camera=0x7f020058;
+ public static int ic_menu_gallery=0x7f020059;
+ public static int ic_menu_manage=0x7f02005a;
+ public static int ic_menu_send=0x7f02005b;
+ public static int ic_menu_share=0x7f02005c;
+ public static int ic_menu_slideshow=0x7f02005d;
+ public static int ic_menu_tag=0x7f02005e;
+ public static int ic_monochrome=0x7f02005f;
+ public static int ic_palette=0x7f020060;
+ public static int ic_photo_filter_white_24dp=0x7f020061;
+ public static int ic_settings=0x7f020062;
+ public static int ic_tag_bell=0x7f020063;
+ public static int ic_tag_game=0x7f020064;
+ public static int ic_tag_gift=0x7f020065;
+ public static int ic_tag_magnet=0x7f020066;
+ public static int ic_tag_rocket=0x7f020067;
+ public static int ic_tag_star=0x7f020068;
+ public static int ic_tag_tv=0x7f020069;
+ public static int notification_template_icon_bg=0x7f02006c;
+ public static int round_button=0x7f02006a;
+ public static int side_nav_bar=0x7f02006b;
+ }
+ public static final class id {
+ public static int about_container=0x7f0d0074;
+ public static int about_markdown=0x7f0d0075;
+ public static int about_shareapp=0x7f0d0076;
+ public static int about_view=0x7f0d0073;
+ public static int action0=0x7f0d008a;
+ public static int action_about=0x7f0d00a9;
+ public static int action_bar=0x7f0d0064;
+ public static int action_bar_activity_content=0x7f0d0000;
+ public static int action_bar_container=0x7f0d0063;
+ public static int action_bar_root=0x7f0d005f;
+ public static int action_bar_spinner=0x7f0d0001;
+ public static int action_bar_subtitle=0x7f0d0045;
+ public static int action_bar_title=0x7f0d0044;
+ public static int action_context_bar=0x7f0d0065;
+ public static int action_delete=0x7f0d00a6;
+ public static int action_divider=0x7f0d008e;
+ public static int action_menu_divider=0x7f0d0002;
+ public static int action_menu_presenter=0x7f0d0003;
+ public static int action_mode_bar=0x7f0d0061;
+ public static int action_mode_bar_stub=0x7f0d0060;
+ public static int action_mode_close_button=0x7f0d0046;
+ public static int action_share=0x7f0d00a8;
+ public static int action_tag=0x7f0d00a7;
+ public static int activity_chooser_view_content=0x7f0d0047;
+ public static int alertTitle=0x7f0d0053;
+ public static int always=0x7f0d003d;
+ public static int any=0x7f0d001b;
+ public static int back=0x7f0d001c;
+ public static int beginning=0x7f0d003b;
+ public static int bottom=0x7f0d0020;
+ public static int buttonBell=0x7f0d00a1;
+ public static int buttonGame=0x7f0d00a2;
+ public static int buttonGift=0x7f0d009f;
+ public static int buttonMagnet=0x7f0d00a4;
+ public static int buttonPanel=0x7f0d004e;
+ public static int buttonRocket=0x7f0d009e;
+ public static int buttonStar=0x7f0d00a3;
+ public static int buttonTv=0x7f0d00a0;
+ public static int cancel_action=0x7f0d008b;
+ public static int catalyst_redbox_title=0x7f0d0099;
+ public static int center=0x7f0d0021;
+ public static int centerCrop=0x7f0d0034;
+ public static int centerInside=0x7f0d0035;
+ public static int center_horizontal=0x7f0d0022;
+ public static int center_vertical=0x7f0d0023;
+ public static int checkbox=0x7f0d005c;
+ public static int chronometer=0x7f0d0091;
+ public static int clip_horizontal=0x7f0d002f;
+ public static int clip_vertical=0x7f0d0030;
+ public static int collapseActionView=0x7f0d003e;
+ public static int colorSquare=0x7f0d0087;
+ public static int contentPanel=0x7f0d0054;
+ public static int custom=0x7f0d005a;
+ public static int customPanel=0x7f0d0059;
+ public static int decor_content_parent=0x7f0d0062;
+ public static int default_activity_button=0x7f0d004a;
+ public static int design_bottom_sheet=0x7f0d007e;
+ public static int design_menu_item_action_area=0x7f0d0085;
+ public static int design_menu_item_action_area_stub=0x7f0d0084;
+ public static int design_menu_item_text=0x7f0d0083;
+ public static int design_navigation_view=0x7f0d0082;
+ public static int disableHome=0x7f0d000e;
+ public static int edit_query=0x7f0d0066;
+ public static int end=0x7f0d0024;
+ public static int end_padder=0x7f0d0096;
+ public static int enterAlways=0x7f0d0015;
+ public static int enterAlwaysCollapsed=0x7f0d0016;
+ public static int exitUntilCollapsed=0x7f0d0017;
+ public static int expand_activities_button=0x7f0d0048;
+ public static int expanded_menu=0x7f0d005b;
+ public static int fill=0x7f0d0031;
+ public static int fill_horizontal=0x7f0d0032;
+ public static int fill_vertical=0x7f0d0025;
+ public static int fitCenter=0x7f0d0036;
+ public static int fitEnd=0x7f0d0037;
+ public static int fitStart=0x7f0d0038;
+ public static int fitXY=0x7f0d0039;
+ public static int fixed=0x7f0d0042;
+ public static int focusCrop=0x7f0d003a;
+ public static int fps_text=0x7f0d0086;
+ public static int front=0x7f0d001d;
+ public static int gallery_image=0x7f0d0088;
+ public static int home=0x7f0d0004;
+ public static int homeAsUp=0x7f0d000f;
+ public static int hud=0x7f0d007b;
+ public static int icon=0x7f0d004c;
+ public static int ifRoom=0x7f0d003f;
+ public static int image=0x7f0d0049;
+ public static int imgDisplay=0x7f0d0089;
+ public static int info=0x7f0d0095;
+ public static int item_touch_helper_previous_elevation=0x7f0d0005;
+ public static int left=0x7f0d0026;
+ public static int line1=0x7f0d008f;
+ public static int line3=0x7f0d0093;
+ public static int linearLayout=0x7f0d009d;
+ public static int listMode=0x7f0d000b;
+ public static int list_item=0x7f0d004b;
+ public static int media_actions=0x7f0d008d;
+ public static int middle=0x7f0d003c;
+ public static int mini=0x7f0d0033;
+ public static int multiply=0x7f0d002a;
+ public static int navigation_header_container=0x7f0d0081;
+ public static int never=0x7f0d0040;
+ public static int none=0x7f0d0010;
+ public static int normal=0x7f0d000c;
+ public static int pager=0x7f0d0077;
+ public static int parallax=0x7f0d001e;
+ public static int parentPanel=0x7f0d0050;
+ public static int pin=0x7f0d001f;
+ public static int progress_circular=0x7f0d0006;
+ public static int progress_horizontal=0x7f0d0007;
+ public static int radio=0x7f0d005e;
+ public static int recyclerview=0x7f0d0078;
+ public static int right=0x7f0d0027;
+ public static int rn_frame_file=0x7f0d0098;
+ public static int rn_frame_method=0x7f0d0097;
+ public static int rn_redbox_reloadjs=0x7f0d009b;
+ public static int rn_redbox_stack=0x7f0d009a;
+ public static int scannedAnimation=0x7f0d007a;
+ public static int screen=0x7f0d002b;
+ public static int scroll=0x7f0d0018;
+ public static int scrollIndicatorDown=0x7f0d0058;
+ public static int scrollIndicatorUp=0x7f0d0055;
+ public static int scrollView=0x7f0d0056;
+ public static int scrollable=0x7f0d0043;
+ public static int search_badge=0x7f0d0068;
+ public static int search_bar=0x7f0d0067;
+ public static int search_button=0x7f0d0069;
+ public static int search_close_btn=0x7f0d006e;
+ public static int search_edit_frame=0x7f0d006a;
+ public static int search_go_btn=0x7f0d0070;
+ public static int search_mag_icon=0x7f0d006b;
+ public static int search_plate=0x7f0d006c;
+ public static int search_src_text=0x7f0d006d;
+ public static int search_voice_btn=0x7f0d0071;
+ public static int select_dialog_listview=0x7f0d0072;
+ public static int shortcut=0x7f0d005d;
+ public static int showCustom=0x7f0d0011;
+ public static int showHome=0x7f0d0012;
+ public static int showTitle=0x7f0d0013;
+ public static int snackbar_action=0x7f0d0080;
+ public static int snackbar_text=0x7f0d007f;
+ public static int snap=0x7f0d0019;
+ public static int spacer=0x7f0d004f;
+ public static int split_action_bar=0x7f0d0008;
+ public static int src_atop=0x7f0d002c;
+ public static int src_in=0x7f0d002d;
+ public static int src_over=0x7f0d002e;
+ public static int start=0x7f0d0028;
+ public static int status_bar_latest_event_content=0x7f0d008c;
+ public static int submit_area=0x7f0d006f;
+ public static int surfaceView=0x7f0d0079;
+ public static int tabMode=0x7f0d000d;
+ public static int tag_done=0x7f0d00a5;
+ public static int text=0x7f0d0094;
+ public static int text2=0x7f0d0092;
+ public static int textSpacerNoButtons=0x7f0d0057;
+ public static int textView=0x7f0d009c;
+ public static int time=0x7f0d0090;
+ public static int title=0x7f0d004d;
+ public static int title_template=0x7f0d0052;
+ public static int top=0x7f0d0029;
+ public static int topPanel=0x7f0d0051;
+ public static int touch_outside=0x7f0d007d;
+ public static int up=0x7f0d0009;
+ public static int useLogo=0x7f0d0014;
+ public static int view_offset_helper=0x7f0d000a;
+ public static int wait_spinner=0x7f0d007c;
+ public static int withText=0x7f0d0041;
+ public static int wrap_content=0x7f0d001a;
+ }
+ public static final class integer {
+ public static int abc_config_activityDefaultDur=0x7f0b0002;
+ public static int abc_config_activityShortDur=0x7f0b0003;
+ public static int abc_max_action_buttons=0x7f0b0000;
+ public static int bottom_sheet_slide_duration=0x7f0b0004;
+ public static int cancel_button_image_alpha=0x7f0b0005;
+ public static int design_snackbar_text_max_lines=0x7f0b0001;
+ public static int status_bar_notification_info_maxnum=0x7f0b0006;
+ }
+ public static final class layout {
+ public static int abc_action_bar_title_item=0x7f040000;
+ public static int abc_action_bar_up_container=0x7f040001;
+ public static int abc_action_bar_view_list_nav_layout=0x7f040002;
+ public static int abc_action_menu_item_layout=0x7f040003;
+ public static int abc_action_menu_layout=0x7f040004;
+ public static int abc_action_mode_bar=0x7f040005;
+ public static int abc_action_mode_close_item_material=0x7f040006;
+ public static int abc_activity_chooser_view=0x7f040007;
+ public static int abc_activity_chooser_view_list_item=0x7f040008;
+ public static int abc_alert_dialog_button_bar_material=0x7f040009;
+ public static int abc_alert_dialog_material=0x7f04000a;
+ public static int abc_dialog_title_material=0x7f04000b;
+ public static int abc_expanded_menu_layout=0x7f04000c;
+ public static int abc_list_menu_item_checkbox=0x7f04000d;
+ public static int abc_list_menu_item_icon=0x7f04000e;
+ public static int abc_list_menu_item_layout=0x7f04000f;
+ public static int abc_list_menu_item_radio=0x7f040010;
+ public static int abc_popup_menu_item_layout=0x7f040011;
+ public static int abc_screen_content_include=0x7f040012;
+ public static int abc_screen_simple=0x7f040013;
+ public static int abc_screen_simple_overlay_action_mode=0x7f040014;
+ public static int abc_screen_toolbar=0x7f040015;
+ public static int abc_search_dropdown_item_icons_2line=0x7f040016;
+ public static int abc_search_view=0x7f040017;
+ public static int abc_select_dialog_material=0x7f040018;
+ public static int about_view=0x7f040019;
+ public static int activity_fullscreen_view=0x7f04001a;
+ public static int activity_gallery=0x7f04001b;
+ public static int activity_main=0x7f04001c;
+ public static int activity_open_note_scanner=0x7f04001d;
+ public static int activity_settings=0x7f04001e;
+ public static int design_bottom_sheet_dialog=0x7f04001f;
+ public static int design_layout_snackbar=0x7f040020;
+ public static int design_layout_snackbar_include=0x7f040021;
+ public static int design_layout_tab_icon=0x7f040022;
+ public static int design_layout_tab_text=0x7f040023;
+ public static int design_menu_item_action_area=0x7f040024;
+ public static int design_navigation_item=0x7f040025;
+ public static int design_navigation_item_header=0x7f040026;
+ public static int design_navigation_item_separator=0x7f040027;
+ public static int design_navigation_item_subheader=0x7f040028;
+ public static int design_navigation_menu=0x7f040029;
+ public static int design_navigation_menu_item=0x7f04002a;
+ public static int fps_view=0x7f04002b;
+ public static int gallery_item=0x7f04002c;
+ public static int layout_fullscreen_image=0x7f04002d;
+ public static int notification_media_action=0x7f04002e;
+ public static int notification_media_cancel_action=0x7f04002f;
+ public static int notification_template_big_media=0x7f040030;
+ public static int notification_template_big_media_narrow=0x7f040031;
+ public static int notification_template_lines=0x7f040032;
+ public static int notification_template_media=0x7f040033;
+ public static int notification_template_part_chronometer=0x7f040034;
+ public static int notification_template_part_time=0x7f040035;
+ public static int redbox_item_frame=0x7f040036;
+ public static int redbox_item_title=0x7f040037;
+ public static int redbox_view=0x7f040038;
+ public static int select_dialog_item_material=0x7f040039;
+ public static int select_dialog_multichoice_material=0x7f04003a;
+ public static int select_dialog_singlechoice_material=0x7f04003b;
+ public static int support_simple_spinner_dropdown_item=0x7f04003c;
+ public static int tageditor_view=0x7f04003d;
+ }
+ public static final class menu {
+ public static int menu_gallery=0x7f0e0000;
+ public static int menu_imagepager=0x7f0e0001;
+ }
+ public static final class mipmap {
+ public static int ic_launcher=0x7f030000;
+ public static int ic_launcher_round=0x7f030001;
+ }
+ public static final class string {
+ public static int abc_action_bar_home_description=0x7f070000;
+ public static int abc_action_bar_home_description_format=0x7f070001;
+ public static int abc_action_bar_home_subtitle_description_format=0x7f070002;
+ public static int abc_action_bar_up_description=0x7f070003;
+ public static int abc_action_menu_overflow_description=0x7f070004;
+ public static int abc_action_mode_done=0x7f070005;
+ public static int abc_activity_chooser_view_see_all=0x7f070006;
+ public static int abc_activitychooserview_choose_application=0x7f070007;
+ public static int abc_capital_off=0x7f070008;
+ public static int abc_capital_on=0x7f070009;
+ public static int abc_search_hint=0x7f07000a;
+ public static int abc_searchview_description_clear=0x7f07000b;
+ public static int abc_searchview_description_query=0x7f07000c;
+ public static int abc_searchview_description_search=0x7f07000d;
+ public static int abc_searchview_description_submit=0x7f07000e;
+ public static int abc_searchview_description_voice=0x7f07000f;
+ public static int abc_shareactionprovider_share_with=0x7f070010;
+ public static int abc_shareactionprovider_share_with_application=0x7f070011;
+ public static int abc_toolbar_collapse_description=0x7f070012;
+ public static int about_filename=0x7f070014;
+ public static int action_about=0x7f070015;
+ public static int action_delete=0x7f070016;
+ public static int action_share=0x7f070017;
+ public static int action_tag=0x7f070018;
+ public static int activateunknown=0x7f070019;
+ public static int answer_cancel=0x7f07001a;
+ public static int answer_later=0x7f07001b;
+ public static int answer_no=0x7f07001c;
+ public static int answer_yes=0x7f07001d;
+ public static int app_name=0x7f07001e;
+ public static int appbar_scrolling_view_behavior=0x7f07005a;
+ public static int ask_install_opencv=0x7f07001f;
+ public static int autoMode=0x7f070020;
+ public static int automatic_tagging=0x7f070021;
+ public static int automatic_tagging_summary=0x7f070022;
+ public static int basic_settings=0x7f070023;
+ public static int bitcoin_summary=0x7f070024;
+ public static int bottom_sheet_behavior=0x7f07005b;
+ public static int bug_rotate=0x7f070025;
+ public static int bug_rotate_summary=0x7f070026;
+ public static int bwMode=0x7f070027;
+ public static int catalyst_debugjs=0x7f070028;
+ public static int catalyst_debugjs_off=0x7f07005c;
+ public static int catalyst_element_inspector=0x7f070029;
+ public static int catalyst_element_inspector_off=0x7f07005d;
+ public static int catalyst_hot_module_replacement=0x7f07005e;
+ public static int catalyst_hot_module_replacement_off=0x7f07005f;
+ public static int catalyst_jsload_error=0x7f07002a;
+ public static int catalyst_jsload_message=0x7f07002b;
+ public static int catalyst_jsload_title=0x7f07002c;
+ public static int catalyst_live_reload=0x7f070060;
+ public static int catalyst_live_reload_off=0x7f070061;
+ public static int catalyst_perf_monitor=0x7f070062;
+ public static int catalyst_perf_monitor_off=0x7f070063;
+ public static int catalyst_reloadjs=0x7f07002d;
+ public static int catalyst_remotedbg_error=0x7f070064;
+ public static int catalyst_remotedbg_message=0x7f070065;
+ public static int catalyst_settings=0x7f07002e;
+ public static int catalyst_settings_title=0x7f07002f;
+ public static int catalyst_start_profile=0x7f070066;
+ public static int catalyst_stop_profile=0x7f070067;
+ public static int character_counter_pattern=0x7f070068;
+ public static int colorMode=0x7f070030;
+ public static int confirm_delete_multiple_text=0x7f070031;
+ public static int confirm_delete_text=0x7f070032;
+ public static int confirm_install_opencv=0x7f070033;
+ public static int confirm_title=0x7f070034;
+ public static int dogecoin_summary=0x7f070069;
+ public static int donate=0x7f070035;
+ public static int donate_summary=0x7f070036;
+ public static int downloading=0x7f070037;
+ public static int downloading_opencv=0x7f070038;
+ public static int feedback_and_contributions=0x7f070039;
+ public static int filterModeOff=0x7f07003a;
+ public static int filterModeOn=0x7f07003b;
+ public static int github_project=0x7f07003c;
+ public static int github_project_summary=0x7f07003d;
+ public static int githubdownload=0x7f07003e;
+ public static int googleplay=0x7f07003f;
+ public static int images_scanned=0x7f070040;
+ public static int install_opencv=0x7f070041;
+ public static int manualMode=0x7f070042;
+ public static int match_aspect=0x7f070043;
+ public static int match_aspect_summary=0x7f070044;
+ public static int messageactivateunknown=0x7f070045;
+ public static int paypal_summary=0x7f070046;
+ public static int scanningToast=0x7f070047;
+ public static int send_message=0x7f070048;
+ public static int send_message_summary=0x7f070049;
+ public static int settings=0x7f07004a;
+ public static int share_app=0x7f07004b;
+ public static int share_app_body=0x7f07004c;
+ public static int share_app_subject=0x7f07004d;
+ public static int share_app_using=0x7f07004e;
+ public static int share_snackbar=0x7f07004f;
+ public static int stats_optin_text=0x7f070050;
+ public static int stats_optin_title=0x7f070051;
+ public static int status_bar_notification_info_overflow=0x7f070013;
+ public static int storage_folder=0x7f070052;
+ public static int storage_folder_summary=0x7f070053;
+ public static int telegram=0x7f070054;
+ public static int telegram_summary=0x7f070055;
+ public static int title_activity_full_image=0x7f070056;
+ public static int title_activity_gallery=0x7f070057;
+ public static int title_activity_open_note_scanner=0x7f07006a;
+ public static int usage_stats=0x7f070058;
+ public static int usage_stats_summary=0x7f070059;
+ }
+ public static final class style {
+ public static int AlertDialog_AppCompat=0x7f0a0088;
+ public static int AlertDialog_AppCompat_Light=0x7f0a0089;
+ public static int Animation_AppCompat_Dialog=0x7f0a008a;
+ public static int Animation_AppCompat_DropDownUp=0x7f0a008b;
+ public static int Animation_Catalyst_RedBox=0x7f0a008c;
+ public static int Animation_Design_BottomSheetDialog=0x7f0a008d;
+ public static int AppTheme=0x7f0a008e;
+ public static int AppTheme_AppBarOverlay=0x7f0a008f;
+ public static int AppTheme_NoActionBar=0x7f0a0037;
+ public static int AppTheme_PopupOverlay=0x7f0a0090;
+ public static int Base_AlertDialog_AppCompat=0x7f0a0091;
+ public static int Base_AlertDialog_AppCompat_Light=0x7f0a0092;
+ public static int Base_Animation_AppCompat_Dialog=0x7f0a0093;
+ public static int Base_Animation_AppCompat_DropDownUp=0x7f0a0094;
+ public static int Base_DialogWindowTitle_AppCompat=0x7f0a0095;
+ public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0a0096;
+ public static int Base_TextAppearance_AppCompat=0x7f0a0038;
+ public static int Base_TextAppearance_AppCompat_Body1=0x7f0a0039;
+ public static int Base_TextAppearance_AppCompat_Body2=0x7f0a003a;
+ public static int Base_TextAppearance_AppCompat_Button=0x7f0a0021;
+ public static int Base_TextAppearance_AppCompat_Caption=0x7f0a003b;
+ public static int Base_TextAppearance_AppCompat_Display1=0x7f0a003c;
+ public static int Base_TextAppearance_AppCompat_Display2=0x7f0a003d;
+ public static int Base_TextAppearance_AppCompat_Display3=0x7f0a003e;
+ public static int Base_TextAppearance_AppCompat_Display4=0x7f0a003f;
+ public static int Base_TextAppearance_AppCompat_Headline=0x7f0a0040;
+ public static int Base_TextAppearance_AppCompat_Inverse=0x7f0a000c;
+ public static int Base_TextAppearance_AppCompat_Large=0x7f0a0041;
+ public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000d;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0042;
+ public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0043;
+ public static int Base_TextAppearance_AppCompat_Medium=0x7f0a0044;
+ public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000e;
+ public static int Base_TextAppearance_AppCompat_Menu=0x7f0a0045;
+ public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0a0097;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0046;
+ public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0047;
+ public static int Base_TextAppearance_AppCompat_Small=0x7f0a0048;
+ public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000f;
+ public static int Base_TextAppearance_AppCompat_Subhead=0x7f0a0049;
+ public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a0010;
+ public static int Base_TextAppearance_AppCompat_Title=0x7f0a004a;
+ public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0011;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0081;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004b;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004c;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004d;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004e;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a004f;
+ public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0050;
+ public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0051;
+ public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0082;
+ public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a0098;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0052;
+ public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0053;
+ public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0054;
+ public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0055;
+ public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a0099;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0056;
+ public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0057;
+ public static int Base_Theme_AppCompat=0x7f0a0058;
+ public static int Base_Theme_AppCompat_CompactMenu=0x7f0a009a;
+ public static int Base_Theme_AppCompat_Dialog=0x7f0a0012;
+ public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0a009b;
+ public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a009c;
+ public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a009d;
+ public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0002;
+ public static int Base_Theme_AppCompat_Light=0x7f0a0059;
+ public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a009e;
+ public static int Base_Theme_AppCompat_Light_Dialog=0x7f0a0013;
+ public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a009f;
+ public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a0;
+ public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a00a1;
+ public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0003;
+ public static int Base_ThemeOverlay_AppCompat=0x7f0a00a2;
+ public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00a3;
+ public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00a4;
+ public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00a5;
+ public static int Base_ThemeOverlay_AppCompat_Light=0x7f0a00a6;
+ public static int Base_V11_Theme_AppCompat_Dialog=0x7f0a0014;
+ public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a0015;
+ public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a001d;
+ public static int Base_V12_Widget_AppCompat_EditText=0x7f0a001e;
+ public static int Base_V21_Theme_AppCompat=0x7f0a005a;
+ public static int Base_V21_Theme_AppCompat_Dialog=0x7f0a005b;
+ public static int Base_V21_Theme_AppCompat_Light=0x7f0a005c;
+ public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005d;
+ public static int Base_V22_Theme_AppCompat=0x7f0a007f;
+ public static int Base_V22_Theme_AppCompat_Light=0x7f0a0080;
+ public static int Base_V23_Theme_AppCompat=0x7f0a0083;
+ public static int Base_V23_Theme_AppCompat_Light=0x7f0a0084;
+ public static int Base_V7_Theme_AppCompat=0x7f0a00a7;
+ public static int Base_V7_Theme_AppCompat_Dialog=0x7f0a00a8;
+ public static int Base_V7_Theme_AppCompat_Light=0x7f0a00a9;
+ public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00aa;
+ public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ab;
+ public static int Base_V7_Widget_AppCompat_EditText=0x7f0a00ac;
+ public static int Base_Widget_AppCompat_ActionBar=0x7f0a00ad;
+ public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00ae;
+ public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00af;
+ public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a005e;
+ public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a005f;
+ public static int Base_Widget_AppCompat_ActionButton=0x7f0a0060;
+ public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0061;
+ public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0062;
+ public static int Base_Widget_AppCompat_ActionMode=0x7f0a00b0;
+ public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00b1;
+ public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a001f;
+ public static int Base_Widget_AppCompat_Button=0x7f0a0063;
+ public static int Base_Widget_AppCompat_Button_Borderless=0x7f0a0064;
+ public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0065;
+ public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00b2;
+ public static int Base_Widget_AppCompat_Button_Colored=0x7f0a0085;
+ public static int Base_Widget_AppCompat_Button_Small=0x7f0a0066;
+ public static int Base_Widget_AppCompat_ButtonBar=0x7f0a0067;
+ public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00b3;
+ public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0068;
+ public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0069;
+ public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00b4;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
+ public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00b5;
+ public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006a;
+ public static int Base_Widget_AppCompat_EditText=0x7f0a0020;
+ public static int Base_Widget_AppCompat_ImageButton=0x7f0a006b;
+ public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00b6;
+ public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00b7;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00b8;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006c;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a006d;
+ public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a006e;
+ public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a006f;
+ public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0070;
+ public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0071;
+ public static int Base_Widget_AppCompat_ListView=0x7f0a0072;
+ public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0073;
+ public static int Base_Widget_AppCompat_ListView_Menu=0x7f0a0074;
+ public static int Base_Widget_AppCompat_PopupMenu=0x7f0a0075;
+ public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0076;
+ public static int Base_Widget_AppCompat_PopupWindow=0x7f0a00b9;
+ public static int Base_Widget_AppCompat_ProgressBar=0x7f0a0016;
+ public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0017;
+ public static int Base_Widget_AppCompat_RatingBar=0x7f0a0077;
+ public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0086;
+ public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0a0087;
+ public static int Base_Widget_AppCompat_SearchView=0x7f0a00ba;
+ public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00bb;
+ public static int Base_Widget_AppCompat_SeekBar=0x7f0a0078;
+ public static int Base_Widget_AppCompat_Spinner=0x7f0a0079;
+ public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0004;
+ public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007a;
+ public static int Base_Widget_AppCompat_Toolbar=0x7f0a00bc;
+ public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007b;
+ public static int Base_Widget_Design_TabLayout=0x7f0a00bd;
+ public static int FullscreenActionBarStyle=0x7f0a00be;
+ public static int Platform_AppCompat=0x7f0a0018;
+ public static int Platform_AppCompat_Light=0x7f0a0019;
+ public static int Platform_ThemeOverlay_AppCompat=0x7f0a007c;
+ public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a007d;
+ public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0a007e;
+ public static int Platform_V11_AppCompat=0x7f0a001a;
+ public static int Platform_V11_AppCompat_Light=0x7f0a001b;
+ public static int Platform_V14_AppCompat=0x7f0a0022;
+ public static int Platform_V14_AppCompat_Light=0x7f0a0023;
+ public static int Platform_Widget_AppCompat_Spinner=0x7f0a001c;
+ public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0029;
+ public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002a;
+ public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002b;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002c;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002d;
+ public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a002e;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a002f;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0030;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0031;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0032;
+ public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0033;
+ public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0034;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0035;
+ public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0036;
+ public static int TextAppearance_AppCompat=0x7f0a00bf;
+ public static int TextAppearance_AppCompat_Body1=0x7f0a00c0;
+ public static int TextAppearance_AppCompat_Body2=0x7f0a00c1;
+ public static int TextAppearance_AppCompat_Button=0x7f0a00c2;
+ public static int TextAppearance_AppCompat_Caption=0x7f0a00c3;
+ public static int TextAppearance_AppCompat_Display1=0x7f0a00c4;
+ public static int TextAppearance_AppCompat_Display2=0x7f0a00c5;
+ public static int TextAppearance_AppCompat_Display3=0x7f0a00c6;
+ public static int TextAppearance_AppCompat_Display4=0x7f0a00c7;
+ public static int TextAppearance_AppCompat_Headline=0x7f0a00c8;
+ public static int TextAppearance_AppCompat_Inverse=0x7f0a00c9;
+ public static int TextAppearance_AppCompat_Large=0x7f0a00ca;
+ public static int TextAppearance_AppCompat_Large_Inverse=0x7f0a00cb;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00cc;
+ public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00cd;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00ce;
+ public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00cf;
+ public static int TextAppearance_AppCompat_Medium=0x7f0a00d0;
+ public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d1;
+ public static int TextAppearance_AppCompat_Menu=0x7f0a00d2;
+ public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00d3;
+ public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00d4;
+ public static int TextAppearance_AppCompat_Small=0x7f0a00d5;
+ public static int TextAppearance_AppCompat_Small_Inverse=0x7f0a00d6;
+ public static int TextAppearance_AppCompat_Subhead=0x7f0a00d7;
+ public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00d8;
+ public static int TextAppearance_AppCompat_Title=0x7f0a00d9;
+ public static int TextAppearance_AppCompat_Title_Inverse=0x7f0a00da;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00db;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00dc;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00dd;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00de;
+ public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00df;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e0;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e1;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00e2;
+ public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00e3;
+ public static int TextAppearance_AppCompat_Widget_Button=0x7f0a00e4;
+ public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00e5;
+ public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00e6;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00e7;
+ public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00e8;
+ public static int TextAppearance_AppCompat_Widget_Switch=0x7f0a00e9;
+ public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00ea;
+ public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a00eb;
+ public static int TextAppearance_Design_Counter=0x7f0a00ec;
+ public static int TextAppearance_Design_Counter_Overflow=0x7f0a00ed;
+ public static int TextAppearance_Design_Error=0x7f0a00ee;
+ public static int TextAppearance_Design_Hint=0x7f0a00ef;
+ public static int TextAppearance_Design_Snackbar_Message=0x7f0a00f0;
+ public static int TextAppearance_Design_Tab=0x7f0a00f1;
+ public static int TextAppearance_StatusBar_EventContent=0x7f0a0024;
+ public static int TextAppearance_StatusBar_EventContent_Info=0x7f0a0025;
+ public static int TextAppearance_StatusBar_EventContent_Line2=0x7f0a0026;
+ public static int TextAppearance_StatusBar_EventContent_Time=0x7f0a0027;
+ public static int TextAppearance_StatusBar_EventContent_Title=0x7f0a0028;
+ public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f2;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f3;
+ public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f4;
+ public static int Theme=0x7f0a00f5;
+ public static int Theme_AppCompat=0x7f0a00f6;
+ public static int Theme_AppCompat_CompactMenu=0x7f0a00f7;
+ public static int Theme_AppCompat_DayNight=0x7f0a0005;
+ public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0006;
+ public static int Theme_AppCompat_DayNight_Dialog=0x7f0a0007;
+ public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0008;
+ public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0009;
+ public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a000a;
+ public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000b;
+ public static int Theme_AppCompat_Dialog=0x7f0a00f8;
+ public static int Theme_AppCompat_Dialog_Alert=0x7f0a00f9;
+ public static int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fa;
+ public static int Theme_AppCompat_DialogWhenLarge=0x7f0a00fb;
+ public static int Theme_AppCompat_Light=0x7f0a00fc;
+ public static int Theme_AppCompat_Light_DarkActionBar=0x7f0a00fd;
+ public static int Theme_AppCompat_Light_Dialog=0x7f0a00fe;
+ public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0a00ff;
+ public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0100;
+ public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0101;
+ public static int Theme_AppCompat_Light_NoActionBar=0x7f0a0102;
+ public static int Theme_AppCompat_NoActionBar=0x7f0a0103;
+ public static int Theme_Catalyst=0x7f0a0104;
+ public static int Theme_Catalyst_RedBox=0x7f0a0105;
+ public static int Theme_Design=0x7f0a0106;
+ public static int Theme_Design_BottomSheetDialog=0x7f0a0107;
+ public static int Theme_Design_Light=0x7f0a0108;
+ public static int Theme_Design_Light_BottomSheetDialog=0x7f0a0109;
+ public static int Theme_Design_Light_NoActionBar=0x7f0a010a;
+ public static int Theme_Design_NoActionBar=0x7f0a010b;
+ public static int Theme_ReactNative_AppCompat_Light=0x7f0a010c;
+ public static int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0a010d;
+ public static int ThemeOverlay_AppCompat=0x7f0a010e;
+ public static int ThemeOverlay_AppCompat_ActionBar=0x7f0a010f;
+ public static int ThemeOverlay_AppCompat_Dark=0x7f0a0110;
+ public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0111;
+ public static int ThemeOverlay_AppCompat_Light=0x7f0a0112;
+ public static int Widget_AppCompat_ActionBar=0x7f0a0113;
+ public static int Widget_AppCompat_ActionBar_Solid=0x7f0a0114;
+ public static int Widget_AppCompat_ActionBar_TabBar=0x7f0a0115;
+ public static int Widget_AppCompat_ActionBar_TabText=0x7f0a0116;
+ public static int Widget_AppCompat_ActionBar_TabView=0x7f0a0117;
+ public static int Widget_AppCompat_ActionButton=0x7f0a0118;
+ public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0119;
+ public static int Widget_AppCompat_ActionButton_Overflow=0x7f0a011a;
+ public static int Widget_AppCompat_ActionMode=0x7f0a011b;
+ public static int Widget_AppCompat_ActivityChooserView=0x7f0a011c;
+ public static int Widget_AppCompat_AutoCompleteTextView=0x7f0a011d;
+ public static int Widget_AppCompat_Button=0x7f0a011e;
+ public static int Widget_AppCompat_Button_Borderless=0x7f0a011f;
+ public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0120;
+ public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0121;
+ public static int Widget_AppCompat_Button_Colored=0x7f0a0122;
+ public static int Widget_AppCompat_Button_Small=0x7f0a0123;
+ public static int Widget_AppCompat_ButtonBar=0x7f0a0124;
+ public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0125;
+ public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0126;
+ public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0127;
+ public static int Widget_AppCompat_CompoundButton_Switch=0x7f0a0128;
+ public static int Widget_AppCompat_DrawerArrowToggle=0x7f0a0129;
+ public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012a;
+ public static int Widget_AppCompat_EditText=0x7f0a012b;
+ public static int Widget_AppCompat_ImageButton=0x7f0a012c;
+ public static int Widget_AppCompat_Light_ActionBar=0x7f0a012d;
+ public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a012e;
+ public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012f;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0130;
+ public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0131;
+ public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0132;
+ public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0133;
+ public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0134;
+ public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0135;
+ public static int Widget_AppCompat_Light_ActionButton=0x7f0a0136;
+ public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0137;
+ public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0138;
+ public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0139;
+ public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013a;
+ public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013b;
+ public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a013c;
+ public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0a013d;
+ public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0a013e;
+ public static int Widget_AppCompat_Light_PopupMenu=0x7f0a013f;
+ public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0140;
+ public static int Widget_AppCompat_Light_SearchView=0x7f0a0141;
+ public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0142;
+ public static int Widget_AppCompat_ListPopupWindow=0x7f0a0143;
+ public static int Widget_AppCompat_ListView=0x7f0a0144;
+ public static int Widget_AppCompat_ListView_DropDown=0x7f0a0145;
+ public static int Widget_AppCompat_ListView_Menu=0x7f0a0146;
+ public static int Widget_AppCompat_PopupMenu=0x7f0a0147;
+ public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0148;
+ public static int Widget_AppCompat_PopupWindow=0x7f0a0149;
+ public static int Widget_AppCompat_ProgressBar=0x7f0a014a;
+ public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a014b;
+ public static int Widget_AppCompat_RatingBar=0x7f0a014c;
+ public static int Widget_AppCompat_RatingBar_Indicator=0x7f0a014d;
+ public static int Widget_AppCompat_RatingBar_Small=0x7f0a014e;
+ public static int Widget_AppCompat_SearchView=0x7f0a014f;
+ public static int Widget_AppCompat_SearchView_ActionBar=0x7f0a0150;
+ public static int Widget_AppCompat_SeekBar=0x7f0a0151;
+ public static int Widget_AppCompat_Spinner=0x7f0a0152;
+ public static int Widget_AppCompat_Spinner_DropDown=0x7f0a0153;
+ public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0154;
+ public static int Widget_AppCompat_Spinner_Underlined=0x7f0a0155;
+ public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0156;
+ public static int Widget_AppCompat_Toolbar=0x7f0a0157;
+ public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0158;
+ public static int Widget_Design_AppBarLayout=0x7f0a0159;
+ public static int Widget_Design_BottomSheet_Modal=0x7f0a015a;
+ public static int Widget_Design_CollapsingToolbar=0x7f0a015b;
+ public static int Widget_Design_CoordinatorLayout=0x7f0a015c;
+ public static int Widget_Design_FloatingActionButton=0x7f0a015d;
+ public static int Widget_Design_NavigationView=0x7f0a015e;
+ public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0a015f;
+ public static int Widget_Design_Snackbar=0x7f0a0160;
+ public static int Widget_Design_TabLayout=0x7f0a0001;
+ public static int Widget_Design_TextInputLayout=0x7f0a0161;
+ }
+ public static final class xml {
+ public static int preferences=0x7f060000;
+ public static int settings=0x7f060001;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a ActionBar.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#background}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:background
+ */
+ public static int ActionBar_background = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundSplit
+ */
+ public static int ActionBar_backgroundSplit = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundStacked}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundStacked
+ */
+ public static int ActionBar_backgroundStacked = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetEnd
+ */
+ public static int ActionBar_contentInsetEnd = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetLeft
+ */
+ public static int ActionBar_contentInsetLeft = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetRight
+ */
+ public static int ActionBar_contentInsetRight = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetStart
+ */
+ public static int ActionBar_contentInsetStart = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#customNavigationLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:customNavigationLayout
+ */
+ public static int ActionBar_customNavigationLayout = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#displayOptions}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ @attr name com.documentscanner:displayOptions
+ */
+ public static int ActionBar_displayOptions = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#divider}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:divider
+ */
+ public static int ActionBar_divider = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int ActionBar_elevation = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#height}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:height
+ */
+ public static int ActionBar_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hideOnContentScroll}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hideOnContentScroll
+ */
+ public static int ActionBar_hideOnContentScroll = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeAsUpIndicator
+ */
+ public static int ActionBar_homeAsUpIndicator = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeLayout
+ */
+ public static int ActionBar_homeLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#icon}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:icon
+ */
+ public static int ActionBar_icon = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#indeterminateProgressStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:indeterminateProgressStyle
+ */
+ public static int ActionBar_indeterminateProgressStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemPadding
+ */
+ public static int ActionBar_itemPadding = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logo}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:logo
+ */
+ public static int ActionBar_logo = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationMode}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ @attr name com.documentscanner:navigationMode
+ */
+ public static int ActionBar_navigationMode = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int ActionBar_popupTheme = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:progressBarPadding
+ */
+ public static int ActionBar_progressBarPadding = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:progressBarStyle
+ */
+ public static int ActionBar_progressBarStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitle
+ */
+ public static int ActionBar_subtitle = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextStyle
+ */
+ public static int ActionBar_subtitleTextStyle = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int ActionBar_title = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextStyle
+ */
+ public static int ActionBar_titleTextStyle = 5;
+ /** Attributes that can be used with a ActionBarLayout.
+
+ @see #ActionBarLayout_android_layout_gravity
+ */
+ public static final int[] ActionBarLayout = {
+ 0x010100b3
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #ActionBarLayout} array.
+ @attr name android:layout_gravity
+ */
+ public static int ActionBarLayout_android_layout_gravity = 0;
+ /** Attributes that can be used with a ActionMenuItemView.
+
+ @see #ActionMenuItemView_android_minWidth
+ */
+ public static final int[] ActionMenuItemView = {
+ 0x0101013f
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#minWidth}
+ attribute's value can be found in the {@link #ActionMenuItemView} array.
+ @attr name android:minWidth
+ */
+ public static int ActionMenuItemView_android_minWidth = 0;
+ /** Attributes that can be used with a ActionMenuView.
+ */
+ public static final int[] ActionMenuView = {
+
+ };
+ /** Attributes that can be used with a ActionMode.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#background}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:background
+ */
+ public static int ActionMode_background = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:backgroundSplit
+ */
+ public static int ActionMode_backgroundSplit = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#closeItemLayout}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:closeItemLayout
+ */
+ public static int ActionMode_closeItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#height}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:height
+ */
+ public static int ActionMode_height = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextStyle
+ */
+ public static int ActionMode_subtitleTextStyle = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextStyle
+ */
+ public static int ActionMode_titleTextStyle = 1;
+ /** Attributes that can be used with a ActivityChooserView.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandActivityOverflowButtonDrawable}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:expandActivityOverflowButtonDrawable
+ */
+ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#initialActivityCount}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:initialActivityCount
+ */
+ public static int ActivityChooserView_initialActivityCount = 0;
+ /** Attributes that can be used with a AlertDialog.
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+ @attr name android:layout
+ */
+ public static int AlertDialog_android_layout = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonPanelSideLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonPanelSideLayout
+ */
+ public static int AlertDialog_buttonPanelSideLayout = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listItemLayout
+ */
+ public static int AlertDialog_listItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listLayout
+ */
+ public static int AlertDialog_listLayout = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#multiChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:multiChoiceItemLayout
+ */
+ public static int AlertDialog_multiChoiceItemLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#singleChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:singleChoiceItemLayout
+ */
+ public static int AlertDialog_singleChoiceItemLayout = 4;
+ /** Attributes that can be used with a AppBarLayout.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+ @attr name android:background
+ */
+ public static int AppBarLayout_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int AppBarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expanded}
+ attribute's value can be found in the {@link #AppBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expanded
+ */
+ public static int AppBarLayout_expanded = 2;
+ /** Attributes that can be used with a AppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_scrollFlags}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scroll
0x1
+
exitUntilCollapsed
0x2
+
enterAlways
0x4
+
enterAlwaysCollapsed
0x8
+
snap
0x10
+
+ @attr name com.documentscanner:layout_scrollFlags
+ */
+ public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_scrollInterpolator}
+ attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout_scrollInterpolator
+ */
+ public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
+ /** Attributes that can be used with a AppCompatImageView.
+
This symbol is the offset where the {@link android.R.attr#src}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+ @attr name android:src
+ */
+ public static int AppCompatImageView_android_src = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#srcCompat}
+ attribute's value can be found in the {@link #AppCompatImageView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:srcCompat
+ */
+ public static int AppCompatImageView_srcCompat = 1;
+ /** Attributes that can be used with a AppCompatTextView.
+
This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+ @attr name android:textAppearance
+ */
+ public static int AppCompatTextView_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner:textAllCaps
+ */
+ public static int AppCompatTextView_textAllCaps = 1;
+ /** Attributes that can be used with a AppCompatTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarDivider}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarDivider
+ */
+ public static int AppCompatTheme_actionBarDivider = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarItemBackground
+ */
+ public static int AppCompatTheme_actionBarItemBackground = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarPopupTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarPopupTheme
+ */
+ public static int AppCompatTheme_actionBarPopupTheme = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarSize}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ @attr name com.documentscanner:actionBarSize
+ */
+ public static int AppCompatTheme_actionBarSize = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarSplitStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarSplitStyle
+ */
+ public static int AppCompatTheme_actionBarSplitStyle = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarStyle
+ */
+ public static int AppCompatTheme_actionBarStyle = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabBarStyle
+ */
+ public static int AppCompatTheme_actionBarTabBarStyle = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabStyle
+ */
+ public static int AppCompatTheme_actionBarTabStyle = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTabTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTabTextStyle
+ */
+ public static int AppCompatTheme_actionBarTabTextStyle = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarTheme
+ */
+ public static int AppCompatTheme_actionBarTheme = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionBarWidgetTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionBarWidgetTheme
+ */
+ public static int AppCompatTheme_actionBarWidgetTheme = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionButtonStyle
+ */
+ public static int AppCompatTheme_actionButtonStyle = 49;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionDropDownStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionDropDownStyle
+ */
+ public static int AppCompatTheme_actionDropDownStyle = 45;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionMenuTextAppearance}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionMenuTextAppearance
+ */
+ public static int AppCompatTheme_actionMenuTextAppearance = 25;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionMenuTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:actionMenuTextColor
+ */
+ public static int AppCompatTheme_actionMenuTextColor = 26;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeBackground
+ */
+ public static int AppCompatTheme_actionModeBackground = 29;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCloseButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCloseButtonStyle
+ */
+ public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCloseDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCloseDrawable
+ */
+ public static int AppCompatTheme_actionModeCloseDrawable = 31;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCopyDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCopyDrawable
+ */
+ public static int AppCompatTheme_actionModeCopyDrawable = 33;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeCutDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeCutDrawable
+ */
+ public static int AppCompatTheme_actionModeCutDrawable = 32;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeFindDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeFindDrawable
+ */
+ public static int AppCompatTheme_actionModeFindDrawable = 37;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModePasteDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModePasteDrawable
+ */
+ public static int AppCompatTheme_actionModePasteDrawable = 34;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModePopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModePopupWindowStyle
+ */
+ public static int AppCompatTheme_actionModePopupWindowStyle = 39;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeSelectAllDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeSelectAllDrawable
+ */
+ public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeShareDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeShareDrawable
+ */
+ public static int AppCompatTheme_actionModeShareDrawable = 36;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeSplitBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeSplitBackground
+ */
+ public static int AppCompatTheme_actionModeSplitBackground = 30;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeStyle
+ */
+ public static int AppCompatTheme_actionModeStyle = 27;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionModeWebSearchDrawable}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionModeWebSearchDrawable
+ */
+ public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionOverflowButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionOverflowButtonStyle
+ */
+ public static int AppCompatTheme_actionOverflowButtonStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionOverflowMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionOverflowMenuStyle
+ */
+ public static int AppCompatTheme_actionOverflowMenuStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#activityChooserViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:activityChooserViewStyle
+ */
+ public static int AppCompatTheme_activityChooserViewStyle = 57;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogButtonGroupStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogButtonGroupStyle
+ */
+ public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogCenterButtons}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:alertDialogCenterButtons
+ */
+ public static int AppCompatTheme_alertDialogCenterButtons = 93;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogStyle
+ */
+ public static int AppCompatTheme_alertDialogStyle = 91;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#alertDialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:alertDialogTheme
+ */
+ public static int AppCompatTheme_alertDialogTheme = 94;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static int AppCompatTheme_android_windowAnimationStyle = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+ @attr name android:windowIsFloating
+ */
+ public static int AppCompatTheme_android_windowIsFloating = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#autoCompleteTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:autoCompleteTextViewStyle
+ */
+ public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#borderlessButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:borderlessButtonStyle
+ */
+ public static int AppCompatTheme_borderlessButtonStyle = 54;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarButtonStyle = 51;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarNegativeButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarNegativeButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarNeutralButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarNeutralButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarPositiveButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarPositiveButtonStyle
+ */
+ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonBarStyle
+ */
+ public static int AppCompatTheme_buttonBarStyle = 50;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonStyle
+ */
+ public static int AppCompatTheme_buttonStyle = 100;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:buttonStyleSmall
+ */
+ public static int AppCompatTheme_buttonStyleSmall = 101;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#checkboxStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:checkboxStyle
+ */
+ public static int AppCompatTheme_checkboxStyle = 102;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#checkedTextViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:checkedTextViewStyle
+ */
+ public static int AppCompatTheme_checkedTextViewStyle = 103;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorAccent}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorAccent
+ */
+ public static int AppCompatTheme_colorAccent = 84;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorButtonNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorButtonNormal
+ */
+ public static int AppCompatTheme_colorButtonNormal = 88;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlActivated}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlActivated
+ */
+ public static int AppCompatTheme_colorControlActivated = 86;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlHighlight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlHighlight
+ */
+ public static int AppCompatTheme_colorControlHighlight = 87;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorControlNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorControlNormal
+ */
+ public static int AppCompatTheme_colorControlNormal = 85;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorPrimary}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorPrimary
+ */
+ public static int AppCompatTheme_colorPrimary = 82;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorPrimaryDark}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorPrimaryDark
+ */
+ public static int AppCompatTheme_colorPrimaryDark = 83;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#colorSwitchThumbNormal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:colorSwitchThumbNormal
+ */
+ public static int AppCompatTheme_colorSwitchThumbNormal = 89;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#controlBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:controlBackground
+ */
+ public static int AppCompatTheme_controlBackground = 90;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dialogPreferredPadding}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dialogPreferredPadding
+ */
+ public static int AppCompatTheme_dialogPreferredPadding = 43;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dialogTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dialogTheme
+ */
+ public static int AppCompatTheme_dialogTheme = 42;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerHorizontal}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dividerHorizontal
+ */
+ public static int AppCompatTheme_dividerHorizontal = 56;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerVertical}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dividerVertical
+ */
+ public static int AppCompatTheme_dividerVertical = 55;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dropDownListViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:dropDownListViewStyle
+ */
+ public static int AppCompatTheme_dropDownListViewStyle = 74;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dropdownListPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dropdownListPreferredItemHeight
+ */
+ public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:editTextBackground
+ */
+ public static int AppCompatTheme_editTextBackground = 63;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextColor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:editTextColor
+ */
+ public static int AppCompatTheme_editTextColor = 62;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#editTextStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:editTextStyle
+ */
+ public static int AppCompatTheme_editTextStyle = 104;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:homeAsUpIndicator
+ */
+ public static int AppCompatTheme_homeAsUpIndicator = 48;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#imageButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:imageButtonStyle
+ */
+ public static int AppCompatTheme_imageButtonStyle = 64;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listChoiceBackgroundIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listChoiceBackgroundIndicator
+ */
+ public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listDividerAlertDialog}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listDividerAlertDialog
+ */
+ public static int AppCompatTheme_listDividerAlertDialog = 44;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPopupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:listPopupWindowStyle
+ */
+ public static int AppCompatTheme_listPopupWindowStyle = 75;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeight
+ */
+ public static int AppCompatTheme_listPreferredItemHeight = 69;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeightLarge}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeightLarge
+ */
+ public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemHeightSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemHeightSmall
+ */
+ public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemPaddingLeft}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemPaddingLeft
+ */
+ public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#listPreferredItemPaddingRight}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:listPreferredItemPaddingRight
+ */
+ public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:panelBackground
+ */
+ public static int AppCompatTheme_panelBackground = 78;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelMenuListTheme}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:panelMenuListTheme
+ */
+ public static int AppCompatTheme_panelMenuListTheme = 80;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#panelMenuListWidth}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:panelMenuListWidth
+ */
+ public static int AppCompatTheme_panelMenuListWidth = 79;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupMenuStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupMenuStyle
+ */
+ public static int AppCompatTheme_popupMenuStyle = 60;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupWindowStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupWindowStyle
+ */
+ public static int AppCompatTheme_popupWindowStyle = 61;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#radioButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:radioButtonStyle
+ */
+ public static int AppCompatTheme_radioButtonStyle = 105;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyle
+ */
+ public static int AppCompatTheme_ratingBarStyle = 106;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyleIndicator}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyleIndicator
+ */
+ public static int AppCompatTheme_ratingBarStyleIndicator = 107;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#ratingBarStyleSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:ratingBarStyleSmall
+ */
+ public static int AppCompatTheme_ratingBarStyleSmall = 108;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchViewStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchViewStyle
+ */
+ public static int AppCompatTheme_searchViewStyle = 68;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#seekBarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:seekBarStyle
+ */
+ public static int AppCompatTheme_seekBarStyle = 109;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#selectableItemBackground}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:selectableItemBackground
+ */
+ public static int AppCompatTheme_selectableItemBackground = 52;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#selectableItemBackgroundBorderless}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:selectableItemBackgroundBorderless
+ */
+ public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinnerDropDownItemStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:spinnerDropDownItemStyle
+ */
+ public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinnerStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:spinnerStyle
+ */
+ public static int AppCompatTheme_spinnerStyle = 110;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:switchStyle
+ */
+ public static int AppCompatTheme_switchStyle = 111;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceLargePopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceLargePopupMenu
+ */
+ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceListItem
+ */
+ public static int AppCompatTheme_textAppearanceListItem = 76;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceListItemSmall}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceListItemSmall
+ */
+ public static int AppCompatTheme_textAppearanceListItemSmall = 77;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSearchResultSubtitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSearchResultSubtitle
+ */
+ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSearchResultTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSearchResultTitle
+ */
+ public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAppearanceSmallPopupMenu}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:textAppearanceSmallPopupMenu
+ */
+ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorAlertDialogListItem}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:textColorAlertDialogListItem
+ */
+ public static int AppCompatTheme_textColorAlertDialogListItem = 95;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorSearchUrl}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:textColorSearchUrl
+ */
+ public static int AppCompatTheme_textColorSearchUrl = 67;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarNavigationButtonStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarNavigationButtonStyle
+ */
+ public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarStyle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarStyle
+ */
+ public static int AppCompatTheme_toolbarStyle = 58;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionBar}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionBar
+ */
+ public static int AppCompatTheme_windowActionBar = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionBarOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionBarOverlay
+ */
+ public static int AppCompatTheme_windowActionBarOverlay = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowActionModeOverlay}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowActionModeOverlay
+ */
+ public static int AppCompatTheme_windowActionModeOverlay = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedHeightMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedHeightMajor
+ */
+ public static int AppCompatTheme_windowFixedHeightMajor = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedHeightMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedHeightMinor
+ */
+ public static int AppCompatTheme_windowFixedHeightMinor = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedWidthMajor
+ */
+ public static int AppCompatTheme_windowFixedWidthMajor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowFixedWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowFixedWidthMinor
+ */
+ public static int AppCompatTheme_windowFixedWidthMinor = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowMinWidthMajor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowMinWidthMajor
+ */
+ public static int AppCompatTheme_windowMinWidthMajor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowMinWidthMinor}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowMinWidthMinor
+ */
+ public static int AppCompatTheme_windowMinWidthMinor = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#windowNoTitle}
+ attribute's value can be found in the {@link #AppCompatTheme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:windowNoTitle
+ */
+ public static int AppCompatTheme_windowNoTitle = 3;
+ /** Attributes that can be used with a BottomSheetBehavior_Params.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_hideable}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_hideable
+ */
+ public static int BottomSheetBehavior_Params_behavior_hideable = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_peekHeight}
+ attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_peekHeight
+ */
+ public static int BottomSheetBehavior_Params_behavior_peekHeight = 0;
+ /** Attributes that can be used with a ButtonBarContainerTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#metaButtonBarButtonStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:metaButtonBarButtonStyle
+ */
+ public static int ButtonBarContainerTheme_metaButtonBarButtonStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#metaButtonBarStyle}
+ attribute's value can be found in the {@link #ButtonBarContainerTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:metaButtonBarStyle
+ */
+ public static int ButtonBarContainerTheme_metaButtonBarStyle = 0;
+ /** Attributes that can be used with a ButtonBarLayout.
+
+ @see #ButtonBarLayout_allowStacking
+ */
+ public static final int[] ButtonBarLayout = {
+ 0x7f01009b
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#allowStacking}
+ attribute's value can be found in the {@link #ButtonBarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:allowStacking
+ */
+ public static int ButtonBarLayout_allowStacking = 0;
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name com.documentscanner:camera_id
+ */
+ public static int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:show_fps
+ */
+ public static int CameraBridgeViewBase_show_fps = 0;
+ /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_collapseMode}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
pin
1
+
parallax
2
+
+ @attr name com.documentscanner:layout_collapseMode
+ */
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_collapseParallaxMultiplier}
+ attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_collapseParallaxMultiplier
+ */
+ public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
+ /** Attributes that can be used with a CollapsingToolbarLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapsedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:collapsedTitleGravity
+ */
+ public static int CollapsingToolbarLayout_collapsedTitleGravity = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapsedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:collapsedTitleTextAppearance
+ */
+ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentScrim
+ */
+ public static int CollapsingToolbarLayout_contentScrim = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleGravity}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
center
0x11
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:expandedTitleGravity
+ */
+ public static int CollapsingToolbarLayout_expandedTitleGravity = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMargin}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMargin
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginBottom}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginBottom
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginEnd}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginEnd
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginStart}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginStart
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleMarginTop}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:expandedTitleMarginTop
+ */
+ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#expandedTitleTextAppearance}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:expandedTitleTextAppearance
+ */
+ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#statusBarScrim}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:statusBarScrim
+ */
+ public static int CollapsingToolbarLayout_statusBarScrim = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int CollapsingToolbarLayout_title = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleEnabled}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleEnabled
+ */
+ public static int CollapsingToolbarLayout_titleEnabled = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#toolbarId}
+ attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:toolbarId
+ */
+ public static int CollapsingToolbarLayout_toolbarId = 10;
+ /** Attributes that can be used with a CompoundButton.
+
This symbol is the offset where the {@link android.R.attr#button}
+ attribute's value can be found in the {@link #CompoundButton} array.
+ @attr name android:button
+ */
+ public static int CompoundButton_android_button = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonTint}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:buttonTint
+ */
+ public static int CompoundButton_buttonTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#buttonTintMode}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:buttonTintMode
+ */
+ public static int CompoundButton_buttonTintMode = 2;
+ /** Attributes that can be used with a CoordinatorLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#keylines}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:keylines
+ */
+ public static int CoordinatorLayout_keylines = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#statusBarBackground}
+ attribute's value can be found in the {@link #CoordinatorLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:statusBarBackground
+ */
+ public static int CoordinatorLayout_statusBarBackground = 1;
+ /** Attributes that can be used with a CoordinatorLayout_LayoutParams.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+ @attr name android:layout_gravity
+ */
+ public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_anchor}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout_anchor
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_anchor = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_anchorGravity}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
top
0x30
+
bottom
0x50
+
left
0x03
+
right
0x05
+
center_vertical
0x10
+
fill_vertical
0x70
+
center_horizontal
0x01
+
fill_horizontal
0x07
+
center
0x11
+
fill
0x77
+
clip_vertical
0x80
+
clip_horizontal
0x08
+
start
0x00800003
+
end
0x00800005
+
+ @attr name com.documentscanner:layout_anchorGravity
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_behavior}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_behavior
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_behavior = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout_keyline}
+ attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layout_keyline
+ */
+ public static int CoordinatorLayout_LayoutParams_layout_keyline = 3;
+ /** Attributes that can be used with a DesignTheme.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#bottomSheetDialogTheme}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:bottomSheetDialogTheme
+ */
+ public static int DesignTheme_bottomSheetDialogTheme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#bottomSheetStyle}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:bottomSheetStyle
+ */
+ public static int DesignTheme_bottomSheetStyle = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textColorError}
+ attribute's value can be found in the {@link #DesignTheme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:textColorError
+ */
+ public static int DesignTheme_textColorError = 2;
+ /** Attributes that can be used with a DrawerArrowToggle.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#arrowHeadLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:arrowHeadLength
+ */
+ public static int DrawerArrowToggle_arrowHeadLength = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#arrowShaftLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:arrowShaftLength
+ */
+ public static int DrawerArrowToggle_arrowShaftLength = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#barLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:barLength
+ */
+ public static int DrawerArrowToggle_barLength = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#color}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:color
+ */
+ public static int DrawerArrowToggle_color = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#drawableSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:drawableSize
+ */
+ public static int DrawerArrowToggle_drawableSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#gapBetweenBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:gapBetweenBars
+ */
+ public static int DrawerArrowToggle_gapBetweenBars = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spinBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:spinBars
+ */
+ public static int DrawerArrowToggle_spinBars = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#thickness}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:thickness
+ */
+ public static int DrawerArrowToggle_thickness = 7;
+ /** Attributes that can be used with a FloatingActionButton.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:backgroundTint
+ */
+ public static int FloatingActionButton_backgroundTint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:backgroundTintMode
+ */
+ public static int FloatingActionButton_backgroundTintMode = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#borderWidth}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:borderWidth
+ */
+ public static int FloatingActionButton_borderWidth = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int FloatingActionButton_elevation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#fabSize}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
mini
1
+
+ @attr name com.documentscanner:fabSize
+ */
+ public static int FloatingActionButton_fabSize = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#pressedTranslationZ}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:pressedTranslationZ
+ */
+ public static int FloatingActionButton_pressedTranslationZ = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#rippleColor}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:rippleColor
+ */
+ public static int FloatingActionButton_rippleColor = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#useCompatPadding}
+ attribute's value can be found in the {@link #FloatingActionButton} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:useCompatPadding
+ */
+ public static int FloatingActionButton_useCompatPadding = 5;
+ /** Attributes that can be used with a ForegroundLinearLayout.
+
This symbol is the offset where the {@link android.R.attr#foreground}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foreground
+ */
+ public static int ForegroundLinearLayout_android_foreground = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#foregroundGravity}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+ @attr name android:foregroundGravity
+ */
+ public static int ForegroundLinearLayout_android_foregroundGravity = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#foregroundInsidePadding}
+ attribute's value can be found in the {@link #ForegroundLinearLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:foregroundInsidePadding
+ */
+ public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
+ /** Attributes that can be used with a GenericDraweeView.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actualImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:actualImageScaleType
+ */
+ public static int GenericDraweeView_actualImageScaleType = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:backgroundImage
+ */
+ public static int GenericDraweeView_backgroundImage = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#fadeDuration}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:fadeDuration
+ */
+ public static int GenericDraweeView_fadeDuration = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#failureImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:failureImage
+ */
+ public static int GenericDraweeView_failureImage = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#failureImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:failureImageScaleType
+ */
+ public static int GenericDraweeView_failureImageScaleType = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#overlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:overlayImage
+ */
+ public static int GenericDraweeView_overlayImage = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#placeholderImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:placeholderImage
+ */
+ public static int GenericDraweeView_placeholderImage = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#placeholderImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:placeholderImageScaleType
+ */
+ public static int GenericDraweeView_placeholderImageScaleType = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#pressedStateOverlayImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:pressedStateOverlayImage
+ */
+ public static int GenericDraweeView_pressedStateOverlayImage = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarAutoRotateInterval}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:progressBarAutoRotateInterval
+ */
+ public static int GenericDraweeView_progressBarAutoRotateInterval = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:progressBarImage
+ */
+ public static int GenericDraweeView_progressBarImage = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#progressBarImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:progressBarImageScaleType
+ */
+ public static int GenericDraweeView_progressBarImageScaleType = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#retryImage}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:retryImage
+ */
+ public static int GenericDraweeView_retryImage = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#retryImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
-1
+
fitXY
0
+
fitStart
1
+
fitCenter
2
+
fitEnd
3
+
center
4
+
centerInside
5
+
centerCrop
6
+
focusCrop
7
+
+ @attr name com.documentscanner:retryImageScaleType
+ */
+ public static int GenericDraweeView_retryImageScaleType = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundAsCircle}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundAsCircle
+ */
+ public static int GenericDraweeView_roundAsCircle = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundBottomLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundBottomLeft
+ */
+ public static int GenericDraweeView_roundBottomLeft = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundBottomRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundBottomRight
+ */
+ public static int GenericDraweeView_roundBottomRight = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundTopLeft}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundTopLeft
+ */
+ public static int GenericDraweeView_roundTopLeft = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundTopRight}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundTopRight
+ */
+ public static int GenericDraweeView_roundTopRight = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundWithOverlayColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundWithOverlayColor
+ */
+ public static int GenericDraweeView_roundWithOverlayColor = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundedCornerRadius}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundedCornerRadius
+ */
+ public static int GenericDraweeView_roundedCornerRadius = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundingBorderColor}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundingBorderColor
+ */
+ public static int GenericDraweeView_roundingBorderColor = 23;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#roundingBorderWidth}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:roundingBorderWidth
+ */
+ public static int GenericDraweeView_roundingBorderWidth = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#viewAspectRatio}
+ attribute's value can be found in the {@link #GenericDraweeView} array.
+
+
+
Must be a floating point value, such as "1.2".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:viewAspectRatio
+ */
+ public static int GenericDraweeView_viewAspectRatio = 1;
+ /** Attributes that can be used with a LinearLayoutCompat.
+
This symbol is the offset where the {@link android.R.attr#baselineAligned}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAligned
+ */
+ public static int LinearLayoutCompat_android_baselineAligned = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAlignedChildIndex
+ */
+ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:gravity
+ */
+ public static int LinearLayoutCompat_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:orientation
+ */
+ public static int LinearLayoutCompat_android_orientation = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#weightSum}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:weightSum
+ */
+ public static int LinearLayoutCompat_android_weightSum = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#divider}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:divider
+ */
+ public static int LinearLayoutCompat_divider = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#dividerPadding}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:dividerPadding
+ */
+ public static int LinearLayoutCompat_dividerPadding = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#measureWithLargestChild}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:measureWithLargestChild
+ */
+ public static int LinearLayoutCompat_measureWithLargestChild = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showDividers}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ @attr name com.documentscanner:showDividers
+ */
+ public static int LinearLayoutCompat_showDividers = 7;
+ /** Attributes that can be used with a LinearLayoutCompat_Layout.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_gravity
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_height}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_height
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_height = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_weight}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_weight
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_width}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_width
+ */
+ public static int LinearLayoutCompat_Layout_android_layout_width = 1;
+ /** Attributes that can be used with a ListPopupWindow.
+
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ /** Attributes that can be used with a MenuGroup.
+
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:checkableBehavior
+ */
+ public static int MenuGroup_android_checkableBehavior = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:enabled
+ */
+ public static int MenuGroup_android_enabled = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:id
+ */
+ public static int MenuGroup_android_id = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:menuCategory
+ */
+ public static int MenuGroup_android_menuCategory = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:orderInCategory
+ */
+ public static int MenuGroup_android_orderInCategory = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:visible
+ */
+ public static int MenuGroup_android_visible = 2;
+ /** Attributes that can be used with a MenuItem.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionLayout}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:actionLayout
+ */
+ public static int MenuItem_actionLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionProviderClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:actionProviderClass
+ */
+ public static int MenuItem_actionProviderClass = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#actionViewClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:actionViewClass
+ */
+ public static int MenuItem_actionViewClass = 15;
+ /**
+
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:alphabeticShortcut
+ */
+ public static int MenuItem_android_alphabeticShortcut = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checkable}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checkable
+ */
+ public static int MenuItem_android_checkable = 11;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checked}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checked
+ */
+ public static int MenuItem_android_checked = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:enabled
+ */
+ public static int MenuItem_android_enabled = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:icon
+ */
+ public static int MenuItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:id
+ */
+ public static int MenuItem_android_id = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:menuCategory
+ */
+ public static int MenuItem_android_menuCategory = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#numericShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:numericShortcut
+ */
+ public static int MenuItem_android_numericShortcut = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#onClick}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:onClick
+ */
+ public static int MenuItem_android_onClick = 12;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:orderInCategory
+ */
+ public static int MenuItem_android_orderInCategory = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#title}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:title
+ */
+ public static int MenuItem_android_title = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#titleCondensed}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:titleCondensed
+ */
+ public static int MenuItem_android_titleCondensed = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:visible
+ */
+ public static int MenuItem_android_visible = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showAsAction}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ @attr name com.documentscanner:showAsAction
+ */
+ public static int MenuItem_showAsAction = 13;
+ /** Attributes that can be used with a MenuView.
+
This symbol is the offset where the {@link android.R.attr#headerBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:headerBackground
+ */
+ public static int MenuView_android_headerBackground = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:horizontalDivider
+ */
+ public static int MenuView_android_horizontalDivider = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemBackground
+ */
+ public static int MenuView_android_itemBackground = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemIconDisabledAlpha
+ */
+ public static int MenuView_android_itemIconDisabledAlpha = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemTextAppearance
+ */
+ public static int MenuView_android_itemTextAppearance = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#verticalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:verticalDivider
+ */
+ public static int MenuView_android_verticalDivider = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static int MenuView_android_windowAnimationStyle = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#preserveIconSpacing}
+ attribute's value can be found in the {@link #MenuView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:preserveIconSpacing
+ */
+ public static int MenuView_preserveIconSpacing = 7;
+ /** Attributes that can be used with a NavigationView.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:background
+ */
+ public static int NavigationView_android_background = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:fitsSystemWindows
+ */
+ public static int NavigationView_android_fitsSystemWindows = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #NavigationView} array.
+ @attr name android:maxWidth
+ */
+ public static int NavigationView_android_maxWidth = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int NavigationView_elevation = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#headerLayout}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:headerLayout
+ */
+ public static int NavigationView_headerLayout = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemBackground}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:itemBackground
+ */
+ public static int NavigationView_itemBackground = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemIconTint}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemIconTint
+ */
+ public static int NavigationView_itemIconTint = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:itemTextAppearance
+ */
+ public static int NavigationView_itemTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#itemTextColor}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:itemTextColor
+ */
+ public static int NavigationView_itemTextColor = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#menu}
+ attribute's value can be found in the {@link #NavigationView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:menu
+ */
+ public static int NavigationView_menu = 4;
+ /** Attributes that can be used with a PopupWindow.
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #PopupWindow} array.
+ @attr name android:popupBackground
+ */
+ public static int PopupWindow_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#overlapAnchor}
+ attribute's value can be found in the {@link #PopupWindow} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:overlapAnchor
+ */
+ public static int PopupWindow_overlapAnchor = 1;
+ /** Attributes that can be used with a PopupWindowBackgroundState.
+
+ @see #PopupWindowBackgroundState_state_above_anchor
+ */
+ public static final int[] PopupWindowBackgroundState = {
+ 0x7f0100ed
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#state_above_anchor}
+ attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:state_above_anchor
+ */
+ public static int PopupWindowBackgroundState_state_above_anchor = 0;
+ /** Attributes that can be used with a RecyclerView.
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #RecyclerView} array.
+ @attr name android:orientation
+ */
+ public static int RecyclerView_android_orientation = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layoutManager}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:layoutManager
+ */
+ public static int RecyclerView_layoutManager = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#reverseLayout}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:reverseLayout
+ */
+ public static int RecyclerView_reverseLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#spanCount}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:spanCount
+ */
+ public static int RecyclerView_spanCount = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#stackFromEnd}
+ attribute's value can be found in the {@link #RecyclerView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:stackFromEnd
+ */
+ public static int RecyclerView_stackFromEnd = 4;
+ /** Attributes that can be used with a ScrimInsetsFrameLayout.
+
+ @see #ScrimInsetsFrameLayout_insetForeground
+ */
+ public static final int[] ScrimInsetsFrameLayout = {
+ 0x7f0100f2
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#insetForeground}
+ attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.documentscanner:insetForeground
+ */
+ public static int ScrimInsetsFrameLayout_insetForeground = 0;
+ /** Attributes that can be used with a ScrollingViewBehavior_Params.
+
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop
+ */
+ public static final int[] ScrollingViewBehavior_Params = {
+ 0x7f0100f3
+ };
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#behavior_overlapTop}
+ attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:behavior_overlapTop
+ */
+ public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
+ /** Attributes that can be used with a SearchView.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:focusable
+ */
+ public static int SearchView_android_focusable = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#imeOptions}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:imeOptions
+ */
+ public static int SearchView_android_imeOptions = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inputType}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:inputType
+ */
+ public static int SearchView_android_inputType = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:maxWidth
+ */
+ public static int SearchView_android_maxWidth = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#closeIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:closeIcon
+ */
+ public static int SearchView_closeIcon = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#commitIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:commitIcon
+ */
+ public static int SearchView_commitIcon = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#defaultQueryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:defaultQueryHint
+ */
+ public static int SearchView_defaultQueryHint = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#goIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:goIcon
+ */
+ public static int SearchView_goIcon = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#iconifiedByDefault}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:iconifiedByDefault
+ */
+ public static int SearchView_iconifiedByDefault = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#layout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:layout
+ */
+ public static int SearchView_layout = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#queryBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:queryBackground
+ */
+ public static int SearchView_queryBackground = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#queryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:queryHint
+ */
+ public static int SearchView_queryHint = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchHintIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchHintIcon
+ */
+ public static int SearchView_searchHintIcon = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#searchIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:searchIcon
+ */
+ public static int SearchView_searchIcon = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#submitBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:submitBackground
+ */
+ public static int SearchView_submitBackground = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#suggestionRowLayout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:suggestionRowLayout
+ */
+ public static int SearchView_suggestionRowLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#voiceIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:voiceIcon
+ */
+ public static int SearchView_voiceIcon = 12;
+ /** Attributes that can be used with a SnackbarLayout.
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+ @attr name android:maxWidth
+ */
+ public static int SnackbarLayout_android_maxWidth = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#elevation}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:elevation
+ */
+ public static int SnackbarLayout_elevation = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#maxActionInlineWidth}
+ attribute's value can be found in the {@link #SnackbarLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:maxActionInlineWidth
+ */
+ public static int SnackbarLayout_maxActionInlineWidth = 2;
+ /** Attributes that can be used with a Spinner.
+
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownWidth
+ */
+ public static int Spinner_android_dropDownWidth = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#entries}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:entries
+ */
+ public static int Spinner_android_entries = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:popupBackground
+ */
+ public static int Spinner_android_popupBackground = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#prompt}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:prompt
+ */
+ public static int Spinner_android_prompt = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int Spinner_popupTheme = 4;
+ /** Attributes that can be used with a SwitchCompat.
+
This symbol is the offset where the {@link android.R.attr#textOff}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOff
+ */
+ public static int SwitchCompat_android_textOff = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textOn}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOn
+ */
+ public static int SwitchCompat_android_textOn = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#thumb}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:thumb
+ */
+ public static int SwitchCompat_android_thumb = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#showText}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:showText
+ */
+ public static int SwitchCompat_showText = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#splitTrack}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:splitTrack
+ */
+ public static int SwitchCompat_splitTrack = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchMinWidth}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:switchMinWidth
+ */
+ public static int SwitchCompat_switchMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:switchPadding
+ */
+ public static int SwitchCompat_switchPadding = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#switchTextAppearance}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:switchTextAppearance
+ */
+ public static int SwitchCompat_switchTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#thumbTextPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:thumbTextPadding
+ */
+ public static int SwitchCompat_thumbTextPadding = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#track}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:track
+ */
+ public static int SwitchCompat_track = 3;
+ /** Attributes that can be used with a TabItem.
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:icon
+ */
+ public static int TabItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:layout
+ */
+ public static int TabItem_android_layout = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#text}
+ attribute's value can be found in the {@link #TabItem} array.
+ @attr name android:text
+ */
+ public static int TabItem_android_text = 2;
+ /** Attributes that can be used with a TabLayout.
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabBackground}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:tabBackground
+ */
+ public static int TabLayout_tabBackground = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabContentStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabContentStart
+ */
+ public static int TabLayout_tabContentStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabGravity}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
fill
0
+
center
1
+
+ @attr name com.documentscanner:tabGravity
+ */
+ public static int TabLayout_tabGravity = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabIndicatorColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabIndicatorColor
+ */
+ public static int TabLayout_tabIndicatorColor = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabIndicatorHeight}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabIndicatorHeight
+ */
+ public static int TabLayout_tabIndicatorHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMaxWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabMaxWidth
+ */
+ public static int TabLayout_tabMaxWidth = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMinWidth}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabMinWidth
+ */
+ public static int TabLayout_tabMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabMode}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
scrollable
0
+
fixed
1
+
+ @attr name com.documentscanner:tabMode
+ */
+ public static int TabLayout_tabMode = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPadding}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPadding
+ */
+ public static int TabLayout_tabPadding = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingBottom}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingBottom
+ */
+ public static int TabLayout_tabPaddingBottom = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingEnd}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingEnd
+ */
+ public static int TabLayout_tabPaddingEnd = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingStart}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingStart
+ */
+ public static int TabLayout_tabPaddingStart = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabPaddingTop}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabPaddingTop
+ */
+ public static int TabLayout_tabPaddingTop = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabSelectedTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabSelectedTextColor
+ */
+ public static int TabLayout_tabSelectedTextColor = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabTextAppearance}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:tabTextAppearance
+ */
+ public static int TabLayout_tabTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#tabTextColor}
+ attribute's value can be found in the {@link #TabLayout} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:tabTextColor
+ */
+ public static int TabLayout_tabTextColor = 9;
+ /** Attributes that can be used with a TextAppearance.
+
This symbol is the offset where the {@link android.R.attr#shadowColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowColor
+ */
+ public static int TextAppearance_android_shadowColor = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDx}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDx
+ */
+ public static int TextAppearance_android_shadowDx = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDy}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDy
+ */
+ public static int TextAppearance_android_shadowDy = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowRadius}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowRadius
+ */
+ public static int TextAppearance_android_shadowRadius = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textColor
+ */
+ public static int TextAppearance_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textSize
+ */
+ public static int TextAppearance_android_textSize = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textStyle
+ */
+ public static int TextAppearance_android_textStyle = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#typeface}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:typeface
+ */
+ public static int TextAppearance_android_typeface = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #TextAppearance} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.documentscanner:textAllCaps
+ */
+ public static int TextAppearance_textAllCaps = 8;
+ /** Attributes that can be used with a TextInputLayout.
+
This symbol is the offset where the {@link android.R.attr#hint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:hint
+ */
+ public static int TextInputLayout_android_hint = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColorHint}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+ @attr name android:textColorHint
+ */
+ public static int TextInputLayout_android_textColorHint = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:counterEnabled
+ */
+ public static int TextInputLayout_counterEnabled = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterMaxLength}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:counterMaxLength
+ */
+ public static int TextInputLayout_counterMaxLength = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterOverflowTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:counterOverflowTextAppearance
+ */
+ public static int TextInputLayout_counterOverflowTextAppearance = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#counterTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:counterTextAppearance
+ */
+ public static int TextInputLayout_counterTextAppearance = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#errorEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:errorEnabled
+ */
+ public static int TextInputLayout_errorEnabled = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#errorTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:errorTextAppearance
+ */
+ public static int TextInputLayout_errorTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintAnimationEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hintAnimationEnabled
+ */
+ public static int TextInputLayout_hintAnimationEnabled = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintEnabled}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:hintEnabled
+ */
+ public static int TextInputLayout_hintEnabled = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#hintTextAppearance}
+ attribute's value can be found in the {@link #TextInputLayout} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:hintTextAppearance
+ */
+ public static int TextInputLayout_hintTextAppearance = 2;
+ /** Attributes that can be used with a Toolbar.
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:gravity
+ */
+ public static int Toolbar_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#minHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:minHeight
+ */
+ public static int Toolbar_android_minHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapseContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:collapseContentDescription
+ */
+ public static int Toolbar_collapseContentDescription = 19;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#collapseIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:collapseIcon
+ */
+ public static int Toolbar_collapseIcon = 18;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetEnd
+ */
+ public static int Toolbar_contentInsetEnd = 6;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetLeft
+ */
+ public static int Toolbar_contentInsetLeft = 7;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetRight
+ */
+ public static int Toolbar_contentInsetRight = 8;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:contentInsetStart
+ */
+ public static int Toolbar_contentInsetStart = 5;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logo}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:logo
+ */
+ public static int Toolbar_logo = 4;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#logoDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:logoDescription
+ */
+ public static int Toolbar_logoDescription = 22;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#maxButtonHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:maxButtonHeight
+ */
+ public static int Toolbar_maxButtonHeight = 17;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:navigationContentDescription
+ */
+ public static int Toolbar_navigationContentDescription = 21;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#navigationIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:navigationIcon
+ */
+ public static int Toolbar_navigationIcon = 20;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:popupTheme
+ */
+ public static int Toolbar_popupTheme = 9;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitle}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitle
+ */
+ public static int Toolbar_subtitle = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:subtitleTextAppearance
+ */
+ public static int Toolbar_subtitleTextAppearance = 11;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#subtitleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:subtitleTextColor
+ */
+ public static int Toolbar_subtitleTextColor = 24;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#title}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:title
+ */
+ public static int Toolbar_title = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginBottom}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginBottom
+ */
+ public static int Toolbar_titleMarginBottom = 16;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginEnd
+ */
+ public static int Toolbar_titleMarginEnd = 14;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginStart
+ */
+ public static int Toolbar_titleMarginStart = 13;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMarginTop}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMarginTop
+ */
+ public static int Toolbar_titleMarginTop = 15;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleMargins}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleMargins
+ */
+ public static int Toolbar_titleMargins = 12;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:titleTextAppearance
+ */
+ public static int Toolbar_titleTextAppearance = 10;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#titleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:titleTextColor
+ */
+ public static int Toolbar_titleTextColor = 23;
+ /** Attributes that can be used with a View.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:focusable
+ */
+ public static int View_android_focusable = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:theme
+ */
+ public static int View_android_theme = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#paddingEnd}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:paddingEnd
+ */
+ public static int View_paddingEnd = 3;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#paddingStart}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:paddingStart
+ */
+ public static int View_paddingStart = 2;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.documentscanner:theme
+ */
+ public static int View_theme = 4;
+ /** Attributes that can be used with a ViewBackgroundHelper.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+ @attr name android:background
+ */
+ public static int ViewBackgroundHelper_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.documentscanner:backgroundTint
+ */
+ public static int ViewBackgroundHelper_backgroundTint = 1;
+ /**
+
This symbol is the offset where the {@link com.documentscanner.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.documentscanner:backgroundTintMode
+ */
+ public static int ViewBackgroundHelper_backgroundTintMode = 2;
+ /** Attributes that can be used with a ViewStubCompat.
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:id
+ */
+ public static int ViewStubCompat_android_id = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inflatedId}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:inflatedId
+ */
+ public static int ViewStubCompat_android_inflatedId = 2;
+ /**
+
diff --git a/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml b/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml
new file mode 100644
index 000000000..b21bfd6c7
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml b/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..2d09dc293
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..15e996471
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a9e3b9ae1
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..5b55321a6
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a4c69b95e
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml b/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml
new file mode 100644
index 000000000..2f413cf4a
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml
@@ -0,0 +1,65 @@
+
+
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-de/values-de.xml b/android/build/intermediates/bundles/debug/res/values-de/values-de.xml
new file mode 100644
index 000000000..da196becb
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-de/values-de.xml
@@ -0,0 +1,65 @@
+
+
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-es/values-es.xml b/android/build/intermediates/bundles/debug/res/values-es/values-es.xml
new file mode 100644
index 000000000..e613dbfb2
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-es/values-es.xml
@@ -0,0 +1,65 @@
+
+
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml b/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml
new file mode 100644
index 000000000..a8c9ceea5
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml
@@ -0,0 +1,65 @@
+
+
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-it/values-it.xml b/android/build/intermediates/bundles/debug/res/values-it/values-it.xml
new file mode 100644
index 000000000..ca02bc338
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-it/values-it.xml
@@ -0,0 +1,65 @@
+
+
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml b/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml
new file mode 100644
index 000000000..360ee2a6e
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml
@@ -0,0 +1,65 @@
+
+
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml b/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml
new file mode 100644
index 000000000..56aa4b732
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml
@@ -0,0 +1,65 @@
+
+
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-v21/values-v21.xml b/android/build/intermediates/bundles/debug/res/values-v21/values-v21.xml
new file mode 100644
index 000000000..4571b7f8b
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-v21/values-v21.xml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f5845a411
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,65 @@
+
+
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/values/values.xml b/android/build/intermediates/bundles/debug/res/values/values.xml
new file mode 100644
index 000000000..a4239d674
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/values/values.xml
@@ -0,0 +1,98 @@
+
+
+ #66000000
+ #00E676
+ #00E676
+ #00C853
+
+ 16dp
+ 16dp
+ 16dp
+ 160dp
+ 16dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/debug/res/xml/settings.xml b/android/build/intermediates/bundles/debug/res/xml/settings.xml
new file mode 100644
index 000000000..d23cb4f7d
--- /dev/null
+++ b/android/build/intermediates/bundles/debug/res/xml/settings.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/AndroidManifest.xml b/android/build/intermediates/bundles/release/AndroidManifest.xml
new file mode 100644
index 000000000..bc9dc2863
--- /dev/null
+++ b/android/build/intermediates/bundles/release/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/R.txt b/android/build/intermediates/bundles/release/R.txt
new file mode 100644
index 000000000..dd62ef01e
--- /dev/null
+++ b/android/build/intermediates/bundles/release/R.txt
@@ -0,0 +1,1817 @@
+int anim abc_fade_in 0x7f050000
+int anim abc_fade_out 0x7f050001
+int anim abc_grow_fade_in_from_bottom 0x7f050002
+int anim abc_popup_enter 0x7f050003
+int anim abc_popup_exit 0x7f050004
+int anim abc_shrink_fade_out_from_bottom 0x7f050005
+int anim abc_slide_in_bottom 0x7f050006
+int anim abc_slide_in_top 0x7f050007
+int anim abc_slide_out_bottom 0x7f050008
+int anim abc_slide_out_top 0x7f050009
+int anim catalyst_push_up_in 0x7f05000a
+int anim catalyst_push_up_out 0x7f05000b
+int anim design_bottom_sheet_slide_in 0x7f05000c
+int anim design_bottom_sheet_slide_out 0x7f05000d
+int anim design_fab_in 0x7f05000e
+int anim design_fab_out 0x7f05000f
+int anim design_snackbar_in 0x7f050010
+int anim design_snackbar_out 0x7f050011
+int attr actionBarDivider 0x7f01003e
+int attr actionBarItemBackground 0x7f01003f
+int attr actionBarPopupTheme 0x7f010038
+int attr actionBarSize 0x7f01003d
+int attr actionBarSplitStyle 0x7f01003a
+int attr actionBarStyle 0x7f010039
+int attr actionBarTabBarStyle 0x7f010034
+int attr actionBarTabStyle 0x7f010033
+int attr actionBarTabTextStyle 0x7f010035
+int attr actionBarTheme 0x7f01003b
+int attr actionBarWidgetTheme 0x7f01003c
+int attr actionButtonStyle 0x7f010058
+int attr actionDropDownStyle 0x7f010054
+int attr actionLayout 0x7f0100e2
+int attr actionMenuTextAppearance 0x7f010040
+int attr actionMenuTextColor 0x7f010041
+int attr actionModeBackground 0x7f010044
+int attr actionModeCloseButtonStyle 0x7f010043
+int attr actionModeCloseDrawable 0x7f010046
+int attr actionModeCopyDrawable 0x7f010048
+int attr actionModeCutDrawable 0x7f010047
+int attr actionModeFindDrawable 0x7f01004c
+int attr actionModePasteDrawable 0x7f010049
+int attr actionModePopupWindowStyle 0x7f01004e
+int attr actionModeSelectAllDrawable 0x7f01004a
+int attr actionModeShareDrawable 0x7f01004b
+int attr actionModeSplitBackground 0x7f010045
+int attr actionModeStyle 0x7f010042
+int attr actionModeWebSearchDrawable 0x7f01004d
+int attr actionOverflowButtonStyle 0x7f010036
+int attr actionOverflowMenuStyle 0x7f010037
+int attr actionProviderClass 0x7f0100e4
+int attr actionViewClass 0x7f0100e3
+int attr activityChooserViewStyle 0x7f010060
+int attr actualImageScaleType 0x7f0100d1
+int attr alertDialogButtonGroupStyle 0x7f010083
+int attr alertDialogCenterButtons 0x7f010084
+int attr alertDialogStyle 0x7f010082
+int attr alertDialogTheme 0x7f010085
+int attr allowStacking 0x7f01009b
+int attr arrowHeadLength 0x7f0100bc
+int attr arrowShaftLength 0x7f0100bd
+int attr autoCompleteTextViewStyle 0x7f01008a
+int attr background 0x7f01000c
+int attr backgroundImage 0x7f0100d2
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f010134
+int attr backgroundTintMode 0x7f010135
+int attr barLength 0x7f0100be
+int attr behavior_hideable 0x7f010098
+int attr behavior_overlapTop 0x7f0100f3
+int attr behavior_peekHeight 0x7f010097
+int attr borderWidth 0x7f0100c3
+int attr borderlessButtonStyle 0x7f01005d
+int attr bottomSheetDialogTheme 0x7f0100b5
+int attr bottomSheetStyle 0x7f0100b6
+int attr buttonBarButtonStyle 0x7f01005a
+int attr buttonBarNegativeButtonStyle 0x7f010088
+int attr buttonBarNeutralButtonStyle 0x7f010089
+int attr buttonBarPositiveButtonStyle 0x7f010087
+int attr buttonBarStyle 0x7f010059
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f01008b
+int attr buttonStyleSmall 0x7f01008c
+int attr buttonTint 0x7f0100ad
+int attr buttonTintMode 0x7f0100ae
+int attr camera_id 0x7f01009d
+int attr checkboxStyle 0x7f01008d
+int attr checkedTextViewStyle 0x7f01008e
+int attr closeIcon 0x7f0100f8
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f01012b
+int attr collapseIcon 0x7f01012a
+int attr collapsedTitleGravity 0x7f0100aa
+int attr collapsedTitleTextAppearance 0x7f0100a6
+int attr color 0x7f0100b8
+int attr colorAccent 0x7f01007b
+int attr colorButtonNormal 0x7f01007f
+int attr colorControlActivated 0x7f01007d
+int attr colorControlHighlight 0x7f01007e
+int attr colorControlNormal 0x7f01007c
+int attr colorPrimary 0x7f010079
+int attr colorPrimaryDark 0x7f01007a
+int attr colorSwitchThumbNormal 0x7f010080
+int attr commitIcon 0x7f0100fd
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr contentScrim 0x7f0100a7
+int attr controlBackground 0x7f010081
+int attr counterEnabled 0x7f01011d
+int attr counterMaxLength 0x7f01011e
+int attr counterOverflowTextAppearance 0x7f010120
+int attr counterTextAppearance 0x7f01011f
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f0100f7
+int attr dialogPreferredPadding 0x7f010052
+int attr dialogTheme 0x7f010051
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01005f
+int attr dividerPadding 0x7f0100e0
+int attr dividerVertical 0x7f01005e
+int attr drawableSize 0x7f0100ba
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010071
+int attr dropdownListPreferredItemHeight 0x7f010055
+int attr editTextBackground 0x7f010066
+int attr editTextColor 0x7f010065
+int attr editTextStyle 0x7f01008f
+int attr elevation 0x7f01001a
+int attr errorEnabled 0x7f01011b
+int attr errorTextAppearance 0x7f01011c
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr expanded 0x7f010024
+int attr expandedTitleGravity 0x7f0100ab
+int attr expandedTitleMargin 0x7f0100a0
+int attr expandedTitleMarginBottom 0x7f0100a4
+int attr expandedTitleMarginEnd 0x7f0100a3
+int attr expandedTitleMarginStart 0x7f0100a1
+int attr expandedTitleMarginTop 0x7f0100a2
+int attr expandedTitleTextAppearance 0x7f0100a5
+int attr fabSize 0x7f0100c1
+int attr fadeDuration 0x7f0100c6
+int attr failureImage 0x7f0100cc
+int attr failureImageScaleType 0x7f0100cd
+int attr foregroundInsidePadding 0x7f0100c5
+int attr gapBetweenBars 0x7f0100bb
+int attr goIcon 0x7f0100f9
+int attr headerLayout 0x7f0100eb
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr hintAnimationEnabled 0x7f010121
+int attr hintEnabled 0x7f01011a
+int attr hintTextAppearance 0x7f010119
+int attr homeAsUpIndicator 0x7f010057
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f0100f5
+int attr imageButtonStyle 0x7f010067
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr insetForeground 0x7f0100f2
+int attr isLightTheme 0x7f010002
+int attr itemBackground 0x7f0100e9
+int attr itemIconTint 0x7f0100e7
+int attr itemPadding 0x7f010014
+int attr itemTextAppearance 0x7f0100ea
+int attr itemTextColor 0x7f0100e8
+int attr keylines 0x7f0100af
+int attr layout 0x7f0100f4
+int attr layoutManager 0x7f0100ee
+int attr layout_anchor 0x7f0100b2
+int attr layout_anchorGravity 0x7f0100b4
+int attr layout_behavior 0x7f0100b1
+int attr layout_collapseMode 0x7f01009e
+int attr layout_collapseParallaxMultiplier 0x7f01009f
+int attr layout_keyline 0x7f0100b3
+int attr layout_scrollFlags 0x7f010025
+int attr layout_scrollInterpolator 0x7f010026
+int attr listChoiceBackgroundIndicator 0x7f010078
+int attr listDividerAlertDialog 0x7f010053
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010072
+int attr listPreferredItemHeight 0x7f01006c
+int attr listPreferredItemHeightLarge 0x7f01006e
+int attr listPreferredItemHeightSmall 0x7f01006d
+int attr listPreferredItemPaddingLeft 0x7f01006f
+int attr listPreferredItemPaddingRight 0x7f010070
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f01012e
+int attr maxActionInlineWidth 0x7f010101
+int attr maxButtonHeight 0x7f010129
+int attr measureWithLargestChild 0x7f0100de
+int attr menu 0x7f0100e6
+int attr metaButtonBarButtonStyle 0x7f01009a
+int attr metaButtonBarStyle 0x7f010099
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f01012d
+int attr navigationIcon 0x7f01012c
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f0100ec
+int attr overlayImage 0x7f0100d3
+int attr paddingEnd 0x7f010132
+int attr paddingStart 0x7f010131
+int attr panelBackground 0x7f010075
+int attr panelMenuListTheme 0x7f010077
+int attr panelMenuListWidth 0x7f010076
+int attr placeholderImage 0x7f0100c8
+int attr placeholderImageScaleType 0x7f0100c9
+int attr popupMenuStyle 0x7f010063
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010064
+int attr preserveIconSpacing 0x7f0100e5
+int attr pressedStateOverlayImage 0x7f0100d4
+int attr pressedTranslationZ 0x7f0100c2
+int attr progressBarAutoRotateInterval 0x7f0100d0
+int attr progressBarImage 0x7f0100ce
+int attr progressBarImageScaleType 0x7f0100cf
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f0100ff
+int attr queryHint 0x7f0100f6
+int attr radioButtonStyle 0x7f010090
+int attr ratingBarStyle 0x7f010091
+int attr ratingBarStyleIndicator 0x7f010092
+int attr ratingBarStyleSmall 0x7f010093
+int attr retryImage 0x7f0100ca
+int attr retryImageScaleType 0x7f0100cb
+int attr reverseLayout 0x7f0100f0
+int attr rippleColor 0x7f0100c0
+int attr roundAsCircle 0x7f0100d5
+int attr roundBottomLeft 0x7f0100da
+int attr roundBottomRight 0x7f0100d9
+int attr roundTopLeft 0x7f0100d7
+int attr roundTopRight 0x7f0100d8
+int attr roundWithOverlayColor 0x7f0100db
+int attr roundedCornerRadius 0x7f0100d6
+int attr roundingBorderColor 0x7f0100dd
+int attr roundingBorderWidth 0x7f0100dc
+int attr searchHintIcon 0x7f0100fb
+int attr searchIcon 0x7f0100fa
+int attr searchViewStyle 0x7f01006b
+int attr seekBarStyle 0x7f010094
+int attr selectableItemBackground 0x7f01005b
+int attr selectableItemBackgroundBorderless 0x7f01005c
+int attr showAsAction 0x7f0100e1
+int attr showDividers 0x7f0100df
+int attr showText 0x7f010108
+int attr show_fps 0x7f01009c
+int attr singleChoiceItemLayout 0x7f010022
+int attr spanCount 0x7f0100ef
+int attr spinBars 0x7f0100b9
+int attr spinnerDropDownItemStyle 0x7f010056
+int attr spinnerStyle 0x7f010095
+int attr splitTrack 0x7f010107
+int attr srcCompat 0x7f010027
+int attr stackFromEnd 0x7f0100f1
+int attr state_above_anchor 0x7f0100ed
+int attr statusBarBackground 0x7f0100b0
+int attr statusBarScrim 0x7f0100a8
+int attr submitBackground 0x7f010100
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f010123
+int attr subtitleTextColor 0x7f010130
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f0100fe
+int attr switchMinWidth 0x7f010105
+int attr switchPadding 0x7f010106
+int attr switchStyle 0x7f010096
+int attr switchTextAppearance 0x7f010104
+int attr tabBackground 0x7f01010c
+int attr tabContentStart 0x7f01010b
+int attr tabGravity 0x7f01010e
+int attr tabIndicatorColor 0x7f010109
+int attr tabIndicatorHeight 0x7f01010a
+int attr tabMaxWidth 0x7f010110
+int attr tabMinWidth 0x7f01010f
+int attr tabMode 0x7f01010d
+int attr tabPadding 0x7f010118
+int attr tabPaddingBottom 0x7f010117
+int attr tabPaddingEnd 0x7f010116
+int attr tabPaddingStart 0x7f010114
+int attr tabPaddingTop 0x7f010115
+int attr tabSelectedTextColor 0x7f010113
+int attr tabTextAppearance 0x7f010111
+int attr tabTextColor 0x7f010112
+int attr textAllCaps 0x7f010028
+int attr textAppearanceLargePopupMenu 0x7f01004f
+int attr textAppearanceListItem 0x7f010073
+int attr textAppearanceListItemSmall 0x7f010074
+int attr textAppearanceSearchResultSubtitle 0x7f010069
+int attr textAppearanceSearchResultTitle 0x7f010068
+int attr textAppearanceSmallPopupMenu 0x7f010050
+int attr textColorAlertDialogListItem 0x7f010086
+int attr textColorError 0x7f0100b7
+int attr textColorSearchUrl 0x7f01006a
+int attr theme 0x7f010133
+int attr thickness 0x7f0100bf
+int attr thumbTextPadding 0x7f010103
+int attr title 0x7f010003
+int attr titleEnabled 0x7f0100ac
+int attr titleMarginBottom 0x7f010128
+int attr titleMarginEnd 0x7f010126
+int attr titleMarginStart 0x7f010125
+int attr titleMarginTop 0x7f010127
+int attr titleMargins 0x7f010124
+int attr titleTextAppearance 0x7f010122
+int attr titleTextColor 0x7f01012f
+int attr titleTextStyle 0x7f010007
+int attr toolbarId 0x7f0100a9
+int attr toolbarNavigationButtonStyle 0x7f010062
+int attr toolbarStyle 0x7f010061
+int attr track 0x7f010102
+int attr useCompatPadding 0x7f0100c4
+int attr viewAspectRatio 0x7f0100c7
+int attr voiceIcon 0x7f0100fc
+int attr windowActionBar 0x7f010029
+int attr windowActionBarOverlay 0x7f01002b
+int attr windowActionModeOverlay 0x7f01002c
+int attr windowFixedHeightMajor 0x7f010030
+int attr windowFixedHeightMinor 0x7f01002e
+int attr windowFixedWidthMajor 0x7f01002d
+int attr windowFixedWidthMinor 0x7f01002f
+int attr windowMinWidthMajor 0x7f010031
+int attr windowMinWidthMinor 0x7f010032
+int attr windowNoTitle 0x7f01002a
+int bool abc_action_bar_embed_tabs 0x7f080003
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f080001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f080004
+int bool abc_allow_stacked_button_bar 0x7f080000
+int bool abc_config_actionMenuItemAllCaps 0x7f080005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f080002
+int bool abc_config_closeDialogWhenTouchOutside 0x7f080006
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080007
+int color abc_background_cache_hint_selector_material_dark 0x7f0c0049
+int color abc_background_cache_hint_selector_material_light 0x7f0c004a
+int color abc_color_highlight_material 0x7f0c004b
+int color abc_input_method_navigation_guard 0x7f0c0000
+int color abc_primary_text_disable_only_material_dark 0x7f0c004c
+int color abc_primary_text_disable_only_material_light 0x7f0c004d
+int color abc_primary_text_material_dark 0x7f0c004e
+int color abc_primary_text_material_light 0x7f0c004f
+int color abc_search_url_text 0x7f0c0050
+int color abc_search_url_text_normal 0x7f0c0001
+int color abc_search_url_text_pressed 0x7f0c0002
+int color abc_search_url_text_selected 0x7f0c0003
+int color abc_secondary_text_material_dark 0x7f0c0051
+int color abc_secondary_text_material_light 0x7f0c0052
+int color accent_material_dark 0x7f0c0004
+int color accent_material_light 0x7f0c0005
+int color background_floating_material_dark 0x7f0c0006
+int color background_floating_material_light 0x7f0c0007
+int color background_material_dark 0x7f0c0008
+int color background_material_light 0x7f0c0009
+int color black_overlay 0x7f0c000a
+int color bright_foreground_disabled_material_dark 0x7f0c000b
+int color bright_foreground_disabled_material_light 0x7f0c000c
+int color bright_foreground_inverse_material_dark 0x7f0c000d
+int color bright_foreground_inverse_material_light 0x7f0c000e
+int color bright_foreground_material_dark 0x7f0c000f
+int color bright_foreground_material_light 0x7f0c0010
+int color button_material_dark 0x7f0c0011
+int color button_material_light 0x7f0c0012
+int color catalyst_redbox_background 0x7f0c0013
+int color colorAccent 0x7f0c0014
+int color colorPrimary 0x7f0c0015
+int color colorPrimaryDark 0x7f0c0016
+int color design_fab_shadow_end_color 0x7f0c0017
+int color design_fab_shadow_mid_color 0x7f0c0018
+int color design_fab_shadow_start_color 0x7f0c0019
+int color design_fab_stroke_end_inner_color 0x7f0c001a
+int color design_fab_stroke_end_outer_color 0x7f0c001b
+int color design_fab_stroke_top_inner_color 0x7f0c001c
+int color design_fab_stroke_top_outer_color 0x7f0c001d
+int color design_snackbar_background_color 0x7f0c001e
+int color design_textinput_error_color_dark 0x7f0c001f
+int color design_textinput_error_color_light 0x7f0c0020
+int color dim_foreground_disabled_material_dark 0x7f0c0021
+int color dim_foreground_disabled_material_light 0x7f0c0022
+int color dim_foreground_material_dark 0x7f0c0023
+int color dim_foreground_material_light 0x7f0c0024
+int color foreground_material_dark 0x7f0c0025
+int color foreground_material_light 0x7f0c0026
+int color highlighted_text_material_dark 0x7f0c0027
+int color highlighted_text_material_light 0x7f0c0028
+int color hint_foreground_material_dark 0x7f0c0029
+int color hint_foreground_material_light 0x7f0c002a
+int color material_blue_grey_800 0x7f0c002b
+int color material_blue_grey_900 0x7f0c002c
+int color material_blue_grey_950 0x7f0c002d
+int color material_deep_teal_200 0x7f0c002e
+int color material_deep_teal_500 0x7f0c002f
+int color material_grey_100 0x7f0c0030
+int color material_grey_300 0x7f0c0031
+int color material_grey_50 0x7f0c0032
+int color material_grey_600 0x7f0c0033
+int color material_grey_800 0x7f0c0034
+int color material_grey_850 0x7f0c0035
+int color material_grey_900 0x7f0c0036
+int color primary_dark_material_dark 0x7f0c0037
+int color primary_dark_material_light 0x7f0c0038
+int color primary_material_dark 0x7f0c0039
+int color primary_material_light 0x7f0c003a
+int color primary_text_default_material_dark 0x7f0c003b
+int color primary_text_default_material_light 0x7f0c003c
+int color primary_text_disabled_material_dark 0x7f0c003d
+int color primary_text_disabled_material_light 0x7f0c003e
+int color ripple_material_dark 0x7f0c003f
+int color ripple_material_light 0x7f0c0040
+int color secondary_text_default_material_dark 0x7f0c0041
+int color secondary_text_default_material_light 0x7f0c0042
+int color secondary_text_disabled_material_dark 0x7f0c0043
+int color secondary_text_disabled_material_light 0x7f0c0044
+int color switch_thumb_disabled_material_dark 0x7f0c0045
+int color switch_thumb_disabled_material_light 0x7f0c0046
+int color switch_thumb_material_dark 0x7f0c0053
+int color switch_thumb_material_light 0x7f0c0054
+int color switch_thumb_normal_material_dark 0x7f0c0047
+int color switch_thumb_normal_material_light 0x7f0c0048
+int dimen abc_action_bar_content_inset_material 0x7f09000d
+int dimen abc_action_bar_default_height_material 0x7f090001
+int dimen abc_action_bar_default_padding_end_material 0x7f09000e
+int dimen abc_action_bar_default_padding_start_material 0x7f09000f
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f09001a
+int dimen abc_action_bar_overflow_padding_end_material 0x7f09001b
+int dimen abc_action_bar_overflow_padding_start_material 0x7f09001c
+int dimen abc_action_bar_progress_bar_size 0x7f090002
+int dimen abc_action_bar_stacked_max_height 0x7f09001d
+int dimen abc_action_bar_stacked_tab_max_width 0x7f09001e
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f09001f
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f090020
+int dimen abc_action_button_min_height_material 0x7f090021
+int dimen abc_action_button_min_width_material 0x7f090022
+int dimen abc_action_button_min_width_overflow_material 0x7f090023
+int dimen abc_alert_dialog_button_bar_height 0x7f090000
+int dimen abc_button_inset_horizontal_material 0x7f090024
+int dimen abc_button_inset_vertical_material 0x7f090025
+int dimen abc_button_padding_horizontal_material 0x7f090026
+int dimen abc_button_padding_vertical_material 0x7f090027
+int dimen abc_config_prefDialogWidth 0x7f090005
+int dimen abc_control_corner_material 0x7f090028
+int dimen abc_control_inset_material 0x7f090029
+int dimen abc_control_padding_material 0x7f09002a
+int dimen abc_dialog_fixed_height_major 0x7f090006
+int dimen abc_dialog_fixed_height_minor 0x7f090007
+int dimen abc_dialog_fixed_width_major 0x7f090008
+int dimen abc_dialog_fixed_width_minor 0x7f090009
+int dimen abc_dialog_list_padding_vertical_material 0x7f09002b
+int dimen abc_dialog_min_width_major 0x7f09000a
+int dimen abc_dialog_min_width_minor 0x7f09000b
+int dimen abc_dialog_padding_material 0x7f09002c
+int dimen abc_dialog_padding_top_material 0x7f09002d
+int dimen abc_disabled_alpha_material_dark 0x7f09002e
+int dimen abc_disabled_alpha_material_light 0x7f09002f
+int dimen abc_dropdownitem_icon_width 0x7f090030
+int dimen abc_dropdownitem_text_padding_left 0x7f090031
+int dimen abc_dropdownitem_text_padding_right 0x7f090032
+int dimen abc_edit_text_inset_bottom_material 0x7f090033
+int dimen abc_edit_text_inset_horizontal_material 0x7f090034
+int dimen abc_edit_text_inset_top_material 0x7f090035
+int dimen abc_floating_window_z 0x7f090036
+int dimen abc_list_item_padding_horizontal_material 0x7f090037
+int dimen abc_panel_menu_list_width 0x7f090038
+int dimen abc_search_view_preferred_width 0x7f090039
+int dimen abc_search_view_text_min_width 0x7f09000c
+int dimen abc_seekbar_track_background_height_material 0x7f09003a
+int dimen abc_seekbar_track_progress_height_material 0x7f09003b
+int dimen abc_select_dialog_padding_start_material 0x7f09003c
+int dimen abc_switch_padding 0x7f090018
+int dimen abc_text_size_body_1_material 0x7f09003d
+int dimen abc_text_size_body_2_material 0x7f09003e
+int dimen abc_text_size_button_material 0x7f09003f
+int dimen abc_text_size_caption_material 0x7f090040
+int dimen abc_text_size_display_1_material 0x7f090041
+int dimen abc_text_size_display_2_material 0x7f090042
+int dimen abc_text_size_display_3_material 0x7f090043
+int dimen abc_text_size_display_4_material 0x7f090044
+int dimen abc_text_size_headline_material 0x7f090045
+int dimen abc_text_size_large_material 0x7f090046
+int dimen abc_text_size_medium_material 0x7f090047
+int dimen abc_text_size_menu_material 0x7f090048
+int dimen abc_text_size_small_material 0x7f090049
+int dimen abc_text_size_subhead_material 0x7f09004a
+int dimen abc_text_size_subtitle_material_toolbar 0x7f090003
+int dimen abc_text_size_title_material 0x7f09004b
+int dimen abc_text_size_title_material_toolbar 0x7f090004
+int dimen activity_horizontal_margin 0x7f090019
+int dimen activity_vertical_margin 0x7f09004c
+int dimen design_appbar_elevation 0x7f09004d
+int dimen design_bottom_sheet_modal_elevation 0x7f09004e
+int dimen design_bottom_sheet_modal_peek_height 0x7f09004f
+int dimen design_fab_border_width 0x7f090050
+int dimen design_fab_elevation 0x7f090051
+int dimen design_fab_image_size 0x7f090052
+int dimen design_fab_size_mini 0x7f090053
+int dimen design_fab_size_normal 0x7f090054
+int dimen design_fab_translation_z_pressed 0x7f090055
+int dimen design_navigation_elevation 0x7f090056
+int dimen design_navigation_icon_padding 0x7f090057
+int dimen design_navigation_icon_size 0x7f090058
+int dimen design_navigation_max_width 0x7f090010
+int dimen design_navigation_padding_bottom 0x7f090059
+int dimen design_navigation_separator_vertical_padding 0x7f09005a
+int dimen design_snackbar_action_inline_max_width 0x7f090011
+int dimen design_snackbar_background_corner_radius 0x7f090012
+int dimen design_snackbar_elevation 0x7f09005b
+int dimen design_snackbar_extra_spacing_horizontal 0x7f090013
+int dimen design_snackbar_max_width 0x7f090014
+int dimen design_snackbar_min_width 0x7f090015
+int dimen design_snackbar_padding_horizontal 0x7f09005c
+int dimen design_snackbar_padding_vertical 0x7f09005d
+int dimen design_snackbar_padding_vertical_2lines 0x7f090016
+int dimen design_snackbar_text_size 0x7f09005e
+int dimen design_tab_max_width 0x7f09005f
+int dimen design_tab_scrollable_min_width 0x7f090017
+int dimen design_tab_text_size 0x7f090060
+int dimen design_tab_text_size_2line 0x7f090061
+int dimen disabled_alpha_material_dark 0x7f090062
+int dimen disabled_alpha_material_light 0x7f090063
+int dimen fab_margin 0x7f090064
+int dimen highlight_alpha_material_colored 0x7f090065
+int dimen highlight_alpha_material_dark 0x7f090066
+int dimen highlight_alpha_material_light 0x7f090067
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f090068
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f090069
+int dimen item_touch_helper_swipe_escape_velocity 0x7f09006a
+int dimen nav_header_height 0x7f09006b
+int dimen nav_header_vertical_spacing 0x7f09006c
+int dimen notification_large_icon_height 0x7f09006d
+int dimen notification_large_icon_width 0x7f09006e
+int dimen notification_subtext_size 0x7f09006f
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_star_black_16dp 0x7f020021
+int drawable abc_ic_star_black_36dp 0x7f020022
+int drawable abc_ic_star_half_black_16dp 0x7f020023
+int drawable abc_ic_star_half_black_36dp 0x7f020024
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
+int drawable abc_item_background_holo_dark 0x7f020026
+int drawable abc_item_background_holo_light 0x7f020027
+int drawable abc_list_divider_mtrl_alpha 0x7f020028
+int drawable abc_list_focused_holo 0x7f020029
+int drawable abc_list_longpressed_holo 0x7f02002a
+int drawable abc_list_pressed_holo_dark 0x7f02002b
+int drawable abc_list_pressed_holo_light 0x7f02002c
+int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
+int drawable abc_list_selector_disabled_holo_light 0x7f020030
+int drawable abc_list_selector_holo_dark 0x7f020031
+int drawable abc_list_selector_holo_light 0x7f020032
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
+int drawable abc_popup_background_mtrl_mult 0x7f020034
+int drawable abc_ratingbar_full_material 0x7f020035
+int drawable abc_ratingbar_indicator_material 0x7f020036
+int drawable abc_ratingbar_small_material 0x7f020037
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
+int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
+int drawable abc_seekbar_thumb_material 0x7f02003d
+int drawable abc_seekbar_track_material 0x7f02003e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
+int drawable abc_spinner_textfield_background_material 0x7f020040
+int drawable abc_switch_thumb_material 0x7f020041
+int drawable abc_switch_track_mtrl_alpha 0x7f020042
+int drawable abc_tab_indicator_material 0x7f020043
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
+int drawable abc_text_cursor_material 0x7f020045
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
+int drawable abc_textfield_default_mtrl_alpha 0x7f020047
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
+int drawable abc_textfield_search_material 0x7f02004a
+int drawable angle 0x7f02004b
+int drawable button_background 0x7f02004c
+int drawable design_fab_background 0x7f02004d
+int drawable design_snackbar_background 0x7f02004e
+int drawable ic_arrow_back_24dp 0x7f02004f
+int drawable ic_camera_green 0x7f020050
+int drawable ic_delete_white_24dp 0x7f020051
+int drawable ic_done_all_24dp 0x7f020052
+int drawable ic_find_in_page 0x7f020053
+int drawable ic_flash_on_24dp 0x7f020054
+int drawable ic_info_outline_white_24px 0x7f020055
+int drawable ic_launcher_background 0x7f020056
+int drawable ic_launcher_foreground 0x7f020057
+int drawable ic_menu_camera 0x7f020058
+int drawable ic_menu_gallery 0x7f020059
+int drawable ic_menu_manage 0x7f02005a
+int drawable ic_menu_send 0x7f02005b
+int drawable ic_menu_share 0x7f02005c
+int drawable ic_menu_slideshow 0x7f02005d
+int drawable ic_menu_tag 0x7f02005e
+int drawable ic_monochrome 0x7f02005f
+int drawable ic_palette 0x7f020060
+int drawable ic_photo_filter_white_24dp 0x7f020061
+int drawable ic_settings 0x7f020062
+int drawable ic_tag_bell 0x7f020063
+int drawable ic_tag_game 0x7f020064
+int drawable ic_tag_gift 0x7f020065
+int drawable ic_tag_magnet 0x7f020066
+int drawable ic_tag_rocket 0x7f020067
+int drawable ic_tag_star 0x7f020068
+int drawable ic_tag_tv 0x7f020069
+int drawable notification_template_icon_bg 0x7f02006c
+int drawable round_button 0x7f02006a
+int drawable side_nav_bar 0x7f02006b
+int id about_container 0x7f0d0074
+int id about_markdown 0x7f0d0075
+int id about_shareapp 0x7f0d0076
+int id about_view 0x7f0d0073
+int id action0 0x7f0d008a
+int id action_about 0x7f0d00a9
+int id action_bar 0x7f0d0064
+int id action_bar_activity_content 0x7f0d0000
+int id action_bar_container 0x7f0d0063
+int id action_bar_root 0x7f0d005f
+int id action_bar_spinner 0x7f0d0001
+int id action_bar_subtitle 0x7f0d0045
+int id action_bar_title 0x7f0d0044
+int id action_context_bar 0x7f0d0065
+int id action_delete 0x7f0d00a6
+int id action_divider 0x7f0d008e
+int id action_menu_divider 0x7f0d0002
+int id action_menu_presenter 0x7f0d0003
+int id action_mode_bar 0x7f0d0061
+int id action_mode_bar_stub 0x7f0d0060
+int id action_mode_close_button 0x7f0d0046
+int id action_share 0x7f0d00a8
+int id action_tag 0x7f0d00a7
+int id activity_chooser_view_content 0x7f0d0047
+int id alertTitle 0x7f0d0053
+int id always 0x7f0d003d
+int id any 0x7f0d001b
+int id back 0x7f0d001c
+int id beginning 0x7f0d003b
+int id bottom 0x7f0d0020
+int id buttonBell 0x7f0d00a1
+int id buttonGame 0x7f0d00a2
+int id buttonGift 0x7f0d009f
+int id buttonMagnet 0x7f0d00a4
+int id buttonPanel 0x7f0d004e
+int id buttonRocket 0x7f0d009e
+int id buttonStar 0x7f0d00a3
+int id buttonTv 0x7f0d00a0
+int id cancel_action 0x7f0d008b
+int id catalyst_redbox_title 0x7f0d0099
+int id center 0x7f0d0021
+int id centerCrop 0x7f0d0034
+int id centerInside 0x7f0d0035
+int id center_horizontal 0x7f0d0022
+int id center_vertical 0x7f0d0023
+int id checkbox 0x7f0d005c
+int id chronometer 0x7f0d0091
+int id clip_horizontal 0x7f0d002f
+int id clip_vertical 0x7f0d0030
+int id collapseActionView 0x7f0d003e
+int id colorSquare 0x7f0d0087
+int id contentPanel 0x7f0d0054
+int id custom 0x7f0d005a
+int id customPanel 0x7f0d0059
+int id decor_content_parent 0x7f0d0062
+int id default_activity_button 0x7f0d004a
+int id design_bottom_sheet 0x7f0d007e
+int id design_menu_item_action_area 0x7f0d0085
+int id design_menu_item_action_area_stub 0x7f0d0084
+int id design_menu_item_text 0x7f0d0083
+int id design_navigation_view 0x7f0d0082
+int id disableHome 0x7f0d000e
+int id edit_query 0x7f0d0066
+int id end 0x7f0d0024
+int id end_padder 0x7f0d0096
+int id enterAlways 0x7f0d0015
+int id enterAlwaysCollapsed 0x7f0d0016
+int id exitUntilCollapsed 0x7f0d0017
+int id expand_activities_button 0x7f0d0048
+int id expanded_menu 0x7f0d005b
+int id fill 0x7f0d0031
+int id fill_horizontal 0x7f0d0032
+int id fill_vertical 0x7f0d0025
+int id fitCenter 0x7f0d0036
+int id fitEnd 0x7f0d0037
+int id fitStart 0x7f0d0038
+int id fitXY 0x7f0d0039
+int id fixed 0x7f0d0042
+int id focusCrop 0x7f0d003a
+int id fps_text 0x7f0d0086
+int id front 0x7f0d001d
+int id gallery_image 0x7f0d0088
+int id home 0x7f0d0004
+int id homeAsUp 0x7f0d000f
+int id hud 0x7f0d007b
+int id icon 0x7f0d004c
+int id ifRoom 0x7f0d003f
+int id image 0x7f0d0049
+int id imgDisplay 0x7f0d0089
+int id info 0x7f0d0095
+int id item_touch_helper_previous_elevation 0x7f0d0005
+int id left 0x7f0d0026
+int id line1 0x7f0d008f
+int id line3 0x7f0d0093
+int id linearLayout 0x7f0d009d
+int id listMode 0x7f0d000b
+int id list_item 0x7f0d004b
+int id media_actions 0x7f0d008d
+int id middle 0x7f0d003c
+int id mini 0x7f0d0033
+int id multiply 0x7f0d002a
+int id navigation_header_container 0x7f0d0081
+int id never 0x7f0d0040
+int id none 0x7f0d0010
+int id normal 0x7f0d000c
+int id pager 0x7f0d0077
+int id parallax 0x7f0d001e
+int id parentPanel 0x7f0d0050
+int id pin 0x7f0d001f
+int id progress_circular 0x7f0d0006
+int id progress_horizontal 0x7f0d0007
+int id radio 0x7f0d005e
+int id recyclerview 0x7f0d0078
+int id right 0x7f0d0027
+int id rn_frame_file 0x7f0d0098
+int id rn_frame_method 0x7f0d0097
+int id rn_redbox_reloadjs 0x7f0d009b
+int id rn_redbox_stack 0x7f0d009a
+int id scannedAnimation 0x7f0d007a
+int id screen 0x7f0d002b
+int id scroll 0x7f0d0018
+int id scrollIndicatorDown 0x7f0d0058
+int id scrollIndicatorUp 0x7f0d0055
+int id scrollView 0x7f0d0056
+int id scrollable 0x7f0d0043
+int id search_badge 0x7f0d0068
+int id search_bar 0x7f0d0067
+int id search_button 0x7f0d0069
+int id search_close_btn 0x7f0d006e
+int id search_edit_frame 0x7f0d006a
+int id search_go_btn 0x7f0d0070
+int id search_mag_icon 0x7f0d006b
+int id search_plate 0x7f0d006c
+int id search_src_text 0x7f0d006d
+int id search_voice_btn 0x7f0d0071
+int id select_dialog_listview 0x7f0d0072
+int id shortcut 0x7f0d005d
+int id showCustom 0x7f0d0011
+int id showHome 0x7f0d0012
+int id showTitle 0x7f0d0013
+int id snackbar_action 0x7f0d0080
+int id snackbar_text 0x7f0d007f
+int id snap 0x7f0d0019
+int id spacer 0x7f0d004f
+int id split_action_bar 0x7f0d0008
+int id src_atop 0x7f0d002c
+int id src_in 0x7f0d002d
+int id src_over 0x7f0d002e
+int id start 0x7f0d0028
+int id status_bar_latest_event_content 0x7f0d008c
+int id submit_area 0x7f0d006f
+int id surfaceView 0x7f0d0079
+int id tabMode 0x7f0d000d
+int id tag_done 0x7f0d00a5
+int id text 0x7f0d0094
+int id text2 0x7f0d0092
+int id textSpacerNoButtons 0x7f0d0057
+int id textView 0x7f0d009c
+int id time 0x7f0d0090
+int id title 0x7f0d004d
+int id title_template 0x7f0d0052
+int id top 0x7f0d0029
+int id topPanel 0x7f0d0051
+int id touch_outside 0x7f0d007d
+int id up 0x7f0d0009
+int id useLogo 0x7f0d0014
+int id view_offset_helper 0x7f0d000a
+int id wait_spinner 0x7f0d007c
+int id withText 0x7f0d0041
+int id wrap_content 0x7f0d001a
+int integer abc_config_activityDefaultDur 0x7f0b0002
+int integer abc_config_activityShortDur 0x7f0b0003
+int integer abc_max_action_buttons 0x7f0b0000
+int integer bottom_sheet_slide_duration 0x7f0b0004
+int integer cancel_button_image_alpha 0x7f0b0005
+int integer design_snackbar_text_max_lines 0x7f0b0001
+int integer status_bar_notification_info_maxnum 0x7f0b0006
+int layout abc_action_bar_title_item 0x7f040000
+int layout abc_action_bar_up_container 0x7f040001
+int layout abc_action_bar_view_list_nav_layout 0x7f040002
+int layout abc_action_menu_item_layout 0x7f040003
+int layout abc_action_menu_layout 0x7f040004
+int layout abc_action_mode_bar 0x7f040005
+int layout abc_action_mode_close_item_material 0x7f040006
+int layout abc_activity_chooser_view 0x7f040007
+int layout abc_activity_chooser_view_list_item 0x7f040008
+int layout abc_alert_dialog_button_bar_material 0x7f040009
+int layout abc_alert_dialog_material 0x7f04000a
+int layout abc_dialog_title_material 0x7f04000b
+int layout abc_expanded_menu_layout 0x7f04000c
+int layout abc_list_menu_item_checkbox 0x7f04000d
+int layout abc_list_menu_item_icon 0x7f04000e
+int layout abc_list_menu_item_layout 0x7f04000f
+int layout abc_list_menu_item_radio 0x7f040010
+int layout abc_popup_menu_item_layout 0x7f040011
+int layout abc_screen_content_include 0x7f040012
+int layout abc_screen_simple 0x7f040013
+int layout abc_screen_simple_overlay_action_mode 0x7f040014
+int layout abc_screen_toolbar 0x7f040015
+int layout abc_search_dropdown_item_icons_2line 0x7f040016
+int layout abc_search_view 0x7f040017
+int layout abc_select_dialog_material 0x7f040018
+int layout about_view 0x7f040019
+int layout activity_fullscreen_view 0x7f04001a
+int layout activity_gallery 0x7f04001b
+int layout activity_main 0x7f04001c
+int layout activity_open_note_scanner 0x7f04001d
+int layout activity_settings 0x7f04001e
+int layout design_bottom_sheet_dialog 0x7f04001f
+int layout design_layout_snackbar 0x7f040020
+int layout design_layout_snackbar_include 0x7f040021
+int layout design_layout_tab_icon 0x7f040022
+int layout design_layout_tab_text 0x7f040023
+int layout design_menu_item_action_area 0x7f040024
+int layout design_navigation_item 0x7f040025
+int layout design_navigation_item_header 0x7f040026
+int layout design_navigation_item_separator 0x7f040027
+int layout design_navigation_item_subheader 0x7f040028
+int layout design_navigation_menu 0x7f040029
+int layout design_navigation_menu_item 0x7f04002a
+int layout fps_view 0x7f04002b
+int layout gallery_item 0x7f04002c
+int layout layout_fullscreen_image 0x7f04002d
+int layout notification_media_action 0x7f04002e
+int layout notification_media_cancel_action 0x7f04002f
+int layout notification_template_big_media 0x7f040030
+int layout notification_template_big_media_narrow 0x7f040031
+int layout notification_template_lines 0x7f040032
+int layout notification_template_media 0x7f040033
+int layout notification_template_part_chronometer 0x7f040034
+int layout notification_template_part_time 0x7f040035
+int layout redbox_item_frame 0x7f040036
+int layout redbox_item_title 0x7f040037
+int layout redbox_view 0x7f040038
+int layout select_dialog_item_material 0x7f040039
+int layout select_dialog_multichoice_material 0x7f04003a
+int layout select_dialog_singlechoice_material 0x7f04003b
+int layout support_simple_spinner_dropdown_item 0x7f04003c
+int layout tageditor_view 0x7f04003d
+int menu menu_gallery 0x7f0e0000
+int menu menu_imagepager 0x7f0e0001
+int mipmap ic_launcher 0x7f030000
+int mipmap ic_launcher_round 0x7f030001
+int string abc_action_bar_home_description 0x7f070000
+int string abc_action_bar_home_description_format 0x7f070001
+int string abc_action_bar_home_subtitle_description_format 0x7f070002
+int string abc_action_bar_up_description 0x7f070003
+int string abc_action_menu_overflow_description 0x7f070004
+int string abc_action_mode_done 0x7f070005
+int string abc_activity_chooser_view_see_all 0x7f070006
+int string abc_activitychooserview_choose_application 0x7f070007
+int string abc_capital_off 0x7f070008
+int string abc_capital_on 0x7f070009
+int string abc_search_hint 0x7f07000a
+int string abc_searchview_description_clear 0x7f07000b
+int string abc_searchview_description_query 0x7f07000c
+int string abc_searchview_description_search 0x7f07000d
+int string abc_searchview_description_submit 0x7f07000e
+int string abc_searchview_description_voice 0x7f07000f
+int string abc_shareactionprovider_share_with 0x7f070010
+int string abc_shareactionprovider_share_with_application 0x7f070011
+int string abc_toolbar_collapse_description 0x7f070012
+int string about_filename 0x7f070014
+int string action_about 0x7f070015
+int string action_delete 0x7f070016
+int string action_share 0x7f070017
+int string action_tag 0x7f070018
+int string activateunknown 0x7f070019
+int string answer_cancel 0x7f07001a
+int string answer_later 0x7f07001b
+int string answer_no 0x7f07001c
+int string answer_yes 0x7f07001d
+int string app_name 0x7f07001e
+int string appbar_scrolling_view_behavior 0x7f07005a
+int string ask_install_opencv 0x7f07001f
+int string autoMode 0x7f070020
+int string automatic_tagging 0x7f070021
+int string automatic_tagging_summary 0x7f070022
+int string basic_settings 0x7f070023
+int string bitcoin_summary 0x7f070024
+int string bottom_sheet_behavior 0x7f07005b
+int string bug_rotate 0x7f070025
+int string bug_rotate_summary 0x7f070026
+int string bwMode 0x7f070027
+int string catalyst_debugjs 0x7f070028
+int string catalyst_debugjs_off 0x7f07005c
+int string catalyst_element_inspector 0x7f070029
+int string catalyst_element_inspector_off 0x7f07005d
+int string catalyst_hot_module_replacement 0x7f07005e
+int string catalyst_hot_module_replacement_off 0x7f07005f
+int string catalyst_jsload_error 0x7f07002a
+int string catalyst_jsload_message 0x7f07002b
+int string catalyst_jsload_title 0x7f07002c
+int string catalyst_live_reload 0x7f070060
+int string catalyst_live_reload_off 0x7f070061
+int string catalyst_perf_monitor 0x7f070062
+int string catalyst_perf_monitor_off 0x7f070063
+int string catalyst_reloadjs 0x7f07002d
+int string catalyst_remotedbg_error 0x7f070064
+int string catalyst_remotedbg_message 0x7f070065
+int string catalyst_settings 0x7f07002e
+int string catalyst_settings_title 0x7f07002f
+int string catalyst_start_profile 0x7f070066
+int string catalyst_stop_profile 0x7f070067
+int string character_counter_pattern 0x7f070068
+int string colorMode 0x7f070030
+int string confirm_delete_multiple_text 0x7f070031
+int string confirm_delete_text 0x7f070032
+int string confirm_install_opencv 0x7f070033
+int string confirm_title 0x7f070034
+int string dogecoin_summary 0x7f070069
+int string donate 0x7f070035
+int string donate_summary 0x7f070036
+int string downloading 0x7f070037
+int string downloading_opencv 0x7f070038
+int string feedback_and_contributions 0x7f070039
+int string filterModeOff 0x7f07003a
+int string filterModeOn 0x7f07003b
+int string github_project 0x7f07003c
+int string github_project_summary 0x7f07003d
+int string githubdownload 0x7f07003e
+int string googleplay 0x7f07003f
+int string images_scanned 0x7f070040
+int string install_opencv 0x7f070041
+int string manualMode 0x7f070042
+int string match_aspect 0x7f070043
+int string match_aspect_summary 0x7f070044
+int string messageactivateunknown 0x7f070045
+int string paypal_summary 0x7f070046
+int string scanningToast 0x7f070047
+int string send_message 0x7f070048
+int string send_message_summary 0x7f070049
+int string settings 0x7f07004a
+int string share_app 0x7f07004b
+int string share_app_body 0x7f07004c
+int string share_app_subject 0x7f07004d
+int string share_app_using 0x7f07004e
+int string share_snackbar 0x7f07004f
+int string stats_optin_text 0x7f070050
+int string stats_optin_title 0x7f070051
+int string status_bar_notification_info_overflow 0x7f070013
+int string storage_folder 0x7f070052
+int string storage_folder_summary 0x7f070053
+int string telegram 0x7f070054
+int string telegram_summary 0x7f070055
+int string title_activity_full_image 0x7f070056
+int string title_activity_gallery 0x7f070057
+int string title_activity_open_note_scanner 0x7f07006a
+int string usage_stats 0x7f070058
+int string usage_stats_summary 0x7f070059
+int style AlertDialog_AppCompat 0x7f0a0088
+int style AlertDialog_AppCompat_Light 0x7f0a0089
+int style Animation_AppCompat_Dialog 0x7f0a008a
+int style Animation_AppCompat_DropDownUp 0x7f0a008b
+int style Animation_Catalyst_RedBox 0x7f0a008c
+int style Animation_Design_BottomSheetDialog 0x7f0a008d
+int style AppTheme 0x7f0a008e
+int style AppTheme_AppBarOverlay 0x7f0a008f
+int style AppTheme_NoActionBar 0x7f0a0037
+int style AppTheme_PopupOverlay 0x7f0a0090
+int style Base_AlertDialog_AppCompat 0x7f0a0091
+int style Base_AlertDialog_AppCompat_Light 0x7f0a0092
+int style Base_Animation_AppCompat_Dialog 0x7f0a0093
+int style Base_Animation_AppCompat_DropDownUp 0x7f0a0094
+int style Base_DialogWindowTitle_AppCompat 0x7f0a0095
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f0a0096
+int style Base_TextAppearance_AppCompat 0x7f0a0038
+int style Base_TextAppearance_AppCompat_Body1 0x7f0a0039
+int style Base_TextAppearance_AppCompat_Body2 0x7f0a003a
+int style Base_TextAppearance_AppCompat_Button 0x7f0a0021
+int style Base_TextAppearance_AppCompat_Caption 0x7f0a003b
+int style Base_TextAppearance_AppCompat_Display1 0x7f0a003c
+int style Base_TextAppearance_AppCompat_Display2 0x7f0a003d
+int style Base_TextAppearance_AppCompat_Display3 0x7f0a003e
+int style Base_TextAppearance_AppCompat_Display4 0x7f0a003f
+int style Base_TextAppearance_AppCompat_Headline 0x7f0a0040
+int style Base_TextAppearance_AppCompat_Inverse 0x7f0a000c
+int style Base_TextAppearance_AppCompat_Large 0x7f0a0041
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0a000d
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0a0042
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0a0043
+int style Base_TextAppearance_AppCompat_Medium 0x7f0a0044
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0a000e
+int style Base_TextAppearance_AppCompat_Menu 0x7f0a0045
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f0a0097
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0a0046
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0a0047
+int style Base_TextAppearance_AppCompat_Small 0x7f0a0048
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0a000f
+int style Base_TextAppearance_AppCompat_Subhead 0x7f0a0049
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0a0010
+int style Base_TextAppearance_AppCompat_Title 0x7f0a004a
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0a0011
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0a0081
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0a004b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0a004c
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0a004d
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0a004e
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0a004f
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0a0050
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0a0051
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0a0082
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0a0098
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0a0052
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0a0053
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0a0054
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0a0055
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0a0099
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0a0056
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0a0057
+int style Base_Theme_AppCompat 0x7f0a0058
+int style Base_Theme_AppCompat_CompactMenu 0x7f0a009a
+int style Base_Theme_AppCompat_Dialog 0x7f0a0012
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f0a009b
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0a009c
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0a009d
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0a0002
+int style Base_Theme_AppCompat_Light 0x7f0a0059
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0a009e
+int style Base_Theme_AppCompat_Light_Dialog 0x7f0a0013
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0a009f
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0a00a0
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0a00a1
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0a0003
+int style Base_ThemeOverlay_AppCompat 0x7f0a00a2
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0a00a3
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f0a00a4
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0a00a5
+int style Base_ThemeOverlay_AppCompat_Light 0x7f0a00a6
+int style Base_V11_Theme_AppCompat_Dialog 0x7f0a0014
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0a0015
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0a001d
+int style Base_V12_Widget_AppCompat_EditText 0x7f0a001e
+int style Base_V21_Theme_AppCompat 0x7f0a005a
+int style Base_V21_Theme_AppCompat_Dialog 0x7f0a005b
+int style Base_V21_Theme_AppCompat_Light 0x7f0a005c
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0a005d
+int style Base_V22_Theme_AppCompat 0x7f0a007f
+int style Base_V22_Theme_AppCompat_Light 0x7f0a0080
+int style Base_V23_Theme_AppCompat 0x7f0a0083
+int style Base_V23_Theme_AppCompat_Light 0x7f0a0084
+int style Base_V7_Theme_AppCompat 0x7f0a00a7
+int style Base_V7_Theme_AppCompat_Dialog 0x7f0a00a8
+int style Base_V7_Theme_AppCompat_Light 0x7f0a00a9
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0a00aa
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0a00ab
+int style Base_V7_Widget_AppCompat_EditText 0x7f0a00ac
+int style Base_Widget_AppCompat_ActionBar 0x7f0a00ad
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0a00ae
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0a00af
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0a005e
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0a005f
+int style Base_Widget_AppCompat_ActionButton 0x7f0a0060
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0a0061
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0a0062
+int style Base_Widget_AppCompat_ActionMode 0x7f0a00b0
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0a00b1
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0a001f
+int style Base_Widget_AppCompat_Button 0x7f0a0063
+int style Base_Widget_AppCompat_Button_Borderless 0x7f0a0064
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0a0065
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0a00b2
+int style Base_Widget_AppCompat_Button_Colored 0x7f0a0085
+int style Base_Widget_AppCompat_Button_Small 0x7f0a0066
+int style Base_Widget_AppCompat_ButtonBar 0x7f0a0067
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0a00b3
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0a0068
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0a0069
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0a00b4
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0a0000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0a00b5
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0a006a
+int style Base_Widget_AppCompat_EditText 0x7f0a0020
+int style Base_Widget_AppCompat_ImageButton 0x7f0a006b
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0a00b6
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0a00b7
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0a00b8
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0a006c
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0a006d
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0a006e
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0a006f
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0a0070
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f0a0071
+int style Base_Widget_AppCompat_ListView 0x7f0a0072
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f0a0073
+int style Base_Widget_AppCompat_ListView_Menu 0x7f0a0074
+int style Base_Widget_AppCompat_PopupMenu 0x7f0a0075
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0a0076
+int style Base_Widget_AppCompat_PopupWindow 0x7f0a00b9
+int style Base_Widget_AppCompat_ProgressBar 0x7f0a0016
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0a0017
+int style Base_Widget_AppCompat_RatingBar 0x7f0a0077
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0a0086
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f0a0087
+int style Base_Widget_AppCompat_SearchView 0x7f0a00ba
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0a00bb
+int style Base_Widget_AppCompat_SeekBar 0x7f0a0078
+int style Base_Widget_AppCompat_Spinner 0x7f0a0079
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0a0004
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0a007a
+int style Base_Widget_AppCompat_Toolbar 0x7f0a00bc
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0a007b
+int style Base_Widget_Design_TabLayout 0x7f0a00bd
+int style FullscreenActionBarStyle 0x7f0a00be
+int style Platform_AppCompat 0x7f0a0018
+int style Platform_AppCompat_Light 0x7f0a0019
+int style Platform_ThemeOverlay_AppCompat 0x7f0a007c
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0a007d
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f0a007e
+int style Platform_V11_AppCompat 0x7f0a001a
+int style Platform_V11_AppCompat_Light 0x7f0a001b
+int style Platform_V14_AppCompat 0x7f0a0022
+int style Platform_V14_AppCompat_Light 0x7f0a0023
+int style Platform_Widget_AppCompat_Spinner 0x7f0a001c
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0a0029
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0a002a
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0a002b
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0a002c
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0a002d
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0a002e
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0a002f
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0a0030
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0a0031
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0a0032
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0a0033
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0a0034
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0a0035
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0a0036
+int style TextAppearance_AppCompat 0x7f0a00bf
+int style TextAppearance_AppCompat_Body1 0x7f0a00c0
+int style TextAppearance_AppCompat_Body2 0x7f0a00c1
+int style TextAppearance_AppCompat_Button 0x7f0a00c2
+int style TextAppearance_AppCompat_Caption 0x7f0a00c3
+int style TextAppearance_AppCompat_Display1 0x7f0a00c4
+int style TextAppearance_AppCompat_Display2 0x7f0a00c5
+int style TextAppearance_AppCompat_Display3 0x7f0a00c6
+int style TextAppearance_AppCompat_Display4 0x7f0a00c7
+int style TextAppearance_AppCompat_Headline 0x7f0a00c8
+int style TextAppearance_AppCompat_Inverse 0x7f0a00c9
+int style TextAppearance_AppCompat_Large 0x7f0a00ca
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0a00cb
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0a00cc
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0a00cd
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0a00ce
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0a00cf
+int style TextAppearance_AppCompat_Medium 0x7f0a00d0
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0a00d1
+int style TextAppearance_AppCompat_Menu 0x7f0a00d2
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0a00d3
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0a00d4
+int style TextAppearance_AppCompat_Small 0x7f0a00d5
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0a00d6
+int style TextAppearance_AppCompat_Subhead 0x7f0a00d7
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0a00d8
+int style TextAppearance_AppCompat_Title 0x7f0a00d9
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0a00da
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0a00db
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0a00dc
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0a00dd
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0a00de
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0a00df
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0a00e0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0a00e1
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0a00e2
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0a00e3
+int style TextAppearance_AppCompat_Widget_Button 0x7f0a00e4
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0a00e5
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0a00e6
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0a00e7
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0a00e8
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0a00e9
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0a00ea
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0a00eb
+int style TextAppearance_Design_Counter 0x7f0a00ec
+int style TextAppearance_Design_Counter_Overflow 0x7f0a00ed
+int style TextAppearance_Design_Error 0x7f0a00ee
+int style TextAppearance_Design_Hint 0x7f0a00ef
+int style TextAppearance_Design_Snackbar_Message 0x7f0a00f0
+int style TextAppearance_Design_Tab 0x7f0a00f1
+int style TextAppearance_StatusBar_EventContent 0x7f0a0024
+int style TextAppearance_StatusBar_EventContent_Info 0x7f0a0025
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f0a0026
+int style TextAppearance_StatusBar_EventContent_Time 0x7f0a0027
+int style TextAppearance_StatusBar_EventContent_Title 0x7f0a0028
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0a00f2
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0a00f3
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0a00f4
+int style Theme 0x7f0a00f5
+int style Theme_AppCompat 0x7f0a00f6
+int style Theme_AppCompat_CompactMenu 0x7f0a00f7
+int style Theme_AppCompat_DayNight 0x7f0a0005
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0a0006
+int style Theme_AppCompat_DayNight_Dialog 0x7f0a0007
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0a0008
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0a0009
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0a000a
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f0a000b
+int style Theme_AppCompat_Dialog 0x7f0a00f8
+int style Theme_AppCompat_Dialog_Alert 0x7f0a00f9
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0a00fa
+int style Theme_AppCompat_DialogWhenLarge 0x7f0a00fb
+int style Theme_AppCompat_Light 0x7f0a00fc
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0a00fd
+int style Theme_AppCompat_Light_Dialog 0x7f0a00fe
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0a00ff
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0a0100
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0a0101
+int style Theme_AppCompat_Light_NoActionBar 0x7f0a0102
+int style Theme_AppCompat_NoActionBar 0x7f0a0103
+int style Theme_Catalyst 0x7f0a0104
+int style Theme_Catalyst_RedBox 0x7f0a0105
+int style Theme_Design 0x7f0a0106
+int style Theme_Design_BottomSheetDialog 0x7f0a0107
+int style Theme_Design_Light 0x7f0a0108
+int style Theme_Design_Light_BottomSheetDialog 0x7f0a0109
+int style Theme_Design_Light_NoActionBar 0x7f0a010a
+int style Theme_Design_NoActionBar 0x7f0a010b
+int style Theme_ReactNative_AppCompat_Light 0x7f0a010c
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0a010d
+int style ThemeOverlay_AppCompat 0x7f0a010e
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0a010f
+int style ThemeOverlay_AppCompat_Dark 0x7f0a0110
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0a0111
+int style ThemeOverlay_AppCompat_Light 0x7f0a0112
+int style Widget_AppCompat_ActionBar 0x7f0a0113
+int style Widget_AppCompat_ActionBar_Solid 0x7f0a0114
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0a0115
+int style Widget_AppCompat_ActionBar_TabText 0x7f0a0116
+int style Widget_AppCompat_ActionBar_TabView 0x7f0a0117
+int style Widget_AppCompat_ActionButton 0x7f0a0118
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0a0119
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0a011a
+int style Widget_AppCompat_ActionMode 0x7f0a011b
+int style Widget_AppCompat_ActivityChooserView 0x7f0a011c
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0a011d
+int style Widget_AppCompat_Button 0x7f0a011e
+int style Widget_AppCompat_Button_Borderless 0x7f0a011f
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0a0120
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0a0121
+int style Widget_AppCompat_Button_Colored 0x7f0a0122
+int style Widget_AppCompat_Button_Small 0x7f0a0123
+int style Widget_AppCompat_ButtonBar 0x7f0a0124
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0a0125
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0a0126
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0a0127
+int style Widget_AppCompat_CompoundButton_Switch 0x7f0a0128
+int style Widget_AppCompat_DrawerArrowToggle 0x7f0a0129
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f0a012a
+int style Widget_AppCompat_EditText 0x7f0a012b
+int style Widget_AppCompat_ImageButton 0x7f0a012c
+int style Widget_AppCompat_Light_ActionBar 0x7f0a012d
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0a012e
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0a012f
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0a0130
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0a0131
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0a0132
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0a0133
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0a0134
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0a0135
+int style Widget_AppCompat_Light_ActionButton 0x7f0a0136
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0a0137
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0a0138
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0a0139
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f0a013a
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0a013b
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0a013c
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f0a013d
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f0a013e
+int style Widget_AppCompat_Light_PopupMenu 0x7f0a013f
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0a0140
+int style Widget_AppCompat_Light_SearchView 0x7f0a0141
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0a0142
+int style Widget_AppCompat_ListPopupWindow 0x7f0a0143
+int style Widget_AppCompat_ListView 0x7f0a0144
+int style Widget_AppCompat_ListView_DropDown 0x7f0a0145
+int style Widget_AppCompat_ListView_Menu 0x7f0a0146
+int style Widget_AppCompat_PopupMenu 0x7f0a0147
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f0a0148
+int style Widget_AppCompat_PopupWindow 0x7f0a0149
+int style Widget_AppCompat_ProgressBar 0x7f0a014a
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0a014b
+int style Widget_AppCompat_RatingBar 0x7f0a014c
+int style Widget_AppCompat_RatingBar_Indicator 0x7f0a014d
+int style Widget_AppCompat_RatingBar_Small 0x7f0a014e
+int style Widget_AppCompat_SearchView 0x7f0a014f
+int style Widget_AppCompat_SearchView_ActionBar 0x7f0a0150
+int style Widget_AppCompat_SeekBar 0x7f0a0151
+int style Widget_AppCompat_Spinner 0x7f0a0152
+int style Widget_AppCompat_Spinner_DropDown 0x7f0a0153
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0a0154
+int style Widget_AppCompat_Spinner_Underlined 0x7f0a0155
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f0a0156
+int style Widget_AppCompat_Toolbar 0x7f0a0157
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0a0158
+int style Widget_Design_AppBarLayout 0x7f0a0159
+int style Widget_Design_BottomSheet_Modal 0x7f0a015a
+int style Widget_Design_CollapsingToolbar 0x7f0a015b
+int style Widget_Design_CoordinatorLayout 0x7f0a015c
+int style Widget_Design_FloatingActionButton 0x7f0a015d
+int style Widget_Design_NavigationView 0x7f0a015e
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f0a015f
+int style Widget_Design_Snackbar 0x7f0a0160
+int style Widget_Design_TabLayout 0x7f0a0001
+int style Widget_Design_TextInputLayout 0x7f0a0161
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_elevation 1
+int styleable AppBarLayout_expanded 2
+int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
+int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
+int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
+int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
+int styleable AppCompatTheme_actionBarDivider 23
+int styleable AppCompatTheme_actionBarItemBackground 24
+int styleable AppCompatTheme_actionBarPopupTheme 17
+int styleable AppCompatTheme_actionBarSize 22
+int styleable AppCompatTheme_actionBarSplitStyle 19
+int styleable AppCompatTheme_actionBarStyle 18
+int styleable AppCompatTheme_actionBarTabBarStyle 13
+int styleable AppCompatTheme_actionBarTabStyle 12
+int styleable AppCompatTheme_actionBarTabTextStyle 14
+int styleable AppCompatTheme_actionBarTheme 20
+int styleable AppCompatTheme_actionBarWidgetTheme 21
+int styleable AppCompatTheme_actionButtonStyle 49
+int styleable AppCompatTheme_actionDropDownStyle 45
+int styleable AppCompatTheme_actionMenuTextAppearance 25
+int styleable AppCompatTheme_actionMenuTextColor 26
+int styleable AppCompatTheme_actionModeBackground 29
+int styleable AppCompatTheme_actionModeCloseButtonStyle 28
+int styleable AppCompatTheme_actionModeCloseDrawable 31
+int styleable AppCompatTheme_actionModeCopyDrawable 33
+int styleable AppCompatTheme_actionModeCutDrawable 32
+int styleable AppCompatTheme_actionModeFindDrawable 37
+int styleable AppCompatTheme_actionModePasteDrawable 34
+int styleable AppCompatTheme_actionModePopupWindowStyle 39
+int styleable AppCompatTheme_actionModeSelectAllDrawable 35
+int styleable AppCompatTheme_actionModeShareDrawable 36
+int styleable AppCompatTheme_actionModeSplitBackground 30
+int styleable AppCompatTheme_actionModeStyle 27
+int styleable AppCompatTheme_actionModeWebSearchDrawable 38
+int styleable AppCompatTheme_actionOverflowButtonStyle 15
+int styleable AppCompatTheme_actionOverflowMenuStyle 16
+int styleable AppCompatTheme_activityChooserViewStyle 57
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
+int styleable AppCompatTheme_alertDialogCenterButtons 93
+int styleable AppCompatTheme_alertDialogStyle 91
+int styleable AppCompatTheme_alertDialogTheme 94
+int styleable AppCompatTheme_android_windowAnimationStyle 1
+int styleable AppCompatTheme_android_windowIsFloating 0
+int styleable AppCompatTheme_autoCompleteTextViewStyle 99
+int styleable AppCompatTheme_borderlessButtonStyle 54
+int styleable AppCompatTheme_buttonBarButtonStyle 51
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
+int styleable AppCompatTheme_buttonBarStyle 50
+int styleable AppCompatTheme_buttonStyle 100
+int styleable AppCompatTheme_buttonStyleSmall 101
+int styleable AppCompatTheme_checkboxStyle 102
+int styleable AppCompatTheme_checkedTextViewStyle 103
+int styleable AppCompatTheme_colorAccent 84
+int styleable AppCompatTheme_colorButtonNormal 88
+int styleable AppCompatTheme_colorControlActivated 86
+int styleable AppCompatTheme_colorControlHighlight 87
+int styleable AppCompatTheme_colorControlNormal 85
+int styleable AppCompatTheme_colorPrimary 82
+int styleable AppCompatTheme_colorPrimaryDark 83
+int styleable AppCompatTheme_colorSwitchThumbNormal 89
+int styleable AppCompatTheme_controlBackground 90
+int styleable AppCompatTheme_dialogPreferredPadding 43
+int styleable AppCompatTheme_dialogTheme 42
+int styleable AppCompatTheme_dividerHorizontal 56
+int styleable AppCompatTheme_dividerVertical 55
+int styleable AppCompatTheme_dropDownListViewStyle 74
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
+int styleable AppCompatTheme_editTextBackground 63
+int styleable AppCompatTheme_editTextColor 62
+int styleable AppCompatTheme_editTextStyle 104
+int styleable AppCompatTheme_homeAsUpIndicator 48
+int styleable AppCompatTheme_imageButtonStyle 64
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
+int styleable AppCompatTheme_listDividerAlertDialog 44
+int styleable AppCompatTheme_listPopupWindowStyle 75
+int styleable AppCompatTheme_listPreferredItemHeight 69
+int styleable AppCompatTheme_listPreferredItemHeightLarge 71
+int styleable AppCompatTheme_listPreferredItemHeightSmall 70
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
+int styleable AppCompatTheme_listPreferredItemPaddingRight 73
+int styleable AppCompatTheme_panelBackground 78
+int styleable AppCompatTheme_panelMenuListTheme 80
+int styleable AppCompatTheme_panelMenuListWidth 79
+int styleable AppCompatTheme_popupMenuStyle 60
+int styleable AppCompatTheme_popupWindowStyle 61
+int styleable AppCompatTheme_radioButtonStyle 105
+int styleable AppCompatTheme_ratingBarStyle 106
+int styleable AppCompatTheme_ratingBarStyleIndicator 107
+int styleable AppCompatTheme_ratingBarStyleSmall 108
+int styleable AppCompatTheme_searchViewStyle 68
+int styleable AppCompatTheme_seekBarStyle 109
+int styleable AppCompatTheme_selectableItemBackground 52
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
+int styleable AppCompatTheme_spinnerDropDownItemStyle 47
+int styleable AppCompatTheme_spinnerStyle 110
+int styleable AppCompatTheme_switchStyle 111
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
+int styleable AppCompatTheme_textAppearanceListItem 76
+int styleable AppCompatTheme_textAppearanceListItemSmall 77
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
+int styleable AppCompatTheme_textColorAlertDialogListItem 95
+int styleable AppCompatTheme_textColorSearchUrl 67
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
+int styleable AppCompatTheme_toolbarStyle 58
+int styleable AppCompatTheme_windowActionBar 2
+int styleable AppCompatTheme_windowActionBarOverlay 4
+int styleable AppCompatTheme_windowActionModeOverlay 5
+int styleable AppCompatTheme_windowFixedHeightMajor 9
+int styleable AppCompatTheme_windowFixedHeightMinor 7
+int styleable AppCompatTheme_windowFixedWidthMajor 6
+int styleable AppCompatTheme_windowFixedWidthMinor 8
+int styleable AppCompatTheme_windowMinWidthMajor 10
+int styleable AppCompatTheme_windowMinWidthMinor 11
+int styleable AppCompatTheme_windowNoTitle 3
+int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 }
+int styleable BottomSheetBehavior_Params_behavior_hideable 1
+int styleable BottomSheetBehavior_Params_behavior_peekHeight 0
+int[] styleable ButtonBarContainerTheme { 0x7f010099, 0x7f01009a }
+int styleable ButtonBarContainerTheme_metaButtonBarButtonStyle 1
+int styleable ButtonBarContainerTheme_metaButtonBarStyle 0
+int[] styleable ButtonBarLayout { 0x7f01009b }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CameraBridgeViewBase { 0x7f01009c, 0x7f01009d }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
+int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009e, 0x7f01009f }
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
+int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac }
+int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
+int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
+int styleable CollapsingToolbarLayout_contentScrim 8
+int styleable CollapsingToolbarLayout_expandedTitleGravity 12
+int styleable CollapsingToolbarLayout_expandedTitleMargin 1
+int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
+int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
+int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
+int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
+int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
+int styleable CollapsingToolbarLayout_statusBarScrim 9
+int styleable CollapsingToolbarLayout_title 0
+int styleable CollapsingToolbarLayout_titleEnabled 13
+int styleable CollapsingToolbarLayout_toolbarId 10
+int[] styleable CompoundButton { 0x01010107, 0x7f0100ad, 0x7f0100ae }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x7f0100af, 0x7f0100b0 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 }
+int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
+int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
+int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
+int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
+int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
+int[] styleable DesignTheme { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 }
+int styleable DesignTheme_bottomSheetDialogTheme 0
+int styleable DesignTheme_bottomSheetStyle 1
+int styleable DesignTheme_textColorError 2
+int[] styleable DrawerArrowToggle { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 }
+int styleable FloatingActionButton_backgroundTint 6
+int styleable FloatingActionButton_backgroundTintMode 7
+int styleable FloatingActionButton_borderWidth 4
+int styleable FloatingActionButton_elevation 0
+int styleable FloatingActionButton_fabSize 2
+int styleable FloatingActionButton_pressedTranslationZ 3
+int styleable FloatingActionButton_rippleColor 1
+int styleable FloatingActionButton_useCompatPadding 5
+int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c5 }
+int styleable ForegroundLinearLayout_android_foreground 0
+int styleable ForegroundLinearLayout_android_foregroundGravity 1
+int styleable ForegroundLinearLayout_foregroundInsidePadding 2
+int[] styleable GenericDraweeView { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd }
+int styleable GenericDraweeView_actualImageScaleType 11
+int styleable GenericDraweeView_backgroundImage 12
+int styleable GenericDraweeView_fadeDuration 0
+int styleable GenericDraweeView_failureImage 6
+int styleable GenericDraweeView_failureImageScaleType 7
+int styleable GenericDraweeView_overlayImage 13
+int styleable GenericDraweeView_placeholderImage 2
+int styleable GenericDraweeView_placeholderImageScaleType 3
+int styleable GenericDraweeView_pressedStateOverlayImage 14
+int styleable GenericDraweeView_progressBarAutoRotateInterval 10
+int styleable GenericDraweeView_progressBarImage 8
+int styleable GenericDraweeView_progressBarImageScaleType 9
+int styleable GenericDraweeView_retryImage 4
+int styleable GenericDraweeView_retryImageScaleType 5
+int styleable GenericDraweeView_roundAsCircle 15
+int styleable GenericDraweeView_roundBottomLeft 20
+int styleable GenericDraweeView_roundBottomRight 19
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 21
+int styleable GenericDraweeView_roundedCornerRadius 16
+int styleable GenericDraweeView_roundingBorderColor 23
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 1
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb }
+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 9
+int styleable NavigationView_itemBackground 7
+int styleable NavigationView_itemIconTint 5
+int styleable NavigationView_itemTextAppearance 8
+int styleable NavigationView_itemTextColor 6
+int styleable NavigationView_menu 4
+int[] styleable PopupWindow { 0x01010176, 0x7f0100ec }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f0100ed }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecyclerView { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_layoutManager 1
+int styleable RecyclerView_reverseLayout 3
+int styleable RecyclerView_spanCount 2
+int styleable RecyclerView_stackFromEnd 4
+int[] styleable ScrimInsetsFrameLayout { 0x7f0100f2 }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Params { 0x7f0100f3 }
+int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f010101 }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_elevation 1
+int styleable SnackbarLayout_maxActionInlineWidth 2
+int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 3
+int styleable Spinner_android_entries 0
+int styleable Spinner_android_popupBackground 1
+int styleable Spinner_android_prompt 2
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+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 { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 }
+int styleable TabLayout_tabBackground 3
+int styleable TabLayout_tabContentStart 2
+int styleable TabLayout_tabGravity 5
+int styleable TabLayout_tabIndicatorColor 0
+int styleable TabLayout_tabIndicatorHeight 1
+int styleable TabLayout_tabMaxWidth 7
+int styleable TabLayout_tabMinWidth 6
+int styleable TabLayout_tabMode 4
+int styleable TabLayout_tabPadding 15
+int styleable TabLayout_tabPaddingBottom 14
+int styleable TabLayout_tabPaddingEnd 13
+int styleable TabLayout_tabPaddingStart 11
+int styleable TabLayout_tabPaddingTop 12
+int styleable TabLayout_tabSelectedTextColor 10
+int styleable TabLayout_tabTextAppearance 8
+int styleable TabLayout_tabTextColor 9
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 }
+int styleable TextInputLayout_android_hint 1
+int styleable TextInputLayout_android_textColorHint 0
+int styleable TextInputLayout_counterEnabled 6
+int styleable TextInputLayout_counterMaxLength 7
+int styleable TextInputLayout_counterOverflowTextAppearance 9
+int styleable TextInputLayout_counterTextAppearance 8
+int styleable TextInputLayout_errorEnabled 4
+int styleable TextInputLayout_errorTextAppearance 5
+int styleable TextInputLayout_hintAnimationEnabled 10
+int styleable TextInputLayout_hintEnabled 3
+int styleable TextInputLayout_hintTextAppearance 2
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010134, 0x7f010135 }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml preferences 0x7f060000
+int xml settings 0x7f060001
diff --git a/android/build/intermediates/bundles/release/classes.jar b/android/build/intermediates/bundles/release/classes.jar
new file mode 100644
index 000000000..cface3090
Binary files /dev/null and b/android/build/intermediates/bundles/release/classes.jar differ
diff --git a/android/build/intermediates/bundles/release/jni/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/bundles/release/jni/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/bundles/release/jni/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/bundles/release/jni/x86_64/libopencv_java3.so b/android/build/intermediates/bundles/release/jni/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/bundles/release/jni/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/angle.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/angle.xml
new file mode 100644
index 000000000..4709b71b3
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/angle.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml
new file mode 100644
index 000000000..38fbc261b
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_camera_green.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_camera_green.xml
new file mode 100644
index 000000000..f168c5131
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_camera_green.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_done_all_24dp.xml
new file mode 100644
index 000000000..07de58256
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_done_all_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_find_in_page.xml
new file mode 100644
index 000000000..d2ac3ac62
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_find_in_page.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_flash_on_24dp.xml
new file mode 100644
index 000000000..a3c81cc38
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_flash_on_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml
new file mode 100644
index 000000000..0234f6551
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_launcher_background.xml
new file mode 100644
index 000000000..d5fccc538
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_menu_tag.xml
new file mode 100644
index 000000000..0fc39f435
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_menu_tag.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_monochrome.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_monochrome.xml
new file mode 100644
index 000000000..b7abf9780
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_monochrome.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_palette.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_palette.xml
new file mode 100644
index 000000000..c0bccf28f
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_palette.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
new file mode 100644
index 000000000..1de4266fb
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_settings.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_settings.xml
new file mode 100644
index 000000000..ca2916e55
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_settings.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_bell.xml
new file mode 100644
index 000000000..4e8870e8e
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_bell.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_game.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_game.xml
new file mode 100644
index 000000000..4a8c8fc8d
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_game.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_gift.xml
new file mode 100644
index 000000000..9267e7036
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_gift.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_magnet.xml
new file mode 100644
index 000000000..32c78e9c4
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_magnet.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_rocket.xml
new file mode 100644
index 000000000..6acc86aec
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_rocket.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_star.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_star.xml
new file mode 100644
index 000000000..692f1fd53
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_star.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_tv.xml
new file mode 100644
index 000000000..13a82b0a1
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_tv.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/angle.png
new file mode 100644
index 000000000..b897052d8
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..c87d18f3b
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..955174e6f
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..4a9f76947
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..0dc7956a6
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..7158eff43
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..1c0746fc9
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d7d992571
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..363b6a9e0
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..3618c97e4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..7db0d7390
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_palette.png
new file mode 100644
index 000000000..b85356fb4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..4bfda5809
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_settings.png
new file mode 100644
index 000000000..bd3008e25
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..49ffd9736
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..69a057099
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..6e11ad223
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..99bbe4776
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..48b8460e7
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..4df985450
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..c02e65369
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/angle.png
new file mode 100644
index 000000000..bcdbdc4b7
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..e9e66b88a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..c496a12d3
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..1baf0e9e3
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..dc206e2c6
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..8ac870d9a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..dccf26c80
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..43cfb67a1
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..80028e2e1
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..d1a72653f
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_palette.png
new file mode 100644
index 000000000..3786b0fe3
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..f5a5b19e5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_settings.png
new file mode 100644
index 000000000..382e400b8
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..23fa57500
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..7c4872047
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..48b1a9f49
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..0dd6ecebe
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..55fe94ca5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..ae992b857
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..6e7767fe5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/angle.png
new file mode 100644
index 000000000..9ef4eeed9
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..237988f09
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..6c71e046a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..e2f5f3555
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..9e210b497
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..0360147dc
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..8a01d844a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..36b83fdbc
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..770f39302
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..bc069c86f
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..bc69f01b8
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_palette.png
new file mode 100644
index 000000000..5f7a1f1bb
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..f77882fff
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_settings.png
new file mode 100644
index 000000000..3b2a1b336
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..4bc57c5ce
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..8e5921407
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..c2d4c4159
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..1212583e5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..37bfa831d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..5e9eef985
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..913dc8988
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_camera.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_camera.xml
new file mode 100644
index 000000000..0d9ea104b
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_camera.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_gallery.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_gallery.xml
new file mode 100644
index 000000000..f6872c409
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_gallery.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_manage.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_manage.xml
new file mode 100644
index 000000000..c1be60b36
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_manage.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_send.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_send.xml
new file mode 100644
index 000000000..00c668c60
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_send.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_share.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_share.xml
new file mode 100644
index 000000000..c5027c659
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_share.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_slideshow.xml b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_slideshow.xml
new file mode 100644
index 000000000..209aa6430
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_slideshow.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-v24/ic_launcher_foreground.xml b/android/build/intermediates/bundles/release/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 000000000..89c01cbfd
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/angle.png
new file mode 100644
index 000000000..7a9ace843
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..ff8612755
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..6a6611c0b
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..388b5b060
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..2014f7049
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..d8f23ecaf
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..f1f1013d2
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..4909a67fc
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..b6bd57460
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..2a160ad82
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..e7a67cdcf
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..b69894e0c
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..be3e00b72
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..a454e25ba
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..125ba276e
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..bade4f67d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..6134405b6
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..2bd3e7560
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..01c0dc5f5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..8761261db
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..b07facd4a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/angle.png
new file mode 100644
index 000000000..5a894b742
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..fafb4fa2d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..1891e9368
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..3fcdfdb55
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..fba240668
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..ed872e070
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..309acb79d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d20911d50
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..feb609be3
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..4ba1e99c8
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..715bef9d0
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..7c269466e
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..cd031f1fe
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..7900c0b83
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..485fe4f19
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..9f419aeb4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..70e6166c4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..637eb225d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..a98d8040b
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..f749fe108
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..edf6cb904
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/angle.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/angle.png
new file mode 100644
index 000000000..56996a325
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..bd11d94b0
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..1de8ac3d4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..8d322aa9b
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..a051f280c
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..03007b147
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..c5ba1b179
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..d026b5532
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..a6fb2ec45
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..08e53e598
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..e8b0ace3a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..e62c58ba4
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..0142a4968
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..e5f1a46d3
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..ab2751c6e
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..c1fad34eb
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..b9911dcbc
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..6ecebdefa
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..237ecf25a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..b8dec44c5
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..0cb344daa
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/bundles/release/res/drawable/button_background.xml b/android/build/intermediates/bundles/release/res/drawable/button_background.xml
new file mode 100644
index 000000000..3c394bd48
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable/button_background.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/drawable/round_button.xml b/android/build/intermediates/bundles/release/res/drawable/round_button.xml
new file mode 100644
index 000000000..0a5d98e5d
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable/round_button.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/drawable/side_nav_bar.xml b/android/build/intermediates/bundles/release/res/drawable/side_nav_bar.xml
new file mode 100644
index 000000000..458b4b07d
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/drawable/side_nav_bar.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/layout/about_view.xml b/android/build/intermediates/bundles/release/res/layout/about_view.xml
new file mode 100644
index 000000000..d1d6f07c5
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/about_view.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/layout/activity_fullscreen_view.xml b/android/build/intermediates/bundles/release/res/layout/activity_fullscreen_view.xml
new file mode 100644
index 000000000..c2ff07ec5
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/activity_fullscreen_view.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/layout/activity_gallery.xml b/android/build/intermediates/bundles/release/res/layout/activity_gallery.xml
new file mode 100644
index 000000000..827ddb2d8
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/activity_gallery.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/layout/activity_main.xml b/android/build/intermediates/bundles/release/res/layout/activity_main.xml
new file mode 100644
index 000000000..f2f3ca7e4
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/activity_main.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/layout/activity_open_note_scanner.xml b/android/build/intermediates/bundles/release/res/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..169245743
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/activity_open_note_scanner.xml
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/layout/activity_settings.xml b/android/build/intermediates/bundles/release/res/layout/activity_settings.xml
new file mode 100644
index 000000000..3509b8411
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/activity_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/layout/gallery_item.xml b/android/build/intermediates/bundles/release/res/layout/gallery_item.xml
new file mode 100644
index 000000000..92f55043e
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/gallery_item.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/layout/layout_fullscreen_image.xml b/android/build/intermediates/bundles/release/res/layout/layout_fullscreen_image.xml
new file mode 100644
index 000000000..a2cf6d12f
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/layout_fullscreen_image.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/bundles/release/res/layout/tageditor_view.xml b/android/build/intermediates/bundles/release/res/layout/tageditor_view.xml
new file mode 100644
index 000000000..bd102f0c3
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/layout/tageditor_view.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/menu/menu_gallery.xml b/android/build/intermediates/bundles/release/res/menu/menu_gallery.xml
new file mode 100644
index 000000000..21cf59995
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/menu/menu_gallery.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/bundles/release/res/menu/menu_imagepager.xml b/android/build/intermediates/bundles/release/res/menu/menu_imagepager.xml
new file mode 100644
index 000000000..b21bfd6c7
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/menu/menu_imagepager.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher.xml b/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..2d09dc293
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..15e996471
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a9e3b9ae1
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..5b55321a6
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher.png b/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a4c69b95e
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/bundles/release/res/values-cs/values-cs.xml b/android/build/intermediates/bundles/release/res/values-cs/values-cs.xml
new file mode 100644
index 000000000..2f413cf4a
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-cs/values-cs.xml
@@ -0,0 +1,65 @@
+
+
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-de/values-de.xml b/android/build/intermediates/bundles/release/res/values-de/values-de.xml
new file mode 100644
index 000000000..da196becb
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-de/values-de.xml
@@ -0,0 +1,65 @@
+
+
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-es/values-es.xml b/android/build/intermediates/bundles/release/res/values-es/values-es.xml
new file mode 100644
index 000000000..e613dbfb2
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-es/values-es.xml
@@ -0,0 +1,65 @@
+
+
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-fr/values-fr.xml b/android/build/intermediates/bundles/release/res/values-fr/values-fr.xml
new file mode 100644
index 000000000..a8c9ceea5
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-fr/values-fr.xml
@@ -0,0 +1,65 @@
+
+
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-it/values-it.xml b/android/build/intermediates/bundles/release/res/values-it/values-it.xml
new file mode 100644
index 000000000..ca02bc338
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-it/values-it.xml
@@ -0,0 +1,65 @@
+
+
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-ja/values-ja.xml b/android/build/intermediates/bundles/release/res/values-ja/values-ja.xml
new file mode 100644
index 000000000..360ee2a6e
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-ja/values-ja.xml
@@ -0,0 +1,65 @@
+
+
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-pt/values-pt.xml b/android/build/intermediates/bundles/release/res/values-pt/values-pt.xml
new file mode 100644
index 000000000..56aa4b732
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-pt/values-pt.xml
@@ -0,0 +1,65 @@
+
+
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-v21/values-v21.xml b/android/build/intermediates/bundles/release/res/values-v21/values-v21.xml
new file mode 100644
index 000000000..4571b7f8b
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-v21/values-v21.xml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/bundles/release/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f5845a411
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,65 @@
+
+
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/values/values.xml b/android/build/intermediates/bundles/release/res/values/values.xml
new file mode 100644
index 000000000..a4239d674
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/values/values.xml
@@ -0,0 +1,98 @@
+
+
+ #66000000
+ #00E676
+ #00E676
+ #00C853
+
+ 16dp
+ 16dp
+ 16dp
+ 160dp
+ 16dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/bundles/release/res/xml/settings.xml b/android/build/intermediates/bundles/release/res/xml/settings.xml
new file mode 100644
index 000000000..d23cb4f7d
--- /dev/null
+++ b/android/build/intermediates/bundles/release/res/xml/settings.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/classes/release/android/support/design/R$anim.class b/android/build/intermediates/classes/release/android/support/design/R$anim.class
new file mode 100644
index 000000000..3260482ba
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$anim.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$attr.class b/android/build/intermediates/classes/release/android/support/design/R$attr.class
new file mode 100644
index 000000000..b3f44ac82
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$bool.class b/android/build/intermediates/classes/release/android/support/design/R$bool.class
new file mode 100644
index 000000000..5c7612959
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$bool.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$color.class b/android/build/intermediates/classes/release/android/support/design/R$color.class
new file mode 100644
index 000000000..8f8d59929
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$color.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$dimen.class b/android/build/intermediates/classes/release/android/support/design/R$dimen.class
new file mode 100644
index 000000000..ee32affa0
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$drawable.class b/android/build/intermediates/classes/release/android/support/design/R$drawable.class
new file mode 100644
index 000000000..5ac8a2356
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$drawable.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$id.class b/android/build/intermediates/classes/release/android/support/design/R$id.class
new file mode 100644
index 000000000..c97d1533c
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$id.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$integer.class b/android/build/intermediates/classes/release/android/support/design/R$integer.class
new file mode 100644
index 000000000..122b6b61d
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$integer.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$layout.class b/android/build/intermediates/classes/release/android/support/design/R$layout.class
new file mode 100644
index 000000000..326d9900e
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$layout.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$string.class b/android/build/intermediates/classes/release/android/support/design/R$string.class
new file mode 100644
index 000000000..4bda47432
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$string.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$style.class b/android/build/intermediates/classes/release/android/support/design/R$style.class
new file mode 100644
index 000000000..bab674771
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$style.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R$styleable.class b/android/build/intermediates/classes/release/android/support/design/R$styleable.class
new file mode 100644
index 000000000..e1f692f51
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/android/support/design/R.class b/android/build/intermediates/classes/release/android/support/design/R.class
new file mode 100644
index 000000000..0111521b4
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/design/R.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$anim.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$anim.class
new file mode 100644
index 000000000..48464c6ad
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$anim.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$attr.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$attr.class
new file mode 100644
index 000000000..2e6e2c3b6
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$bool.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$bool.class
new file mode 100644
index 000000000..dca01ba62
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$bool.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$color.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$color.class
new file mode 100644
index 000000000..a85b053fa
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$color.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$dimen.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$dimen.class
new file mode 100644
index 000000000..598fbcd41
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$drawable.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$drawable.class
new file mode 100644
index 000000000..a6a09e114
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$drawable.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$id.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$id.class
new file mode 100644
index 000000000..84032a68c
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$id.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$integer.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$integer.class
new file mode 100644
index 000000000..33bc9264b
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$integer.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$layout.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$layout.class
new file mode 100644
index 000000000..2fa8eda49
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$layout.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$string.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$string.class
new file mode 100644
index 000000000..e47348528
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$string.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$style.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$style.class
new file mode 100644
index 000000000..559355a8b
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$style.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R$styleable.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$styleable.class
new file mode 100644
index 000000000..05ef7da12
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/appcompat/R.class b/android/build/intermediates/classes/release/android/support/v7/appcompat/R.class
new file mode 100644
index 000000000..2c9d8664c
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/appcompat/R.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$attr.class b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$attr.class
new file mode 100644
index 000000000..22b6b8ef7
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$dimen.class b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$dimen.class
new file mode 100644
index 000000000..465262a59
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$id.class b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$id.class
new file mode 100644
index 000000000..e95d93b6a
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$id.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$styleable.class b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$styleable.class
new file mode 100644
index 000000000..a77d88a6f
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/android/support/v7/recyclerview/R.class b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R.class
new file mode 100644
index 000000000..a79eb8ee9
Binary files /dev/null and b/android/build/intermediates/classes/release/android/support/v7/recyclerview/R.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/BuildConfig.class b/android/build/intermediates/classes/release/com/documentscanner/BuildConfig.class
new file mode 100644
index 000000000..4b652b50f
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/BuildConfig.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/ClickListener.class b/android/build/intermediates/classes/release/com/documentscanner/ClickListener.class
new file mode 100644
index 000000000..1942686fc
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/ClickListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerModule.class b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerModule.class
new file mode 100644
index 000000000..8c331b9da
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerModule.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerPackage.class b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerPackage.class
new file mode 100644
index 000000000..3312d1ea9
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerPackage.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager$1.class b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager$1.class
new file mode 100644
index 000000000..fb549c6e9
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager.class b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager.class
new file mode 100644
index 000000000..53b20c7a0
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/DocumentScannerViewManager.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$1.class b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$1.class
new file mode 100644
index 000000000..357a525ef
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$2.class b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$2.class
new file mode 100644
index 000000000..de5e403b2
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$3.class b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$3.class
new file mode 100644
index 000000000..efaf9a73e
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor$3.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor.class b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor.class
new file mode 100644
index 000000000..c1e9b89b4
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/ImageProcessor.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$1.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$1.class
new file mode 100644
index 000000000..3752a50b0
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$10.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$10.class
new file mode 100644
index 000000000..18c8cca6c
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$10.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$2.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$2.class
new file mode 100644
index 000000000..b2c0f0c0c
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$3.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$3.class
new file mode 100644
index 000000000..48eceed1a
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$3.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$4.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$4.class
new file mode 100644
index 000000000..ff0f1b63e
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$4.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$5.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$5.class
new file mode 100644
index 000000000..4513a1fb0
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$5.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$6.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$6.class
new file mode 100644
index 000000000..f6a4a72ba
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$6.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$7.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$7.class
new file mode 100644
index 000000000..6fe894cc4
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$7.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$8.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$8.class
new file mode 100644
index 000000000..87ebe6672
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$8.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$9.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$9.class
new file mode 100644
index 000000000..0a420079d
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$9.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable$1.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable$1.class
new file mode 100644
index 000000000..e4be2607b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable.class
new file mode 100644
index 000000000..e1fe36807
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity$AnimationRunnable.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity.class
new file mode 100644
index 000000000..d04c52c03
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerActivity.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication$1.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication$1.class
new file mode 100644
index 000000000..921bdde36
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication.class b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication.class
new file mode 100644
index 000000000..f7a74a0e1
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/OpenNoteScannerApplication.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$anim.class b/android/build/intermediates/classes/release/com/documentscanner/R$anim.class
new file mode 100644
index 000000000..97e0d6315
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$anim.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$attr.class b/android/build/intermediates/classes/release/com/documentscanner/R$attr.class
new file mode 100644
index 000000000..b009b65b1
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$bool.class b/android/build/intermediates/classes/release/com/documentscanner/R$bool.class
new file mode 100644
index 000000000..2e3ff3eb7
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$bool.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$color.class b/android/build/intermediates/classes/release/com/documentscanner/R$color.class
new file mode 100644
index 000000000..1f65ac571
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$color.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$dimen.class b/android/build/intermediates/classes/release/com/documentscanner/R$dimen.class
new file mode 100644
index 000000000..f7adddfa0
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$drawable.class b/android/build/intermediates/classes/release/com/documentscanner/R$drawable.class
new file mode 100644
index 000000000..46c17fbd8
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$drawable.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$id.class b/android/build/intermediates/classes/release/com/documentscanner/R$id.class
new file mode 100644
index 000000000..a1332918c
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$id.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$integer.class b/android/build/intermediates/classes/release/com/documentscanner/R$integer.class
new file mode 100644
index 000000000..e88e94883
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$integer.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$layout.class b/android/build/intermediates/classes/release/com/documentscanner/R$layout.class
new file mode 100644
index 000000000..dfd1b83b8
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$layout.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$menu.class b/android/build/intermediates/classes/release/com/documentscanner/R$menu.class
new file mode 100644
index 000000000..833387a8c
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$menu.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$mipmap.class b/android/build/intermediates/classes/release/com/documentscanner/R$mipmap.class
new file mode 100644
index 000000000..dc95f9e40
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$mipmap.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$string.class b/android/build/intermediates/classes/release/com/documentscanner/R$string.class
new file mode 100644
index 000000000..f53c88fa7
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$string.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$style.class b/android/build/intermediates/classes/release/com/documentscanner/R$style.class
new file mode 100644
index 000000000..bf86fdd14
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$style.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$styleable.class b/android/build/intermediates/classes/release/com/documentscanner/R$styleable.class
new file mode 100644
index 000000000..fa3c63942
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R$xml.class b/android/build/intermediates/classes/release/com/documentscanner/R$xml.class
new file mode 100644
index 000000000..d3f5e329c
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R$xml.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/R.class b/android/build/intermediates/classes/release/com/documentscanner/R.class
new file mode 100644
index 000000000..bbb923fe1
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/R.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment$1.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment$1.class
new file mode 100644
index 000000000..3016938bb
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment.class
new file mode 100644
index 000000000..d719eb1b8
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/AboutFragment.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/AppConstant.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/AppConstant.class
new file mode 100644
index 000000000..e2e9f2b6a
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/AppConstant.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/Crop.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/Crop.class
new file mode 100644
index 000000000..c662befcd
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/Crop.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$1.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$1.class
new file mode 100644
index 000000000..58e3af020
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$1.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$1.class
new file mode 100644
index 000000000..47fe12aa2
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$2.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$2.class
new file mode 100644
index 000000000..d9acd43a3
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2.class
new file mode 100644
index 000000000..5c32426d4
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$3.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$3.class
new file mode 100644
index 000000000..7a2cf9bc5
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$3.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$4.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$4.class
new file mode 100644
index 000000000..8da412f38
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$4.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class
new file mode 100644
index 000000000..5478bfd54
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader.class
new file mode 100644
index 000000000..6e1c23130
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/CustomOpenCVLoader.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/OpenNoteMessage.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/OpenNoteMessage.class
new file mode 100644
index 000000000..a54809f88
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/OpenNoteMessage.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/PerspectiveCorrection.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/PerspectiveCorrection.class
new file mode 100644
index 000000000..b5afa9648
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/PerspectiveCorrection.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/PreviewFrame.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/PreviewFrame.class
new file mode 100644
index 000000000..29f01794d
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/PreviewFrame.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/Quadrilateral.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/Quadrilateral.class
new file mode 100644
index 000000000..dc9d012a4
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/Quadrilateral.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/ScannedDocument.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/ScannedDocument.class
new file mode 100644
index 000000000..b854a1c58
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/ScannedDocument.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils$1.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils$1.class
new file mode 100644
index 000000000..e0edd897d
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils.class b/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils.class
new file mode 100644
index 000000000..84170a70b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/helpers/Utils.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView$HUDShape.class b/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView$HUDShape.class
new file mode 100644
index 000000000..6aa0d76df
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView$HUDShape.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView.class b/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView.class
new file mode 100644
index 000000000..a702d3f83
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/HUDCanvasView.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$1.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$1.class
new file mode 100644
index 000000000..7e4a58afe
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$2.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$2.class
new file mode 100644
index 000000000..e83c90439
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$3.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$3.class
new file mode 100644
index 000000000..6a434c349
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$3.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$4.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$4.class
new file mode 100644
index 000000000..ea4c514fb
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$4.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$5.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$5.class
new file mode 100644
index 000000000..6eb38db86
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$5.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$6.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$6.class
new file mode 100644
index 000000000..e82a2d4d7
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$6.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class
new file mode 100644
index 000000000..a7eab139e
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class
new file mode 100644
index 000000000..4fdcd4d48
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class
new file mode 100644
index 000000000..666f9ed57
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView.class b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView.class
new file mode 100644
index 000000000..9db5f09b3
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/OpenNoteCameraView.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/SquareFrameLayout.class b/android/build/intermediates/classes/release/com/documentscanner/views/SquareFrameLayout.class
new file mode 100644
index 000000000..d3e12b93b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/SquareFrameLayout.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$1.class b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$1.class
new file mode 100644
index 000000000..dfbb6c34f
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$2.class b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$2.class
new file mode 100644
index 000000000..b4f74887b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment$2.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment.class b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment.class
new file mode 100644
index 000000000..49fa62760
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TagEditorFragment.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$1.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$1.class
new file mode 100644
index 000000000..79672c996
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$1.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$CompatScroller.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$CompatScroller.class
new file mode 100644
index 000000000..98221606b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$CompatScroller.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$DoubleTapZoom.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$DoubleTapZoom.class
new file mode 100644
index 000000000..5b5a3c8f2
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$DoubleTapZoom.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$Fling.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$Fling.class
new file mode 100644
index 000000000..57507ed06
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$Fling.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$GestureListener.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$GestureListener.class
new file mode 100644
index 000000000..ec26f87f8
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$GestureListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$OnTouchImageViewListener.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$OnTouchImageViewListener.class
new file mode 100644
index 000000000..db394c9ef
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$OnTouchImageViewListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$PrivateOnTouchListener.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$PrivateOnTouchListener.class
new file mode 100644
index 000000000..0bd04eb2b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$PrivateOnTouchListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ScaleListener.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ScaleListener.class
new file mode 100644
index 000000000..09774db3b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ScaleListener.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$State.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$State.class
new file mode 100644
index 000000000..c3c6215e0
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$State.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ZoomVariables.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ZoomVariables.class
new file mode 100644
index 000000000..bc8f24335
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView$ZoomVariables.class differ
diff --git a/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView.class b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView.class
new file mode 100644
index 000000000..76f727662
Binary files /dev/null and b/android/build/intermediates/classes/release/com/documentscanner/views/TouchImageView.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/R$attr.class b/android/build/intermediates/classes/release/com/facebook/drawee/R$attr.class
new file mode 100644
index 000000000..e34f3a93f
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/R$id.class b/android/build/intermediates/classes/release/com/facebook/drawee/R$id.class
new file mode 100644
index 000000000..6f1f1b5c2
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/R$id.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/R$styleable.class b/android/build/intermediates/classes/release/com/facebook/drawee/R$styleable.class
new file mode 100644
index 000000000..515541187
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/R.class b/android/build/intermediates/classes/release/com/facebook/drawee/R.class
new file mode 100644
index 000000000..fae220685
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/R.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$attr.class b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$attr.class
new file mode 100644
index 000000000..b200bb883
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$id.class b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$id.class
new file mode 100644
index 000000000..89b216f13
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$id.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$styleable.class b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$styleable.class
new file mode 100644
index 000000000..a593cda5e
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R.class b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R.class
new file mode 100644
index 000000000..2152ccec6
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline/R.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$anim.class b/android/build/intermediates/classes/release/com/facebook/react/R$anim.class
new file mode 100644
index 000000000..1b18a72b2
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$anim.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$attr.class b/android/build/intermediates/classes/release/com/facebook/react/R$attr.class
new file mode 100644
index 000000000..1ceb24010
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$bool.class b/android/build/intermediates/classes/release/com/facebook/react/R$bool.class
new file mode 100644
index 000000000..94023e3a9
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$bool.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$color.class b/android/build/intermediates/classes/release/com/facebook/react/R$color.class
new file mode 100644
index 000000000..ed234e6e5
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$color.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$dimen.class b/android/build/intermediates/classes/release/com/facebook/react/R$dimen.class
new file mode 100644
index 000000000..8bca9c50b
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$drawable.class b/android/build/intermediates/classes/release/com/facebook/react/R$drawable.class
new file mode 100644
index 000000000..567912558
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$drawable.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$id.class b/android/build/intermediates/classes/release/com/facebook/react/R$id.class
new file mode 100644
index 000000000..32649549a
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$id.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$integer.class b/android/build/intermediates/classes/release/com/facebook/react/R$integer.class
new file mode 100644
index 000000000..074f63833
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$integer.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$layout.class b/android/build/intermediates/classes/release/com/facebook/react/R$layout.class
new file mode 100644
index 000000000..f0630e219
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$layout.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$string.class b/android/build/intermediates/classes/release/com/facebook/react/R$string.class
new file mode 100644
index 000000000..31560cb8f
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$string.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$style.class b/android/build/intermediates/classes/release/com/facebook/react/R$style.class
new file mode 100644
index 000000000..d6fd2be09
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$style.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$styleable.class b/android/build/intermediates/classes/release/com/facebook/react/R$styleable.class
new file mode 100644
index 000000000..2d4eddc81
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R$xml.class b/android/build/intermediates/classes/release/com/facebook/react/R$xml.class
new file mode 100644
index 000000000..080a798ab
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R$xml.class differ
diff --git a/android/build/intermediates/classes/release/com/facebook/react/R.class b/android/build/intermediates/classes/release/com/facebook/react/R.class
new file mode 100644
index 000000000..d1ff64b44
Binary files /dev/null and b/android/build/intermediates/classes/release/com/facebook/react/R.class differ
diff --git a/android/build/intermediates/classes/release/org/opencv/R$attr.class b/android/build/intermediates/classes/release/org/opencv/R$attr.class
new file mode 100644
index 000000000..6bf64cdbc
Binary files /dev/null and b/android/build/intermediates/classes/release/org/opencv/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/org/opencv/R$id.class b/android/build/intermediates/classes/release/org/opencv/R$id.class
new file mode 100644
index 000000000..a4cb0673d
Binary files /dev/null and b/android/build/intermediates/classes/release/org/opencv/R$id.class differ
diff --git a/android/build/intermediates/classes/release/org/opencv/R$styleable.class b/android/build/intermediates/classes/release/org/opencv/R$styleable.class
new file mode 100644
index 000000000..ef97b2708
Binary files /dev/null and b/android/build/intermediates/classes/release/org/opencv/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/org/opencv/R.class b/android/build/intermediates/classes/release/org/opencv/R.class
new file mode 100644
index 000000000..cd2e504cb
Binary files /dev/null and b/android/build/intermediates/classes/release/org/opencv/R.class differ
diff --git a/android/build/intermediates/classes/release/org/webkit/android_jsc/R.class b/android/build/intermediates/classes/release/org/webkit/android_jsc/R.class
new file mode 100644
index 000000000..67007f23a
Binary files /dev/null and b/android/build/intermediates/classes/release/org/webkit/android_jsc/R.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$anim.class b/android/build/intermediates/classes/release/us/feras/mdv/R$anim.class
new file mode 100644
index 000000000..74c6f525f
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$anim.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$attr.class b/android/build/intermediates/classes/release/us/feras/mdv/R$attr.class
new file mode 100644
index 000000000..da26acd37
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$attr.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$bool.class b/android/build/intermediates/classes/release/us/feras/mdv/R$bool.class
new file mode 100644
index 000000000..493cf536d
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$bool.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$color.class b/android/build/intermediates/classes/release/us/feras/mdv/R$color.class
new file mode 100644
index 000000000..cd32cdc05
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$color.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$dimen.class b/android/build/intermediates/classes/release/us/feras/mdv/R$dimen.class
new file mode 100644
index 000000000..6449fb62b
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$dimen.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$drawable.class b/android/build/intermediates/classes/release/us/feras/mdv/R$drawable.class
new file mode 100644
index 000000000..7d745f434
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$drawable.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$id.class b/android/build/intermediates/classes/release/us/feras/mdv/R$id.class
new file mode 100644
index 000000000..e71d48e00
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$id.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$integer.class b/android/build/intermediates/classes/release/us/feras/mdv/R$integer.class
new file mode 100644
index 000000000..493af8ece
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$integer.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$layout.class b/android/build/intermediates/classes/release/us/feras/mdv/R$layout.class
new file mode 100644
index 000000000..b8bcca215
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$layout.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$string.class b/android/build/intermediates/classes/release/us/feras/mdv/R$string.class
new file mode 100644
index 000000000..8b4357aa4
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$string.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$style.class b/android/build/intermediates/classes/release/us/feras/mdv/R$style.class
new file mode 100644
index 000000000..a93a65bf8
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$style.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R$styleable.class b/android/build/intermediates/classes/release/us/feras/mdv/R$styleable.class
new file mode 100644
index 000000000..de9f31f39
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R$styleable.class differ
diff --git a/android/build/intermediates/classes/release/us/feras/mdv/R.class b/android/build/intermediates/classes/release/us/feras/mdv/R.class
new file mode 100644
index 000000000..f8e00a5c0
Binary files /dev/null and b/android/build/intermediates/classes/release/us/feras/mdv/R.class differ
diff --git a/android/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar b/android/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar
new file mode 100644
index 000000000..c8cccbc6f
Binary files /dev/null and b/android/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar differ
diff --git a/android/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar b/android/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar
new file mode 100644
index 000000000..f0911cacc
Binary files /dev/null and b/android/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar differ
diff --git a/android/build/intermediates/dex-cache/cache.xml b/android/build/intermediates/dex-cache/cache.xml
new file mode 100644
index 000000000..28cf2d2c4
--- /dev/null
+++ b/android/build/intermediates/dex-cache/cache.xml
@@ -0,0 +1,293 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..88a0d85d1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..88a0d85d1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..8ff147b03
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..e15f76a09
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt
new file mode 100644
index 000000000..041ecf63c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt
@@ -0,0 +1,1247 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int attr actionBarDivider 0x7f01003b
+int attr actionBarItemBackground 0x7f01003c
+int attr actionBarPopupTheme 0x7f010035
+int attr actionBarSize 0x7f01003a
+int attr actionBarSplitStyle 0x7f010037
+int attr actionBarStyle 0x7f010036
+int attr actionBarTabBarStyle 0x7f010031
+int attr actionBarTabStyle 0x7f010030
+int attr actionBarTabTextStyle 0x7f010032
+int attr actionBarTheme 0x7f010038
+int attr actionBarWidgetTheme 0x7f010039
+int attr actionButtonStyle 0x7f010055
+int attr actionDropDownStyle 0x7f010051
+int attr actionLayout 0x7f0100a3
+int attr actionMenuTextAppearance 0x7f01003d
+int attr actionMenuTextColor 0x7f01003e
+int attr actionModeBackground 0x7f010041
+int attr actionModeCloseButtonStyle 0x7f010040
+int attr actionModeCloseDrawable 0x7f010043
+int attr actionModeCopyDrawable 0x7f010045
+int attr actionModeCutDrawable 0x7f010044
+int attr actionModeFindDrawable 0x7f010049
+int attr actionModePasteDrawable 0x7f010046
+int attr actionModePopupWindowStyle 0x7f01004b
+int attr actionModeSelectAllDrawable 0x7f010047
+int attr actionModeShareDrawable 0x7f010048
+int attr actionModeSplitBackground 0x7f010042
+int attr actionModeStyle 0x7f01003f
+int attr actionModeWebSearchDrawable 0x7f01004a
+int attr actionOverflowButtonStyle 0x7f010033
+int attr actionOverflowMenuStyle 0x7f010034
+int attr actionProviderClass 0x7f0100a5
+int attr actionViewClass 0x7f0100a4
+int attr activityChooserViewStyle 0x7f01005d
+int attr alertDialogButtonGroupStyle 0x7f010080
+int attr alertDialogCenterButtons 0x7f010081
+int attr alertDialogStyle 0x7f01007f
+int attr alertDialogTheme 0x7f010082
+int attr allowStacking 0x7f010094
+int attr arrowHeadLength 0x7f01009b
+int attr arrowShaftLength 0x7f01009c
+int attr autoCompleteTextViewStyle 0x7f010087
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100cf
+int attr backgroundTintMode 0x7f0100d0
+int attr barLength 0x7f01009d
+int attr borderlessButtonStyle 0x7f01005a
+int attr buttonBarButtonStyle 0x7f010057
+int attr buttonBarNegativeButtonStyle 0x7f010085
+int attr buttonBarNeutralButtonStyle 0x7f010086
+int attr buttonBarPositiveButtonStyle 0x7f010084
+int attr buttonBarStyle 0x7f010056
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f010088
+int attr buttonStyleSmall 0x7f010089
+int attr buttonTint 0x7f010095
+int attr buttonTintMode 0x7f010096
+int attr checkboxStyle 0x7f01008a
+int attr checkedTextViewStyle 0x7f01008b
+int attr closeIcon 0x7f0100ad
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100c6
+int attr collapseIcon 0x7f0100c5
+int attr color 0x7f010097
+int attr colorAccent 0x7f010078
+int attr colorButtonNormal 0x7f01007c
+int attr colorControlActivated 0x7f01007a
+int attr colorControlHighlight 0x7f01007b
+int attr colorControlNormal 0x7f010079
+int attr colorPrimary 0x7f010076
+int attr colorPrimaryDark 0x7f010077
+int attr colorSwitchThumbNormal 0x7f01007d
+int attr commitIcon 0x7f0100b2
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f01007e
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f0100ac
+int attr dialogPreferredPadding 0x7f01004f
+int attr dialogTheme 0x7f01004e
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01005c
+int attr dividerPadding 0x7f0100a1
+int attr dividerVertical 0x7f01005b
+int attr drawableSize 0x7f010099
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f01006e
+int attr dropdownListPreferredItemHeight 0x7f010052
+int attr editTextBackground 0x7f010063
+int attr editTextColor 0x7f010062
+int attr editTextStyle 0x7f01008c
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr gapBetweenBars 0x7f01009a
+int attr goIcon 0x7f0100ae
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f010054
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f0100aa
+int attr imageButtonStyle 0x7f010064
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f0100a9
+int attr listChoiceBackgroundIndicator 0x7f010075
+int attr listDividerAlertDialog 0x7f010050
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f01006f
+int attr listPreferredItemHeight 0x7f010069
+int attr listPreferredItemHeightLarge 0x7f01006b
+int attr listPreferredItemHeightSmall 0x7f01006a
+int attr listPreferredItemPaddingLeft 0x7f01006c
+int attr listPreferredItemPaddingRight 0x7f01006d
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100c9
+int attr maxButtonHeight 0x7f0100c4
+int attr measureWithLargestChild 0x7f01009f
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100c8
+int attr navigationIcon 0x7f0100c7
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f0100a7
+int attr paddingEnd 0x7f0100cd
+int attr paddingStart 0x7f0100cc
+int attr panelBackground 0x7f010072
+int attr panelMenuListTheme 0x7f010074
+int attr panelMenuListWidth 0x7f010073
+int attr popupMenuStyle 0x7f010060
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010061
+int attr preserveIconSpacing 0x7f0100a6
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f0100b4
+int attr queryHint 0x7f0100ab
+int attr radioButtonStyle 0x7f01008d
+int attr ratingBarStyle 0x7f01008e
+int attr ratingBarStyleIndicator 0x7f01008f
+int attr ratingBarStyleSmall 0x7f010090
+int attr searchHintIcon 0x7f0100b0
+int attr searchIcon 0x7f0100af
+int attr searchViewStyle 0x7f010068
+int attr seekBarStyle 0x7f010091
+int attr selectableItemBackground 0x7f010058
+int attr selectableItemBackgroundBorderless 0x7f010059
+int attr showAsAction 0x7f0100a2
+int attr showDividers 0x7f0100a0
+int attr showText 0x7f0100bc
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010098
+int attr spinnerDropDownItemStyle 0x7f010053
+int attr spinnerStyle 0x7f010092
+int attr splitTrack 0x7f0100bb
+int attr srcCompat 0x7f010024
+int attr state_above_anchor 0x7f0100a8
+int attr submitBackground 0x7f0100b5
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100be
+int attr subtitleTextColor 0x7f0100cb
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f0100b3
+int attr switchMinWidth 0x7f0100b9
+int attr switchPadding 0x7f0100ba
+int attr switchStyle 0x7f010093
+int attr switchTextAppearance 0x7f0100b8
+int attr textAllCaps 0x7f010025
+int attr textAppearanceLargePopupMenu 0x7f01004c
+int attr textAppearanceListItem 0x7f010070
+int attr textAppearanceListItemSmall 0x7f010071
+int attr textAppearanceSearchResultSubtitle 0x7f010066
+int attr textAppearanceSearchResultTitle 0x7f010065
+int attr textAppearanceSmallPopupMenu 0x7f01004d
+int attr textColorAlertDialogListItem 0x7f010083
+int attr textColorSearchUrl 0x7f010067
+int attr theme 0x7f0100ce
+int attr thickness 0x7f01009e
+int attr thumbTextPadding 0x7f0100b7
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100c3
+int attr titleMarginEnd 0x7f0100c1
+int attr titleMarginStart 0x7f0100c0
+int attr titleMarginTop 0x7f0100c2
+int attr titleMargins 0x7f0100bf
+int attr titleTextAppearance 0x7f0100bd
+int attr titleTextColor 0x7f0100ca
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f01005f
+int attr toolbarStyle 0x7f01005e
+int attr track 0x7f0100b6
+int attr voiceIcon 0x7f0100b1
+int attr windowActionBar 0x7f010026
+int attr windowActionBarOverlay 0x7f010028
+int attr windowActionModeOverlay 0x7f010029
+int attr windowFixedHeightMajor 0x7f01002d
+int attr windowFixedHeightMinor 0x7f01002b
+int attr windowFixedWidthMajor 0x7f01002a
+int attr windowFixedWidthMinor 0x7f01002c
+int attr windowMinWidthMajor 0x7f01002e
+int attr windowMinWidthMinor 0x7f01002f
+int attr windowNoTitle 0x7f010027
+int bool abc_action_bar_embed_tabs 0x7f060003
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
+int bool abc_allow_stacked_button_bar 0x7f060000
+int bool abc_config_actionMenuItemAllCaps 0x7f060005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
+int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
+int color abc_background_cache_hint_selector_material_dark 0x7f0a003a
+int color abc_background_cache_hint_selector_material_light 0x7f0a003b
+int color abc_color_highlight_material 0x7f0a003c
+int color abc_input_method_navigation_guard 0x7f0a0000
+int color abc_primary_text_disable_only_material_dark 0x7f0a003d
+int color abc_primary_text_disable_only_material_light 0x7f0a003e
+int color abc_primary_text_material_dark 0x7f0a003f
+int color abc_primary_text_material_light 0x7f0a0040
+int color abc_search_url_text 0x7f0a0041
+int color abc_search_url_text_normal 0x7f0a0001
+int color abc_search_url_text_pressed 0x7f0a0002
+int color abc_search_url_text_selected 0x7f0a0003
+int color abc_secondary_text_material_dark 0x7f0a0042
+int color abc_secondary_text_material_light 0x7f0a0043
+int color accent_material_dark 0x7f0a0004
+int color accent_material_light 0x7f0a0005
+int color background_floating_material_dark 0x7f0a0006
+int color background_floating_material_light 0x7f0a0007
+int color background_material_dark 0x7f0a0008
+int color background_material_light 0x7f0a0009
+int color bright_foreground_disabled_material_dark 0x7f0a000a
+int color bright_foreground_disabled_material_light 0x7f0a000b
+int color bright_foreground_inverse_material_dark 0x7f0a000c
+int color bright_foreground_inverse_material_light 0x7f0a000d
+int color bright_foreground_material_dark 0x7f0a000e
+int color bright_foreground_material_light 0x7f0a000f
+int color button_material_dark 0x7f0a0010
+int color button_material_light 0x7f0a0011
+int color dim_foreground_disabled_material_dark 0x7f0a0012
+int color dim_foreground_disabled_material_light 0x7f0a0013
+int color dim_foreground_material_dark 0x7f0a0014
+int color dim_foreground_material_light 0x7f0a0015
+int color foreground_material_dark 0x7f0a0016
+int color foreground_material_light 0x7f0a0017
+int color highlighted_text_material_dark 0x7f0a0018
+int color highlighted_text_material_light 0x7f0a0019
+int color hint_foreground_material_dark 0x7f0a001a
+int color hint_foreground_material_light 0x7f0a001b
+int color material_blue_grey_800 0x7f0a001c
+int color material_blue_grey_900 0x7f0a001d
+int color material_blue_grey_950 0x7f0a001e
+int color material_deep_teal_200 0x7f0a001f
+int color material_deep_teal_500 0x7f0a0020
+int color material_grey_100 0x7f0a0021
+int color material_grey_300 0x7f0a0022
+int color material_grey_50 0x7f0a0023
+int color material_grey_600 0x7f0a0024
+int color material_grey_800 0x7f0a0025
+int color material_grey_850 0x7f0a0026
+int color material_grey_900 0x7f0a0027
+int color primary_dark_material_dark 0x7f0a0028
+int color primary_dark_material_light 0x7f0a0029
+int color primary_material_dark 0x7f0a002a
+int color primary_material_light 0x7f0a002b
+int color primary_text_default_material_dark 0x7f0a002c
+int color primary_text_default_material_light 0x7f0a002d
+int color primary_text_disabled_material_dark 0x7f0a002e
+int color primary_text_disabled_material_light 0x7f0a002f
+int color ripple_material_dark 0x7f0a0030
+int color ripple_material_light 0x7f0a0031
+int color secondary_text_default_material_dark 0x7f0a0032
+int color secondary_text_default_material_light 0x7f0a0033
+int color secondary_text_disabled_material_dark 0x7f0a0034
+int color secondary_text_disabled_material_light 0x7f0a0035
+int color switch_thumb_disabled_material_dark 0x7f0a0036
+int color switch_thumb_disabled_material_light 0x7f0a0037
+int color switch_thumb_material_dark 0x7f0a0044
+int color switch_thumb_material_light 0x7f0a0045
+int color switch_thumb_normal_material_dark 0x7f0a0038
+int color switch_thumb_normal_material_light 0x7f0a0039
+int dimen abc_action_bar_content_inset_material 0x7f07000d
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_end_material 0x7f07000e
+int dimen abc_action_bar_default_padding_start_material 0x7f07000f
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070012
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070013
+int dimen abc_action_bar_progress_bar_size 0x7f070002
+int dimen abc_action_bar_stacked_max_height 0x7f070014
+int dimen abc_action_bar_stacked_tab_max_width 0x7f070015
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070016
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f070017
+int dimen abc_action_button_min_height_material 0x7f070018
+int dimen abc_action_button_min_width_material 0x7f070019
+int dimen abc_action_button_min_width_overflow_material 0x7f07001a
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f07001b
+int dimen abc_button_inset_vertical_material 0x7f07001c
+int dimen abc_button_padding_horizontal_material 0x7f07001d
+int dimen abc_button_padding_vertical_material 0x7f07001e
+int dimen abc_config_prefDialogWidth 0x7f070005
+int dimen abc_control_corner_material 0x7f07001f
+int dimen abc_control_inset_material 0x7f070020
+int dimen abc_control_padding_material 0x7f070021
+int dimen abc_dialog_fixed_height_major 0x7f070006
+int dimen abc_dialog_fixed_height_minor 0x7f070007
+int dimen abc_dialog_fixed_width_major 0x7f070008
+int dimen abc_dialog_fixed_width_minor 0x7f070009
+int dimen abc_dialog_list_padding_vertical_material 0x7f070022
+int dimen abc_dialog_min_width_major 0x7f07000a
+int dimen abc_dialog_min_width_minor 0x7f07000b
+int dimen abc_dialog_padding_material 0x7f070023
+int dimen abc_dialog_padding_top_material 0x7f070024
+int dimen abc_disabled_alpha_material_dark 0x7f070025
+int dimen abc_disabled_alpha_material_light 0x7f070026
+int dimen abc_dropdownitem_icon_width 0x7f070027
+int dimen abc_dropdownitem_text_padding_left 0x7f070028
+int dimen abc_dropdownitem_text_padding_right 0x7f070029
+int dimen abc_edit_text_inset_bottom_material 0x7f07002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
+int dimen abc_edit_text_inset_top_material 0x7f07002c
+int dimen abc_floating_window_z 0x7f07002d
+int dimen abc_list_item_padding_horizontal_material 0x7f07002e
+int dimen abc_panel_menu_list_width 0x7f07002f
+int dimen abc_search_view_preferred_width 0x7f070030
+int dimen abc_search_view_text_min_width 0x7f07000c
+int dimen abc_seekbar_track_background_height_material 0x7f070031
+int dimen abc_seekbar_track_progress_height_material 0x7f070032
+int dimen abc_select_dialog_padding_start_material 0x7f070033
+int dimen abc_switch_padding 0x7f070010
+int dimen abc_text_size_body_1_material 0x7f070034
+int dimen abc_text_size_body_2_material 0x7f070035
+int dimen abc_text_size_button_material 0x7f070036
+int dimen abc_text_size_caption_material 0x7f070037
+int dimen abc_text_size_display_1_material 0x7f070038
+int dimen abc_text_size_display_2_material 0x7f070039
+int dimen abc_text_size_display_3_material 0x7f07003a
+int dimen abc_text_size_display_4_material 0x7f07003b
+int dimen abc_text_size_headline_material 0x7f07003c
+int dimen abc_text_size_large_material 0x7f07003d
+int dimen abc_text_size_medium_material 0x7f07003e
+int dimen abc_text_size_menu_material 0x7f07003f
+int dimen abc_text_size_small_material 0x7f070040
+int dimen abc_text_size_subhead_material 0x7f070041
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
+int dimen abc_text_size_title_material 0x7f070042
+int dimen abc_text_size_title_material_toolbar 0x7f070004
+int dimen disabled_alpha_material_dark 0x7f070043
+int dimen disabled_alpha_material_light 0x7f070044
+int dimen highlight_alpha_material_colored 0x7f070045
+int dimen highlight_alpha_material_dark 0x7f070046
+int dimen highlight_alpha_material_light 0x7f070047
+int dimen notification_large_icon_height 0x7f070048
+int dimen notification_large_icon_width 0x7f070049
+int dimen notification_subtext_size 0x7f07004a
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_star_black_16dp 0x7f020021
+int drawable abc_ic_star_black_36dp 0x7f020022
+int drawable abc_ic_star_half_black_16dp 0x7f020023
+int drawable abc_ic_star_half_black_36dp 0x7f020024
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
+int drawable abc_item_background_holo_dark 0x7f020026
+int drawable abc_item_background_holo_light 0x7f020027
+int drawable abc_list_divider_mtrl_alpha 0x7f020028
+int drawable abc_list_focused_holo 0x7f020029
+int drawable abc_list_longpressed_holo 0x7f02002a
+int drawable abc_list_pressed_holo_dark 0x7f02002b
+int drawable abc_list_pressed_holo_light 0x7f02002c
+int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
+int drawable abc_list_selector_disabled_holo_light 0x7f020030
+int drawable abc_list_selector_holo_dark 0x7f020031
+int drawable abc_list_selector_holo_light 0x7f020032
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
+int drawable abc_popup_background_mtrl_mult 0x7f020034
+int drawable abc_ratingbar_full_material 0x7f020035
+int drawable abc_ratingbar_indicator_material 0x7f020036
+int drawable abc_ratingbar_small_material 0x7f020037
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
+int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
+int drawable abc_seekbar_thumb_material 0x7f02003d
+int drawable abc_seekbar_track_material 0x7f02003e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
+int drawable abc_spinner_textfield_background_material 0x7f020040
+int drawable abc_switch_thumb_material 0x7f020041
+int drawable abc_switch_track_mtrl_alpha 0x7f020042
+int drawable abc_tab_indicator_material 0x7f020043
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
+int drawable abc_text_cursor_material 0x7f020045
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
+int drawable abc_textfield_default_mtrl_alpha 0x7f020047
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
+int drawable abc_textfield_search_material 0x7f02004a
+int drawable notification_template_icon_bg 0x7f02004b
+int id action0 0x7f0b0050
+int id action_bar 0x7f0b0041
+int id action_bar_activity_content 0x7f0b0000
+int id action_bar_container 0x7f0b0040
+int id action_bar_root 0x7f0b003c
+int id action_bar_spinner 0x7f0b0001
+int id action_bar_subtitle 0x7f0b0022
+int id action_bar_title 0x7f0b0021
+int id action_context_bar 0x7f0b0042
+int id action_divider 0x7f0b0054
+int id action_menu_divider 0x7f0b0002
+int id action_menu_presenter 0x7f0b0003
+int id action_mode_bar 0x7f0b003e
+int id action_mode_bar_stub 0x7f0b003d
+int id action_mode_close_button 0x7f0b0023
+int id activity_chooser_view_content 0x7f0b0024
+int id alertTitle 0x7f0b0030
+int id always 0x7f0b001c
+int id beginning 0x7f0b0019
+int id buttonPanel 0x7f0b002b
+int id cancel_action 0x7f0b0051
+int id checkbox 0x7f0b0039
+int id chronometer 0x7f0b0057
+int id collapseActionView 0x7f0b001d
+int id contentPanel 0x7f0b0031
+int id custom 0x7f0b0037
+int id customPanel 0x7f0b0036
+int id decor_content_parent 0x7f0b003f
+int id default_activity_button 0x7f0b0027
+int id disableHome 0x7f0b000c
+int id edit_query 0x7f0b0043
+int id end 0x7f0b001a
+int id end_padder 0x7f0b005c
+int id expand_activities_button 0x7f0b0025
+int id expanded_menu 0x7f0b0038
+int id home 0x7f0b0004
+int id homeAsUp 0x7f0b000d
+int id icon 0x7f0b0029
+int id ifRoom 0x7f0b001e
+int id image 0x7f0b0026
+int id info 0x7f0b005b
+int id line1 0x7f0b0055
+int id line3 0x7f0b0059
+int id listMode 0x7f0b0009
+int id list_item 0x7f0b0028
+int id media_actions 0x7f0b0053
+int id middle 0x7f0b001b
+int id multiply 0x7f0b0014
+int id never 0x7f0b001f
+int id none 0x7f0b000e
+int id normal 0x7f0b000a
+int id parentPanel 0x7f0b002d
+int id progress_circular 0x7f0b0005
+int id progress_horizontal 0x7f0b0006
+int id radio 0x7f0b003b
+int id screen 0x7f0b0015
+int id scrollIndicatorDown 0x7f0b0035
+int id scrollIndicatorUp 0x7f0b0032
+int id scrollView 0x7f0b0033
+int id search_badge 0x7f0b0045
+int id search_bar 0x7f0b0044
+int id search_button 0x7f0b0046
+int id search_close_btn 0x7f0b004b
+int id search_edit_frame 0x7f0b0047
+int id search_go_btn 0x7f0b004d
+int id search_mag_icon 0x7f0b0048
+int id search_plate 0x7f0b0049
+int id search_src_text 0x7f0b004a
+int id search_voice_btn 0x7f0b004e
+int id select_dialog_listview 0x7f0b004f
+int id shortcut 0x7f0b003a
+int id showCustom 0x7f0b000f
+int id showHome 0x7f0b0010
+int id showTitle 0x7f0b0011
+int id spacer 0x7f0b002c
+int id split_action_bar 0x7f0b0007
+int id src_atop 0x7f0b0016
+int id src_in 0x7f0b0017
+int id src_over 0x7f0b0018
+int id status_bar_latest_event_content 0x7f0b0052
+int id submit_area 0x7f0b004c
+int id tabMode 0x7f0b000b
+int id text 0x7f0b005a
+int id text2 0x7f0b0058
+int id textSpacerNoButtons 0x7f0b0034
+int id time 0x7f0b0056
+int id title 0x7f0b002a
+int id title_template 0x7f0b002f
+int id topPanel 0x7f0b002e
+int id up 0x7f0b0008
+int id useLogo 0x7f0b0012
+int id withText 0x7f0b0020
+int id wrap_content 0x7f0b0013
+int integer abc_config_activityDefaultDur 0x7f090001
+int integer abc_config_activityShortDur 0x7f090002
+int integer abc_max_action_buttons 0x7f090000
+int integer cancel_button_image_alpha 0x7f090003
+int integer status_bar_notification_info_maxnum 0x7f090004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_button_bar_material 0x7f030009
+int layout abc_alert_dialog_material 0x7f03000a
+int layout abc_dialog_title_material 0x7f03000b
+int layout abc_expanded_menu_layout 0x7f03000c
+int layout abc_list_menu_item_checkbox 0x7f03000d
+int layout abc_list_menu_item_icon 0x7f03000e
+int layout abc_list_menu_item_layout 0x7f03000f
+int layout abc_list_menu_item_radio 0x7f030010
+int layout abc_popup_menu_item_layout 0x7f030011
+int layout abc_screen_content_include 0x7f030012
+int layout abc_screen_simple 0x7f030013
+int layout abc_screen_simple_overlay_action_mode 0x7f030014
+int layout abc_screen_toolbar 0x7f030015
+int layout abc_search_dropdown_item_icons_2line 0x7f030016
+int layout abc_search_view 0x7f030017
+int layout abc_select_dialog_material 0x7f030018
+int layout notification_media_action 0x7f030019
+int layout notification_media_cancel_action 0x7f03001a
+int layout notification_template_big_media 0x7f03001b
+int layout notification_template_big_media_narrow 0x7f03001c
+int layout notification_template_lines 0x7f03001d
+int layout notification_template_media 0x7f03001e
+int layout notification_template_part_chronometer 0x7f03001f
+int layout notification_template_part_time 0x7f030020
+int layout select_dialog_item_material 0x7f030021
+int layout select_dialog_multichoice_material 0x7f030022
+int layout select_dialog_singlechoice_material 0x7f030023
+int layout support_simple_spinner_dropdown_item 0x7f030024
+int string abc_action_bar_home_description 0x7f050000
+int string abc_action_bar_home_description_format 0x7f050001
+int string abc_action_bar_home_subtitle_description_format 0x7f050002
+int string abc_action_bar_up_description 0x7f050003
+int string abc_action_menu_overflow_description 0x7f050004
+int string abc_action_mode_done 0x7f050005
+int string abc_activity_chooser_view_see_all 0x7f050006
+int string abc_activitychooserview_choose_application 0x7f050007
+int string abc_capital_off 0x7f050008
+int string abc_capital_on 0x7f050009
+int string abc_search_hint 0x7f05000a
+int string abc_searchview_description_clear 0x7f05000b
+int string abc_searchview_description_query 0x7f05000c
+int string abc_searchview_description_search 0x7f05000d
+int string abc_searchview_description_submit 0x7f05000e
+int string abc_searchview_description_voice 0x7f05000f
+int string abc_shareactionprovider_share_with 0x7f050010
+int string abc_shareactionprovider_share_with_application 0x7f050011
+int string abc_toolbar_collapse_description 0x7f050012
+int string status_bar_notification_info_overflow 0x7f050013
+int style AlertDialog_AppCompat 0x7f080086
+int style AlertDialog_AppCompat_Light 0x7f080087
+int style Animation_AppCompat_Dialog 0x7f080088
+int style Animation_AppCompat_DropDownUp 0x7f080089
+int style Base_AlertDialog_AppCompat 0x7f08008a
+int style Base_AlertDialog_AppCompat_Light 0x7f08008b
+int style Base_Animation_AppCompat_Dialog 0x7f08008c
+int style Base_Animation_AppCompat_DropDownUp 0x7f08008d
+int style Base_DialogWindowTitle_AppCompat 0x7f08008e
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f08008f
+int style Base_TextAppearance_AppCompat 0x7f080036
+int style Base_TextAppearance_AppCompat_Body1 0x7f080037
+int style Base_TextAppearance_AppCompat_Body2 0x7f080038
+int style Base_TextAppearance_AppCompat_Button 0x7f080020
+int style Base_TextAppearance_AppCompat_Caption 0x7f080039
+int style Base_TextAppearance_AppCompat_Display1 0x7f08003a
+int style Base_TextAppearance_AppCompat_Display2 0x7f08003b
+int style Base_TextAppearance_AppCompat_Display3 0x7f08003c
+int style Base_TextAppearance_AppCompat_Display4 0x7f08003d
+int style Base_TextAppearance_AppCompat_Headline 0x7f08003e
+int style Base_TextAppearance_AppCompat_Inverse 0x7f08000b
+int style Base_TextAppearance_AppCompat_Large 0x7f08003f
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000c
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080040
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080041
+int style Base_TextAppearance_AppCompat_Medium 0x7f080042
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000d
+int style Base_TextAppearance_AppCompat_Menu 0x7f080043
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f080090
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080044
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080045
+int style Base_TextAppearance_AppCompat_Small 0x7f080046
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000e
+int style Base_TextAppearance_AppCompat_Subhead 0x7f080047
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f08000f
+int style Base_TextAppearance_AppCompat_Title 0x7f080048
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080010
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f08007f
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080049
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004c
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004d
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004e
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f08004f
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080080
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080091
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080050
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080051
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080052
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080053
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080092
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080054
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080055
+int style Base_Theme_AppCompat 0x7f080056
+int style Base_Theme_AppCompat_CompactMenu 0x7f080093
+int style Base_Theme_AppCompat_Dialog 0x7f080011
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f080094
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080095
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080096
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
+int style Base_Theme_AppCompat_Light 0x7f080057
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080097
+int style Base_Theme_AppCompat_Light_Dialog 0x7f080012
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f080098
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f080099
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08009a
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
+int style Base_ThemeOverlay_AppCompat 0x7f08009b
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08009c
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f08009d
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f08009e
+int style Base_ThemeOverlay_AppCompat_Light 0x7f08009f
+int style Base_V11_Theme_AppCompat_Dialog 0x7f080013
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080014
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001c
+int style Base_V12_Widget_AppCompat_EditText 0x7f08001d
+int style Base_V21_Theme_AppCompat 0x7f080058
+int style Base_V21_Theme_AppCompat_Dialog 0x7f080059
+int style Base_V21_Theme_AppCompat_Light 0x7f08005a
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005b
+int style Base_V22_Theme_AppCompat 0x7f08007d
+int style Base_V22_Theme_AppCompat_Light 0x7f08007e
+int style Base_V23_Theme_AppCompat 0x7f080081
+int style Base_V23_Theme_AppCompat_Light 0x7f080082
+int style Base_V7_Theme_AppCompat 0x7f0800a0
+int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a1
+int style Base_V7_Theme_AppCompat_Light 0x7f0800a2
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a3
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800a4
+int style Base_V7_Widget_AppCompat_EditText 0x7f0800a5
+int style Base_Widget_AppCompat_ActionBar 0x7f0800a6
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800a7
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800a8
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005c
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005d
+int style Base_Widget_AppCompat_ActionButton 0x7f08005e
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f08005f
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080060
+int style Base_Widget_AppCompat_ActionMode 0x7f0800a9
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800aa
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001e
+int style Base_Widget_AppCompat_Button 0x7f080061
+int style Base_Widget_AppCompat_Button_Borderless 0x7f080062
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080063
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800ab
+int style Base_Widget_AppCompat_Button_Colored 0x7f080083
+int style Base_Widget_AppCompat_Button_Small 0x7f080064
+int style Base_Widget_AppCompat_ButtonBar 0x7f080065
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ac
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080066
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080067
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800ad
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800ae
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080068
+int style Base_Widget_AppCompat_EditText 0x7f08001f
+int style Base_Widget_AppCompat_ImageButton 0x7f080069
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800af
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b0
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b1
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006a
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006b
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006c
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006d
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006e
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f08006f
+int style Base_Widget_AppCompat_ListView 0x7f080070
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f080071
+int style Base_Widget_AppCompat_ListView_Menu 0x7f080072
+int style Base_Widget_AppCompat_PopupMenu 0x7f080073
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080074
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800b2
+int style Base_Widget_AppCompat_ProgressBar 0x7f080015
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080016
+int style Base_Widget_AppCompat_RatingBar 0x7f080075
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080084
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f080085
+int style Base_Widget_AppCompat_SearchView 0x7f0800b3
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800b4
+int style Base_Widget_AppCompat_SeekBar 0x7f080076
+int style Base_Widget_AppCompat_Spinner 0x7f080077
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080003
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080078
+int style Base_Widget_AppCompat_Toolbar 0x7f0800b5
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080079
+int style Platform_AppCompat 0x7f080017
+int style Platform_AppCompat_Light 0x7f080018
+int style Platform_ThemeOverlay_AppCompat 0x7f08007a
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007b
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007c
+int style Platform_V11_AppCompat 0x7f080019
+int style Platform_V11_AppCompat_Light 0x7f08001a
+int style Platform_V14_AppCompat 0x7f080021
+int style Platform_V14_AppCompat_Light 0x7f080022
+int style Platform_Widget_AppCompat_Spinner 0x7f08001b
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080028
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080029
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002c
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002d
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002e
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f08002f
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080030
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080031
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080032
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080033
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080034
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080035
+int style TextAppearance_AppCompat 0x7f0800b6
+int style TextAppearance_AppCompat_Body1 0x7f0800b7
+int style TextAppearance_AppCompat_Body2 0x7f0800b8
+int style TextAppearance_AppCompat_Button 0x7f0800b9
+int style TextAppearance_AppCompat_Caption 0x7f0800ba
+int style TextAppearance_AppCompat_Display1 0x7f0800bb
+int style TextAppearance_AppCompat_Display2 0x7f0800bc
+int style TextAppearance_AppCompat_Display3 0x7f0800bd
+int style TextAppearance_AppCompat_Display4 0x7f0800be
+int style TextAppearance_AppCompat_Headline 0x7f0800bf
+int style TextAppearance_AppCompat_Inverse 0x7f0800c0
+int style TextAppearance_AppCompat_Large 0x7f0800c1
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c2
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c3
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c4
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c5
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c6
+int style TextAppearance_AppCompat_Medium 0x7f0800c7
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800c8
+int style TextAppearance_AppCompat_Menu 0x7f0800c9
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800ca
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800cb
+int style TextAppearance_AppCompat_Small 0x7f0800cc
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800cd
+int style TextAppearance_AppCompat_Subhead 0x7f0800ce
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800cf
+int style TextAppearance_AppCompat_Title 0x7f0800d0
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d1
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d2
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d3
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d4
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d5
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d6
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800d7
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800d8
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800d9
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800da
+int style TextAppearance_AppCompat_Widget_Button 0x7f0800db
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800dc
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800dd
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800de
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800df
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800e0
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e1
+int style TextAppearance_StatusBar_EventContent 0x7f080023
+int style TextAppearance_StatusBar_EventContent_Info 0x7f080024
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f080025
+int style TextAppearance_StatusBar_EventContent_Time 0x7f080026
+int style TextAppearance_StatusBar_EventContent_Title 0x7f080027
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800e2
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800e3
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800e4
+int style Theme_AppCompat 0x7f0800e5
+int style Theme_AppCompat_CompactMenu 0x7f0800e6
+int style Theme_AppCompat_DayNight 0x7f080004
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080005
+int style Theme_AppCompat_DayNight_Dialog 0x7f080006
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080007
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080008
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f080009
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000a
+int style Theme_AppCompat_Dialog 0x7f0800e7
+int style Theme_AppCompat_Dialog_Alert 0x7f0800e8
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800e9
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800ea
+int style Theme_AppCompat_Light 0x7f0800eb
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800ec
+int style Theme_AppCompat_Light_Dialog 0x7f0800ed
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800ee
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800ef
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800f0
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800f1
+int style Theme_AppCompat_NoActionBar 0x7f0800f2
+int style ThemeOverlay_AppCompat 0x7f0800f3
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0800f4
+int style ThemeOverlay_AppCompat_Dark 0x7f0800f5
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800f6
+int style ThemeOverlay_AppCompat_Light 0x7f0800f7
+int style Widget_AppCompat_ActionBar 0x7f0800f8
+int style Widget_AppCompat_ActionBar_Solid 0x7f0800f9
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0800fa
+int style Widget_AppCompat_ActionBar_TabText 0x7f0800fb
+int style Widget_AppCompat_ActionBar_TabView 0x7f0800fc
+int style Widget_AppCompat_ActionButton 0x7f0800fd
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800fe
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0800ff
+int style Widget_AppCompat_ActionMode 0x7f080100
+int style Widget_AppCompat_ActivityChooserView 0x7f080101
+int style Widget_AppCompat_AutoCompleteTextView 0x7f080102
+int style Widget_AppCompat_Button 0x7f080103
+int style Widget_AppCompat_Button_Borderless 0x7f080104
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f080105
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080106
+int style Widget_AppCompat_Button_Colored 0x7f080107
+int style Widget_AppCompat_Button_Small 0x7f080108
+int style Widget_AppCompat_ButtonBar 0x7f080109
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f08010a
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f08010b
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f08010c
+int style Widget_AppCompat_CompoundButton_Switch 0x7f08010d
+int style Widget_AppCompat_DrawerArrowToggle 0x7f08010e
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f08010f
+int style Widget_AppCompat_EditText 0x7f080110
+int style Widget_AppCompat_ImageButton 0x7f080111
+int style Widget_AppCompat_Light_ActionBar 0x7f080112
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080113
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080114
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080115
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080116
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080117
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080118
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080119
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f08011a
+int style Widget_AppCompat_Light_ActionButton 0x7f08011b
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f08011c
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f08011d
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08011e
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f08011f
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080120
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080121
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f080122
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f080123
+int style Widget_AppCompat_Light_PopupMenu 0x7f080124
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080125
+int style Widget_AppCompat_Light_SearchView 0x7f080126
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080127
+int style Widget_AppCompat_ListPopupWindow 0x7f080128
+int style Widget_AppCompat_ListView 0x7f080129
+int style Widget_AppCompat_ListView_DropDown 0x7f08012a
+int style Widget_AppCompat_ListView_Menu 0x7f08012b
+int style Widget_AppCompat_PopupMenu 0x7f08012c
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f08012d
+int style Widget_AppCompat_PopupWindow 0x7f08012e
+int style Widget_AppCompat_ProgressBar 0x7f08012f
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080130
+int style Widget_AppCompat_RatingBar 0x7f080131
+int style Widget_AppCompat_RatingBar_Indicator 0x7f080132
+int style Widget_AppCompat_RatingBar_Small 0x7f080133
+int style Widget_AppCompat_SearchView 0x7f080134
+int style Widget_AppCompat_SearchView_ActionBar 0x7f080135
+int style Widget_AppCompat_SeekBar 0x7f080136
+int style Widget_AppCompat_Spinner 0x7f080137
+int style Widget_AppCompat_Spinner_DropDown 0x7f080138
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080139
+int style Widget_AppCompat_Spinner_Underlined 0x7f08013a
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f08013b
+int style Widget_AppCompat_Toolbar 0x7f08013c
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08013d
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010054 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatImageView { 0x01010119, 0x7f010024 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010025 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093 }
+int styleable AppCompatTheme_actionBarDivider 23
+int styleable AppCompatTheme_actionBarItemBackground 24
+int styleable AppCompatTheme_actionBarPopupTheme 17
+int styleable AppCompatTheme_actionBarSize 22
+int styleable AppCompatTheme_actionBarSplitStyle 19
+int styleable AppCompatTheme_actionBarStyle 18
+int styleable AppCompatTheme_actionBarTabBarStyle 13
+int styleable AppCompatTheme_actionBarTabStyle 12
+int styleable AppCompatTheme_actionBarTabTextStyle 14
+int styleable AppCompatTheme_actionBarTheme 20
+int styleable AppCompatTheme_actionBarWidgetTheme 21
+int styleable AppCompatTheme_actionButtonStyle 49
+int styleable AppCompatTheme_actionDropDownStyle 45
+int styleable AppCompatTheme_actionMenuTextAppearance 25
+int styleable AppCompatTheme_actionMenuTextColor 26
+int styleable AppCompatTheme_actionModeBackground 29
+int styleable AppCompatTheme_actionModeCloseButtonStyle 28
+int styleable AppCompatTheme_actionModeCloseDrawable 31
+int styleable AppCompatTheme_actionModeCopyDrawable 33
+int styleable AppCompatTheme_actionModeCutDrawable 32
+int styleable AppCompatTheme_actionModeFindDrawable 37
+int styleable AppCompatTheme_actionModePasteDrawable 34
+int styleable AppCompatTheme_actionModePopupWindowStyle 39
+int styleable AppCompatTheme_actionModeSelectAllDrawable 35
+int styleable AppCompatTheme_actionModeShareDrawable 36
+int styleable AppCompatTheme_actionModeSplitBackground 30
+int styleable AppCompatTheme_actionModeStyle 27
+int styleable AppCompatTheme_actionModeWebSearchDrawable 38
+int styleable AppCompatTheme_actionOverflowButtonStyle 15
+int styleable AppCompatTheme_actionOverflowMenuStyle 16
+int styleable AppCompatTheme_activityChooserViewStyle 57
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
+int styleable AppCompatTheme_alertDialogCenterButtons 93
+int styleable AppCompatTheme_alertDialogStyle 91
+int styleable AppCompatTheme_alertDialogTheme 94
+int styleable AppCompatTheme_android_windowAnimationStyle 1
+int styleable AppCompatTheme_android_windowIsFloating 0
+int styleable AppCompatTheme_autoCompleteTextViewStyle 99
+int styleable AppCompatTheme_borderlessButtonStyle 54
+int styleable AppCompatTheme_buttonBarButtonStyle 51
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
+int styleable AppCompatTheme_buttonBarStyle 50
+int styleable AppCompatTheme_buttonStyle 100
+int styleable AppCompatTheme_buttonStyleSmall 101
+int styleable AppCompatTheme_checkboxStyle 102
+int styleable AppCompatTheme_checkedTextViewStyle 103
+int styleable AppCompatTheme_colorAccent 84
+int styleable AppCompatTheme_colorButtonNormal 88
+int styleable AppCompatTheme_colorControlActivated 86
+int styleable AppCompatTheme_colorControlHighlight 87
+int styleable AppCompatTheme_colorControlNormal 85
+int styleable AppCompatTheme_colorPrimary 82
+int styleable AppCompatTheme_colorPrimaryDark 83
+int styleable AppCompatTheme_colorSwitchThumbNormal 89
+int styleable AppCompatTheme_controlBackground 90
+int styleable AppCompatTheme_dialogPreferredPadding 43
+int styleable AppCompatTheme_dialogTheme 42
+int styleable AppCompatTheme_dividerHorizontal 56
+int styleable AppCompatTheme_dividerVertical 55
+int styleable AppCompatTheme_dropDownListViewStyle 74
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
+int styleable AppCompatTheme_editTextBackground 63
+int styleable AppCompatTheme_editTextColor 62
+int styleable AppCompatTheme_editTextStyle 104
+int styleable AppCompatTheme_homeAsUpIndicator 48
+int styleable AppCompatTheme_imageButtonStyle 64
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
+int styleable AppCompatTheme_listDividerAlertDialog 44
+int styleable AppCompatTheme_listPopupWindowStyle 75
+int styleable AppCompatTheme_listPreferredItemHeight 69
+int styleable AppCompatTheme_listPreferredItemHeightLarge 71
+int styleable AppCompatTheme_listPreferredItemHeightSmall 70
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
+int styleable AppCompatTheme_listPreferredItemPaddingRight 73
+int styleable AppCompatTheme_panelBackground 78
+int styleable AppCompatTheme_panelMenuListTheme 80
+int styleable AppCompatTheme_panelMenuListWidth 79
+int styleable AppCompatTheme_popupMenuStyle 60
+int styleable AppCompatTheme_popupWindowStyle 61
+int styleable AppCompatTheme_radioButtonStyle 105
+int styleable AppCompatTheme_ratingBarStyle 106
+int styleable AppCompatTheme_ratingBarStyleIndicator 107
+int styleable AppCompatTheme_ratingBarStyleSmall 108
+int styleable AppCompatTheme_searchViewStyle 68
+int styleable AppCompatTheme_seekBarStyle 109
+int styleable AppCompatTheme_selectableItemBackground 52
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
+int styleable AppCompatTheme_spinnerDropDownItemStyle 47
+int styleable AppCompatTheme_spinnerStyle 110
+int styleable AppCompatTheme_switchStyle 111
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
+int styleable AppCompatTheme_textAppearanceListItem 76
+int styleable AppCompatTheme_textAppearanceListItemSmall 77
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
+int styleable AppCompatTheme_textColorAlertDialogListItem 95
+int styleable AppCompatTheme_textColorSearchUrl 67
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
+int styleable AppCompatTheme_toolbarStyle 58
+int styleable AppCompatTheme_windowActionBar 2
+int styleable AppCompatTheme_windowActionBarOverlay 4
+int styleable AppCompatTheme_windowActionModeOverlay 5
+int styleable AppCompatTheme_windowFixedHeightMajor 9
+int styleable AppCompatTheme_windowFixedHeightMinor 7
+int styleable AppCompatTheme_windowFixedWidthMajor 6
+int styleable AppCompatTheme_windowFixedWidthMinor 8
+int styleable AppCompatTheme_windowMinWidthMajor 10
+int styleable AppCompatTheme_windowMinWidthMinor 11
+int styleable AppCompatTheme_windowNoTitle 3
+int[] styleable ButtonBarLayout { 0x7f010094 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CompoundButton { 0x01010107, 0x7f010095, 0x7f010096 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01009f, 0x7f0100a0, 0x7f0100a1 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100a6 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f0100a7 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f0100a8 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 3
+int styleable Spinner_android_entries 0
+int styleable Spinner_android_popupBackground 1
+int styleable Spinner_android_prompt 2
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010025 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100cf, 0x7f0100d0 }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..e15f76a09
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip
new file mode 100644
index 000000000..1e5483a01
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..e918f7062
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt
new file mode 100644
index 000000000..7a8152f7a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt
@@ -0,0 +1,321 @@
+style TextAppearance.AppCompat
+style TextAppearance.AppCompat.Body1
+style TextAppearance.AppCompat.Body2
+style TextAppearance.AppCompat.Button
+style TextAppearance.AppCompat.Caption
+style TextAppearance.AppCompat.Display1
+style TextAppearance.AppCompat.Display2
+style TextAppearance.AppCompat.Display3
+style TextAppearance.AppCompat.Display4
+style TextAppearance.AppCompat.Headline
+style TextAppearance.AppCompat.Inverse
+style TextAppearance.AppCompat.Large
+style TextAppearance.AppCompat.Large.Inverse
+style TextAppearance.AppCompat.Light.SearchResult.Subtitle
+style TextAppearance.AppCompat.Light.SearchResult.Title
+style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
+style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
+style TextAppearance.AppCompat.Medium
+style TextAppearance.AppCompat.Medium.Inverse
+style TextAppearance.AppCompat.Menu
+style TextAppearance.AppCompat.SearchResult.Subtitle
+style TextAppearance.AppCompat.SearchResult.Title
+style TextAppearance.AppCompat.Small
+style TextAppearance.AppCompat.Small.Inverse
+style TextAppearance.AppCompat.Subhead
+style TextAppearance.AppCompat.Subhead.Inverse
+style TextAppearance.AppCompat.Title
+style TextAppearance.AppCompat.Title.Inverse
+style TextAppearance.AppCompat.Widget.ActionBar.Menu
+style TextAppearance.AppCompat.Widget.ActionBar.Subtitle
+style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse
+style TextAppearance.AppCompat.Widget.ActionBar.Title
+style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse
+style TextAppearance.AppCompat.Widget.ActionMode.Subtitle
+style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse
+style TextAppearance.AppCompat.Widget.ActionMode.Title
+style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse
+style TextAppearance.AppCompat.Widget.Button
+style TextAppearance.AppCompat.Widget.Button.Inverse
+style TextAppearance.AppCompat.Widget.DropDownItem
+style TextAppearance.AppCompat.Widget.PopupMenu.Large
+style TextAppearance.AppCompat.Widget.PopupMenu.Small
+style TextAppearance.AppCompat.Widget.Switch
+style TextAppearance.AppCompat.Widget.TextView.SpinnerItem
+style Theme.AppCompat
+style Theme.AppCompat.DayNight
+style Theme.AppCompat.DayNight.DarkActionBar
+style Theme.AppCompat.DayNight.Dialog
+style Theme.AppCompat.DayNight.Dialog.Alert
+style Theme.AppCompat.DayNight.Dialog.MinWidth
+style Theme.AppCompat.DayNight.DialogWhenLarge
+style Theme.AppCompat.DayNight.NoActionBar
+style Theme.AppCompat.Dialog
+style Theme.AppCompat.Dialog.Alert
+style Theme.AppCompat.Dialog.MinWidth
+style Theme.AppCompat.DialogWhenLarge
+style Theme.AppCompat.Light
+style Theme.AppCompat.Light.DarkActionBar
+style Theme.AppCompat.Light.Dialog
+style Theme.AppCompat.Light.Dialog.Alert
+style Theme.AppCompat.Light.Dialog.MinWidth
+style Theme.AppCompat.Light.DialogWhenLarge
+style Theme.AppCompat.Light.NoActionBar
+style Theme.AppCompat.NoActionBar
+style ThemeOverlay.AppCompat
+style ThemeOverlay.AppCompat.ActionBar
+style ThemeOverlay.AppCompat.Dark
+style ThemeOverlay.AppCompat.Dark.ActionBar
+style ThemeOverlay.AppCompat.Light
+style Widget.AppCompat.ActionBar
+style Widget.AppCompat.ActionBar.Solid
+style Widget.AppCompat.ActionBar.TabBar
+style Widget.AppCompat.ActionBar.TabText
+style Widget.AppCompat.ActionBar.TabView
+style Widget.AppCompat.ActionButton
+style Widget.AppCompat.ActionButton.CloseMode
+style Widget.AppCompat.ActionButton.Overflow
+style Widget.AppCompat.ActionMode
+style Widget.AppCompat.AutoCompleteTextView
+style Widget.AppCompat.Button
+style Widget.AppCompat.Button.Borderless
+style Widget.AppCompat.Button.Borderless.Colored
+style Widget.AppCompat.Button.ButtonBar.AlertDialog
+style Widget.AppCompat.Button.Colored
+style Widget.AppCompat.Button.Small
+style Widget.AppCompat.ButtonBar
+style Widget.AppCompat.ButtonBar.AlertDialog
+style Widget.AppCompat.CompoundButton.CheckBox
+style Widget.AppCompat.CompoundButton.RadioButton
+style Widget.AppCompat.CompoundButton.Switch
+style Widget.AppCompat.DrawerArrowToggle
+style Widget.AppCompat.DropDownItem.Spinner
+style Widget.AppCompat.EditText
+style Widget.AppCompat.ImageButton
+style Widget.AppCompat.Light.ActionBar
+style Widget.AppCompat.Light.ActionBar.Solid
+style Widget.AppCompat.Light.ActionBar.Solid.Inverse
+style Widget.AppCompat.Light.ActionBar.TabBar
+style Widget.AppCompat.Light.ActionBar.TabBar.Inverse
+style Widget.AppCompat.Light.ActionBar.TabText
+style Widget.AppCompat.Light.ActionBar.TabText.Inverse
+style Widget.AppCompat.Light.ActionBar.TabView
+style Widget.AppCompat.Light.ActionBar.TabView.Inverse
+style Widget.AppCompat.Light.ActionButton
+style Widget.AppCompat.Light.ActionButton.CloseMode
+style Widget.AppCompat.Light.ActionButton.Overflow
+style Widget.AppCompat.Light.ActionMode.Inverse
+style Widget.AppCompat.Light.AutoCompleteTextView
+style Widget.AppCompat.Light.DropDownItem.Spinner
+style Widget.AppCompat.Light.ListPopupWindow
+style Widget.AppCompat.Light.ListView.DropDown
+style Widget.AppCompat.Light.PopupMenu
+style Widget.AppCompat.Light.PopupMenu.Overflow
+style Widget.AppCompat.Light.SearchView
+style Widget.AppCompat.Light.Spinner.DropDown.ActionBar
+style Widget.AppCompat.ListPopupWindow
+style Widget.AppCompat.ListView
+style Widget.AppCompat.ListView.DropDown
+style Widget.AppCompat.ListView.Menu
+style Widget.AppCompat.PopupMenu
+style Widget.AppCompat.PopupMenu.Overflow
+style Widget.AppCompat.PopupWindow
+style Widget.AppCompat.ProgressBar
+style Widget.AppCompat.ProgressBar.Horizontal
+style Widget.AppCompat.RatingBar
+style Widget.AppCompat.RatingBar.Indicator
+style Widget.AppCompat.RatingBar.Small
+style Widget.AppCompat.SearchView
+style Widget.AppCompat.SearchView.ActionBar
+style Widget.AppCompat.SeekBar
+style Widget.AppCompat.Spinner
+style Widget.AppCompat.Spinner.DropDown
+style Widget.AppCompat.Spinner.DropDown.ActionBar
+style Widget.AppCompat.Spinner.Underlined
+style Widget.AppCompat.TextView.SpinnerItem
+style Widget.AppCompat.Toolbar
+style Widget.AppCompat.Toolbar.Button.Navigation
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr alertDialogStyle
+attr alertDialogTheme
+attr arrowHeadLength
+attr arrowShaftLength
+attr autoCompleteTextViewStyle
+attr background
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barLength
+attr borderlessButtonStyle
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr checkboxStyle
+attr checkedTextViewStyle
+attr closeIcon
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr color
+attr colorAccent
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentInsetEnd
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr customNavigationLayout
+attr dialogPreferredPadding
+attr dialogTheme
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr gapBetweenBars
+attr goIcon
+attr height
+attr hideOnContentScroll
+attr homeAsUpIndicator
+attr homeLayout
+attr icon
+attr iconifiedByDefault
+attr imageButtonStyle
+attr indeterminateProgressStyle
+attr isLightTheme
+attr itemPadding
+attr layout
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr logoDescription
+attr measureWithLargestChild
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr overlapAnchor
+attr paddingEnd
+attr paddingStart
+attr panelBackground
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr ratingBarStyleIndicator
+attr ratingBarStyleSmall
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr seekBarStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showText
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitTrack
+attr srcCompat
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suggestionRowLayout
+layout support_simple_spinner_dropdown_item
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr textAllCaps
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSmall
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textColorAlertDialogListItem
+attr theme
+attr thickness
+attr thumbTextPadding
+attr title
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextStyle
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr track
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowNoTitle
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml
new file mode 100644
index 000000000..da7ee295c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml
new file mode 100644
index 000000000..c81b39a9b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 000000000..79d02d44c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml
new file mode 100644
index 000000000..91664da17
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml
new file mode 100644
index 000000000..db7e8073a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 000000000..9a23cd202
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml
new file mode 100644
index 000000000..1afa8febc
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml
new file mode 100644
index 000000000..ab824f2e4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml
new file mode 100644
index 000000000..b309fe89c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml
new file mode 100644
index 000000000..e84d1c7fb
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 000000000..e0160766e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 000000000..290faf1a0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 000000000..8d5361189
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 000000000..9a7af53d4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 000000000..aa53f3577
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 000000000..724c2557d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 000000000..7395e680c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml
new file mode 100644
index 000000000..7d66d02d6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml
new file mode 100644
index 000000000..105b643dd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml
new file mode 100644
index 000000000..0631d5d4c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 000000000..6399b1d02
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml
new file mode 100644
index 000000000..87c015a4c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml
new file mode 100644
index 000000000..6153382c7
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml
new file mode 100644
index 000000000..94d711482
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d9f861f8
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..99110085f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..69ff9dde3
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..9218981b4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..a58857635
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..1b12adf09
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..30c8c997e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..4657a25ff
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3fd617bf9
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..226439823
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..46ccacc5a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..ce6433457
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..65ccd8f41
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..f39c1534f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..706fc1fa3
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..e78bcaf57
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..00e189b85
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..8610c5015
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..e631df7f6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..cd1f57c5b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..cc6d5da86
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..a728afe60
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..64b2aa7f2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..cf270fe1b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..49ad6cd74
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a6dbc2a88
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..c09ec90e0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..62fbd2cb5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..2f6ef9160
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..863ce95f6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..b6d467774
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..e01c7392a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..d077a25cb
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..9d8451aab
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..208def6c1
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..c9c203e5d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..253e906fa
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..ffb0096fd
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..e54950e9d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..0da5b1d1e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..54df9613c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..4b0b10a7a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..5b13bc17a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..5440b1a4d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..a74ab260c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..6282df4e6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..57211b528
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..a262b0c87
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..d8eaf0761
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ddbec8b18
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..b872414ba
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..254f80615
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..efe4446d6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..c888ee057
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..ffa165417
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..88e34c4a0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..87bf8d36b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..09dadcc6f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..33b4f0fe7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb542158a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..3cdb6cf5c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..a58daf654
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..a91425a7e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb91811b7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..90fe333ac
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..6ccac6004
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..fa0ed8fe9
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..7a9fcbcbf
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..3b052e577
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..96a86931c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..6e18d40d7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..27a75a7fa
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..14e9e098a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..d0a41a51e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..bebb1e211
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..038e00086
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..90fbc56bb
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..dde307e41
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..6086f9c38
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0084c1204
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..559b83539
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..1c0a1e99d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..234a95893
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1492ab62a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..7c011af4c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..36f664cca
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..faefc59c8
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..3f5d25e01
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..2ddcdd985
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..077f9b05d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..ac6ad111b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a216da173
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..addb54a22
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..5fcd5b207
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..251b98913
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..01efec045
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..f1d1b6170
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..10851f6c8
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..3924664fc
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..5f55cd553
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..ddd6d0ab5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..9280f8296
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..f60817c60
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..88781298a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..869c8b088
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ed75cb812
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..ab8460f58
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..12b0a79c5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..3ffa25193
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..0eb61f152
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..0c766f30d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4f66d7adc
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 000000000..595c56c6a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 000000000..10251aadc
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml
new file mode 100644
index 000000000..d98b0085b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 000000000..0b540390a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..6284eaaa1
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..49025208b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..59a683ab6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..03bf49cc5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..342323b4b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..05e6afeca
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..7116604a5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..4feb8a3dc
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..2bf92083c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..600178a98
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..154babda6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..6d90d0ce7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..ca303fd6e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..19e000ac7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..64485495f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..cd38901c4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..e76c83e0b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..9aabc43ce
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..6a7161f2f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..6be7e097c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..4510e52e6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..35fe96563
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..45887c13d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..ea6033adb
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..2f4818b29
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7329c15b5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..67c25aeff
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..17c34a1a9
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..988548a10
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..15fcf6a32
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..65275b38c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..5b58e7605
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..99cf6de8b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..b5dd854b2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..1627f211a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..0486af199
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..0b15d9611
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..fb4e42aaa
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..44b9a147b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..bcf6b7f05
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..7c56175a1
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..2242d2f94
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..8ff3a8304
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..e7e693a7b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..819171ad6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4def8c8fa
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4eae28fde
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..accf80e4a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..8c82ec3d7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..8fc0a9b87
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..3038d70fc
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..37b858316
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..4a3bd1438
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..c079867b3
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3b9dc7c11
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..f6d2f3294
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..f99802f01
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..b85e87f04
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7d9dfa4db
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d04162373
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..90d6ba3c6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..63e541f4b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..c382aa61e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..f71485c2d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..162ab9847
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..d95a3774a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0ada3a39f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..e5509b034
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..72685abe7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..8e985b46d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..19bbc1202
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..dacf4072c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..987b2bc25
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..8b050e855
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..00e370a1a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..719c7b5eb
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..75bd5803f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..4f3b147a6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..224a08157
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..b5ceeac06
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..4727a7d6c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..eb6e91b0a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..dd0031cf5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..9955cdfe8
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..3d9b96107
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..56a69df15
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..24938586e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..d2fc99a4d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..eeb74c869
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d3d3a4d0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..c5acb84f0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..30328ae1d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..bc21142c1
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..d44bbae5e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..4e18de21a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..5fa326654
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..c11cb2ec6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..8043c0bd4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..355d5b775
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..41d6d6bb4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..da2b57715
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..715db8adf
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..397fd91c6
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..bb074a65f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1891b3d06
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..591a1c918
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..ba16aac56
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..5430b2cd4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..cc8109732
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..dc312c14a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..1c7f66eaa
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..82e729387
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d1916422b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..7dfaf7cf3
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..fe8f2e40e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..761e8de7c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..5651d24b5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..929be19b0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 000000000..f3894600b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml
new file mode 100644
index 000000000..f6e938fe4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml
new file mode 100644
index 000000000..ec93b8b6b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 000000000..c50d4b10f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml
new file mode 100644
index 000000000..6e9f9cf37
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 000000000..9faf60ac6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 000000000..f20add7e4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 000000000..41c4a6f84
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 000000000..248b13af9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml
new file mode 100644
index 000000000..46c4e9120
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 000000000..72162c222
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 000000000..1c180b2ee
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 000000000..0add58c86
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 000000000..0c1d3e678
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 000000000..1fb5fc451
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 000000000..8d2404722
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 000000000..535e2da25
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml
new file mode 100644
index 000000000..207991c2e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml
new file mode 100644
index 000000000..6daff8bcc
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml
new file mode 100644
index 000000000..7fea83bc8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml
new file mode 100644
index 000000000..e68ac03e9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 000000000..d0f46a809
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 000000000..ee96ec2e7
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 000000000..1a8de1b69
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml
new file mode 100644
index 000000000..885670c99
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml
new file mode 100644
index 000000000..08873966e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml
new file mode 100644
index 000000000..194afb74c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml
new file mode 100644
index 000000000..f46550a55
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 000000000..5c105ab55
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 000000000..283358a5d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,30 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml
new file mode 100644
index 000000000..4918d2fba
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml
new file mode 100644
index 000000000..dc1f1ba23
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 000000000..2944d9838
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml
new file mode 100644
index 000000000..0100c235a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 000000000..887427d80
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml
new file mode 100644
index 000000000..d32ad1091
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml
new file mode 100644
index 000000000..323753398
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml
new file mode 100644
index 000000000..1ea20c5e1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 000000000..560ada6fb
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 000000000..d9c3f0681
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 000000000..acd005a13
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 000000000..c85469dd6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 000000000..0ca8d7a2a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 000000000..47125fe4e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml
new file mode 100644
index 000000000..1c30338f9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml
new file mode 100644
index 000000000..2783187d0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 000000000..c02c2aa9c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml
new file mode 100644
index 000000000..96412c15b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 000000000..b81d5d8ca
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml
new file mode 100644
index 000000000..a7446e364
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml
new file mode 100644
index 000000000..12bcbf1f3
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml
new file mode 100644
index 000000000..d54679292
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml
new file mode 100644
index 000000000..e9b5fb078
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml
@@ -0,0 +1,29 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml
new file mode 100644
index 000000000..2e40b6939
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 000000000..cf6406154
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml
new file mode 100644
index 000000000..42ba776e6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml
new file mode 100644
index 000000000..90daa8852
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml
new file mode 100644
index 000000000..6f5f3ac50
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml
new file mode 100644
index 000000000..72d216e77
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml
new file mode 100644
index 000000000..677b178d6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 000000000..60f3576a8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 000000000..4d10fc720
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 000000000..d2f177ac8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml
new file mode 100644
index 000000000..8143ae04e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml
new file mode 100644
index 000000000..b81f93f78
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml
new file mode 100644
index 000000000..ef26d8550
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 000000000..15769e10c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml
new file mode 100644
index 000000000..05f19e4a8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 000000000..db63cf3e9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "বন্ধ"
+ "চালু"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml
new file mode 100644
index 000000000..0aa3366e5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml
new file mode 100644
index 000000000..9eb7ef4f4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml
@@ -0,0 +1,23 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml
new file mode 100644
index 000000000..e44f5830b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml
@@ -0,0 +1,23 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml
new file mode 100644
index 000000000..f834cec67
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml
@@ -0,0 +1,23 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml
new file mode 100644
index 000000000..403b9c4b6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml
@@ -0,0 +1,23 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..843ce164b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml
new file mode 100644
index 000000000..fd8b2ea65
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "NO"
+ "SÍ"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 000000000..fa9bc45ec
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 000000000..66d5f977d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml
new file mode 100644
index 000000000..87ade66dd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml
new file mode 100644
index 000000000..4c43f00d7
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml
@@ -0,0 +1,23 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..a47b18eba
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml
new file mode 100644
index 000000000..193843431
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 000000000..1ca55a9a8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 000000000..ed6f52ca4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml
new file mode 100644
index 000000000..2a6b31c51
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml
new file mode 100644
index 000000000..630e22c1f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml
new file mode 100644
index 000000000..496e87dec
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml
new file mode 100644
index 000000000..4d629bfc0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml
@@ -0,0 +1,23 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 000000000..302b221d7
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml
new file mode 100644
index 000000000..1aa14c56e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 000000000..51ffbca07
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml
new file mode 100644
index 000000000..8aed79878
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml
@@ -0,0 +1,23 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml
new file mode 100644
index 000000000..d73f472cf
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml
new file mode 100644
index 000000000..438ab1380
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml
@@ -0,0 +1,23 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 000000000..a76c00f3d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 000000000..f95ae29bf
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 000000000..c3fee7678
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 000000000..cb0acab12
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml
new file mode 100644
index 000000000..be422093d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml
@@ -0,0 +1,23 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 000000000..0b8150f04
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml
new file mode 100644
index 000000000..c0686a4ea
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml
@@ -0,0 +1,9 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..7c97842e6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ true
+ true
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+ 192dip
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 000000000..12501615e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml
new file mode 100644
index 000000000..17a7c53c5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTI"
+ "ĮJUNGTI"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml
new file mode 100644
index 000000000..df0fd7357
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 000000000..09742b98b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 000000000..49ecfc886
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 000000000..997e79bc0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 000000000..7c3fe3632
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 000000000..5a84cf4b9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 000000000..c05fc1857
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml
new file mode 100644
index 000000000..e0c42887f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml
@@ -0,0 +1,23 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 000000000..a134235a5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml
new file mode 100644
index 000000000..1c70697e4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 000000000..c768d547a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml
new file mode 100644
index 000000000..7a51803de
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml
@@ -0,0 +1,23 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..93fcac3f1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml
new file mode 100644
index 000000000..d7b33800f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAȚI"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ "˃999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml
new file mode 100644
index 000000000..b09e75945
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 000000000..38729f97a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml
new file mode 100644
index 000000000..a0e5aa0da
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYP."
+ "ZAP."
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml
new file mode 100644
index 000000000..19eb9b77d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 000000000..38cfb1a9d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml
new file mode 100644
index 000000000..c674e1fe2
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml
new file mode 100644
index 000000000..05aae9d3b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml
@@ -0,0 +1,23 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml
new file mode 100644
index 000000000..b80b09a00
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..c77705918
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,11 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 000000000..0b33d7c69
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "முடக்கு"
+ "இயக்கு"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 000000000..e0f4a9e2e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml
new file mode 100644
index 000000000..cfd81edf1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml
@@ -0,0 +1,23 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml
new file mode 100644
index 000000000..870d8ce82
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml
new file mode 100644
index 000000000..f74ffb200
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml
@@ -0,0 +1,23 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml
new file mode 100644
index 000000000..409e11bdd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 000000000..0d597a067
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 000000000..22c32f98d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml
new file mode 100644
index 000000000..d074ce996
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml
new file mode 100644
index 000000000..85e241664
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml
new file mode 100644
index 000000000..74d14088e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml
new file mode 100644
index 000000000..7239a2c83
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml
new file mode 100644
index 000000000..f9f23d137
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml
new file mode 100644
index 000000000..5eedefd68
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml
@@ -0,0 +1,243 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml
new file mode 100644
index 000000000..7a225c9cc
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml
new file mode 100644
index 000000000..d02406bd5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml
@@ -0,0 +1,23 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 000000000..fd9dac9ba
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 000000000..5b7dcf655
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 000000000..dcd19ee3b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 000000000..4c058c26f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 000000000..966aafb2b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 000000000..98b3f8c26
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..3dcad8bdd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,12 @@
+
+
+ false
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..615989327
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,23 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..74717bd98
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,23 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ "999 +"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..2cbb3add0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,23 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml
new file mode 100644
index 000000000..d17fcf1da
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml
new file mode 100644
index 000000000..77e151994
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml
@@ -0,0 +1,1511 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 0.30
+ 0.26
+ 0.26
+ 0.20
+ 0.12
+ 64dp
+ 64dp
+ 12dp
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 127
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..6c078ef88
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt
new file mode 100644
index 000000000..2d8b3e1e8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt
@@ -0,0 +1,1558 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int anim design_bottom_sheet_slide_in 0x7f04000a
+int anim design_bottom_sheet_slide_out 0x7f04000b
+int anim design_fab_in 0x7f04000c
+int anim design_fab_out 0x7f04000d
+int anim design_snackbar_in 0x7f04000e
+int anim design_snackbar_out 0x7f04000f
+int attr actionBarDivider 0x7f01003e
+int attr actionBarItemBackground 0x7f01003f
+int attr actionBarPopupTheme 0x7f010038
+int attr actionBarSize 0x7f01003d
+int attr actionBarSplitStyle 0x7f01003a
+int attr actionBarStyle 0x7f010039
+int attr actionBarTabBarStyle 0x7f010034
+int attr actionBarTabStyle 0x7f010033
+int attr actionBarTabTextStyle 0x7f010035
+int attr actionBarTheme 0x7f01003b
+int attr actionBarWidgetTheme 0x7f01003c
+int attr actionButtonStyle 0x7f010058
+int attr actionDropDownStyle 0x7f010054
+int attr actionLayout 0x7f0100c6
+int attr actionMenuTextAppearance 0x7f010040
+int attr actionMenuTextColor 0x7f010041
+int attr actionModeBackground 0x7f010044
+int attr actionModeCloseButtonStyle 0x7f010043
+int attr actionModeCloseDrawable 0x7f010046
+int attr actionModeCopyDrawable 0x7f010048
+int attr actionModeCutDrawable 0x7f010047
+int attr actionModeFindDrawable 0x7f01004c
+int attr actionModePasteDrawable 0x7f010049
+int attr actionModePopupWindowStyle 0x7f01004e
+int attr actionModeSelectAllDrawable 0x7f01004a
+int attr actionModeShareDrawable 0x7f01004b
+int attr actionModeSplitBackground 0x7f010045
+int attr actionModeStyle 0x7f010042
+int attr actionModeWebSearchDrawable 0x7f01004d
+int attr actionOverflowButtonStyle 0x7f010036
+int attr actionOverflowMenuStyle 0x7f010037
+int attr actionProviderClass 0x7f0100c8
+int attr actionViewClass 0x7f0100c7
+int attr activityChooserViewStyle 0x7f010060
+int attr alertDialogButtonGroupStyle 0x7f010083
+int attr alertDialogCenterButtons 0x7f010084
+int attr alertDialogStyle 0x7f010082
+int attr alertDialogTheme 0x7f010085
+int attr allowStacking 0x7f010099
+int attr arrowHeadLength 0x7f0100b8
+int attr arrowShaftLength 0x7f0100b9
+int attr autoCompleteTextViewStyle 0x7f01008a
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f010118
+int attr backgroundTintMode 0x7f010119
+int attr barLength 0x7f0100ba
+int attr behavior_hideable 0x7f010098
+int attr behavior_overlapTop 0x7f0100d7
+int attr behavior_peekHeight 0x7f010097
+int attr borderWidth 0x7f0100bf
+int attr borderlessButtonStyle 0x7f01005d
+int attr bottomSheetDialogTheme 0x7f0100b1
+int attr bottomSheetStyle 0x7f0100b2
+int attr buttonBarButtonStyle 0x7f01005a
+int attr buttonBarNegativeButtonStyle 0x7f010088
+int attr buttonBarNeutralButtonStyle 0x7f010089
+int attr buttonBarPositiveButtonStyle 0x7f010087
+int attr buttonBarStyle 0x7f010059
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f01008b
+int attr buttonStyleSmall 0x7f01008c
+int attr buttonTint 0x7f0100a9
+int attr buttonTintMode 0x7f0100aa
+int attr checkboxStyle 0x7f01008d
+int attr checkedTextViewStyle 0x7f01008e
+int attr closeIcon 0x7f0100dc
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f01010f
+int attr collapseIcon 0x7f01010e
+int attr collapsedTitleGravity 0x7f0100a6
+int attr collapsedTitleTextAppearance 0x7f0100a2
+int attr color 0x7f0100b4
+int attr colorAccent 0x7f01007b
+int attr colorButtonNormal 0x7f01007f
+int attr colorControlActivated 0x7f01007d
+int attr colorControlHighlight 0x7f01007e
+int attr colorControlNormal 0x7f01007c
+int attr colorPrimary 0x7f010079
+int attr colorPrimaryDark 0x7f01007a
+int attr colorSwitchThumbNormal 0x7f010080
+int attr commitIcon 0x7f0100e1
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr contentScrim 0x7f0100a3
+int attr controlBackground 0x7f010081
+int attr counterEnabled 0x7f010101
+int attr counterMaxLength 0x7f010102
+int attr counterOverflowTextAppearance 0x7f010104
+int attr counterTextAppearance 0x7f010103
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f0100db
+int attr dialogPreferredPadding 0x7f010052
+int attr dialogTheme 0x7f010051
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01005f
+int attr dividerPadding 0x7f0100c4
+int attr dividerVertical 0x7f01005e
+int attr drawableSize 0x7f0100b6
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010071
+int attr dropdownListPreferredItemHeight 0x7f010055
+int attr editTextBackground 0x7f010066
+int attr editTextColor 0x7f010065
+int attr editTextStyle 0x7f01008f
+int attr elevation 0x7f01001a
+int attr errorEnabled 0x7f0100ff
+int attr errorTextAppearance 0x7f010100
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr expanded 0x7f010024
+int attr expandedTitleGravity 0x7f0100a7
+int attr expandedTitleMargin 0x7f01009c
+int attr expandedTitleMarginBottom 0x7f0100a0
+int attr expandedTitleMarginEnd 0x7f01009f
+int attr expandedTitleMarginStart 0x7f01009d
+int attr expandedTitleMarginTop 0x7f01009e
+int attr expandedTitleTextAppearance 0x7f0100a1
+int attr fabSize 0x7f0100bd
+int attr foregroundInsidePadding 0x7f0100c1
+int attr gapBetweenBars 0x7f0100b7
+int attr goIcon 0x7f0100dd
+int attr headerLayout 0x7f0100cf
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr hintAnimationEnabled 0x7f010105
+int attr hintEnabled 0x7f0100fe
+int attr hintTextAppearance 0x7f0100fd
+int attr homeAsUpIndicator 0x7f010057
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f0100d9
+int attr imageButtonStyle 0x7f010067
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr insetForeground 0x7f0100d6
+int attr isLightTheme 0x7f010002
+int attr itemBackground 0x7f0100cd
+int attr itemIconTint 0x7f0100cb
+int attr itemPadding 0x7f010014
+int attr itemTextAppearance 0x7f0100ce
+int attr itemTextColor 0x7f0100cc
+int attr keylines 0x7f0100ab
+int attr layout 0x7f0100d8
+int attr layoutManager 0x7f0100d2
+int attr layout_anchor 0x7f0100ae
+int attr layout_anchorGravity 0x7f0100b0
+int attr layout_behavior 0x7f0100ad
+int attr layout_collapseMode 0x7f01009a
+int attr layout_collapseParallaxMultiplier 0x7f01009b
+int attr layout_keyline 0x7f0100af
+int attr layout_scrollFlags 0x7f010025
+int attr layout_scrollInterpolator 0x7f010026
+int attr listChoiceBackgroundIndicator 0x7f010078
+int attr listDividerAlertDialog 0x7f010053
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010072
+int attr listPreferredItemHeight 0x7f01006c
+int attr listPreferredItemHeightLarge 0x7f01006e
+int attr listPreferredItemHeightSmall 0x7f01006d
+int attr listPreferredItemPaddingLeft 0x7f01006f
+int attr listPreferredItemPaddingRight 0x7f010070
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f010112
+int attr maxActionInlineWidth 0x7f0100e5
+int attr maxButtonHeight 0x7f01010d
+int attr measureWithLargestChild 0x7f0100c2
+int attr menu 0x7f0100ca
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f010111
+int attr navigationIcon 0x7f010110
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f0100d0
+int attr paddingEnd 0x7f010116
+int attr paddingStart 0x7f010115
+int attr panelBackground 0x7f010075
+int attr panelMenuListTheme 0x7f010077
+int attr panelMenuListWidth 0x7f010076
+int attr popupMenuStyle 0x7f010063
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010064
+int attr preserveIconSpacing 0x7f0100c9
+int attr pressedTranslationZ 0x7f0100be
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f0100e3
+int attr queryHint 0x7f0100da
+int attr radioButtonStyle 0x7f010090
+int attr ratingBarStyle 0x7f010091
+int attr ratingBarStyleIndicator 0x7f010092
+int attr ratingBarStyleSmall 0x7f010093
+int attr reverseLayout 0x7f0100d4
+int attr rippleColor 0x7f0100bc
+int attr searchHintIcon 0x7f0100df
+int attr searchIcon 0x7f0100de
+int attr searchViewStyle 0x7f01006b
+int attr seekBarStyle 0x7f010094
+int attr selectableItemBackground 0x7f01005b
+int attr selectableItemBackgroundBorderless 0x7f01005c
+int attr showAsAction 0x7f0100c5
+int attr showDividers 0x7f0100c3
+int attr showText 0x7f0100ec
+int attr singleChoiceItemLayout 0x7f010022
+int attr spanCount 0x7f0100d3
+int attr spinBars 0x7f0100b5
+int attr spinnerDropDownItemStyle 0x7f010056
+int attr spinnerStyle 0x7f010095
+int attr splitTrack 0x7f0100eb
+int attr srcCompat 0x7f010027
+int attr stackFromEnd 0x7f0100d5
+int attr state_above_anchor 0x7f0100d1
+int attr statusBarBackground 0x7f0100ac
+int attr statusBarScrim 0x7f0100a4
+int attr submitBackground 0x7f0100e4
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f010107
+int attr subtitleTextColor 0x7f010114
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f0100e2
+int attr switchMinWidth 0x7f0100e9
+int attr switchPadding 0x7f0100ea
+int attr switchStyle 0x7f010096
+int attr switchTextAppearance 0x7f0100e8
+int attr tabBackground 0x7f0100f0
+int attr tabContentStart 0x7f0100ef
+int attr tabGravity 0x7f0100f2
+int attr tabIndicatorColor 0x7f0100ed
+int attr tabIndicatorHeight 0x7f0100ee
+int attr tabMaxWidth 0x7f0100f4
+int attr tabMinWidth 0x7f0100f3
+int attr tabMode 0x7f0100f1
+int attr tabPadding 0x7f0100fc
+int attr tabPaddingBottom 0x7f0100fb
+int attr tabPaddingEnd 0x7f0100fa
+int attr tabPaddingStart 0x7f0100f8
+int attr tabPaddingTop 0x7f0100f9
+int attr tabSelectedTextColor 0x7f0100f7
+int attr tabTextAppearance 0x7f0100f5
+int attr tabTextColor 0x7f0100f6
+int attr textAllCaps 0x7f010028
+int attr textAppearanceLargePopupMenu 0x7f01004f
+int attr textAppearanceListItem 0x7f010073
+int attr textAppearanceListItemSmall 0x7f010074
+int attr textAppearanceSearchResultSubtitle 0x7f010069
+int attr textAppearanceSearchResultTitle 0x7f010068
+int attr textAppearanceSmallPopupMenu 0x7f010050
+int attr textColorAlertDialogListItem 0x7f010086
+int attr textColorError 0x7f0100b3
+int attr textColorSearchUrl 0x7f01006a
+int attr theme 0x7f010117
+int attr thickness 0x7f0100bb
+int attr thumbTextPadding 0x7f0100e7
+int attr title 0x7f010003
+int attr titleEnabled 0x7f0100a8
+int attr titleMarginBottom 0x7f01010c
+int attr titleMarginEnd 0x7f01010a
+int attr titleMarginStart 0x7f010109
+int attr titleMarginTop 0x7f01010b
+int attr titleMargins 0x7f010108
+int attr titleTextAppearance 0x7f010106
+int attr titleTextColor 0x7f010113
+int attr titleTextStyle 0x7f010007
+int attr toolbarId 0x7f0100a5
+int attr toolbarNavigationButtonStyle 0x7f010062
+int attr toolbarStyle 0x7f010061
+int attr track 0x7f0100e6
+int attr useCompatPadding 0x7f0100c0
+int attr voiceIcon 0x7f0100e0
+int attr windowActionBar 0x7f010029
+int attr windowActionBarOverlay 0x7f01002b
+int attr windowActionModeOverlay 0x7f01002c
+int attr windowFixedHeightMajor 0x7f010030
+int attr windowFixedHeightMinor 0x7f01002e
+int attr windowFixedWidthMajor 0x7f01002d
+int attr windowFixedWidthMinor 0x7f01002f
+int attr windowMinWidthMajor 0x7f010031
+int attr windowMinWidthMinor 0x7f010032
+int attr windowNoTitle 0x7f01002a
+int bool abc_action_bar_embed_tabs 0x7f060003
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
+int bool abc_allow_stacked_button_bar 0x7f060000
+int bool abc_config_actionMenuItemAllCaps 0x7f060005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
+int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
+int color abc_background_cache_hint_selector_material_dark 0x7f0a0044
+int color abc_background_cache_hint_selector_material_light 0x7f0a0045
+int color abc_color_highlight_material 0x7f0a0046
+int color abc_input_method_navigation_guard 0x7f0a0000
+int color abc_primary_text_disable_only_material_dark 0x7f0a0047
+int color abc_primary_text_disable_only_material_light 0x7f0a0048
+int color abc_primary_text_material_dark 0x7f0a0049
+int color abc_primary_text_material_light 0x7f0a004a
+int color abc_search_url_text 0x7f0a004b
+int color abc_search_url_text_normal 0x7f0a0001
+int color abc_search_url_text_pressed 0x7f0a0002
+int color abc_search_url_text_selected 0x7f0a0003
+int color abc_secondary_text_material_dark 0x7f0a004c
+int color abc_secondary_text_material_light 0x7f0a004d
+int color accent_material_dark 0x7f0a0004
+int color accent_material_light 0x7f0a0005
+int color background_floating_material_dark 0x7f0a0006
+int color background_floating_material_light 0x7f0a0007
+int color background_material_dark 0x7f0a0008
+int color background_material_light 0x7f0a0009
+int color bright_foreground_disabled_material_dark 0x7f0a000a
+int color bright_foreground_disabled_material_light 0x7f0a000b
+int color bright_foreground_inverse_material_dark 0x7f0a000c
+int color bright_foreground_inverse_material_light 0x7f0a000d
+int color bright_foreground_material_dark 0x7f0a000e
+int color bright_foreground_material_light 0x7f0a000f
+int color button_material_dark 0x7f0a0010
+int color button_material_light 0x7f0a0011
+int color design_fab_shadow_end_color 0x7f0a0012
+int color design_fab_shadow_mid_color 0x7f0a0013
+int color design_fab_shadow_start_color 0x7f0a0014
+int color design_fab_stroke_end_inner_color 0x7f0a0015
+int color design_fab_stroke_end_outer_color 0x7f0a0016
+int color design_fab_stroke_top_inner_color 0x7f0a0017
+int color design_fab_stroke_top_outer_color 0x7f0a0018
+int color design_snackbar_background_color 0x7f0a0019
+int color design_textinput_error_color_dark 0x7f0a001a
+int color design_textinput_error_color_light 0x7f0a001b
+int color dim_foreground_disabled_material_dark 0x7f0a001c
+int color dim_foreground_disabled_material_light 0x7f0a001d
+int color dim_foreground_material_dark 0x7f0a001e
+int color dim_foreground_material_light 0x7f0a001f
+int color foreground_material_dark 0x7f0a0020
+int color foreground_material_light 0x7f0a0021
+int color highlighted_text_material_dark 0x7f0a0022
+int color highlighted_text_material_light 0x7f0a0023
+int color hint_foreground_material_dark 0x7f0a0024
+int color hint_foreground_material_light 0x7f0a0025
+int color material_blue_grey_800 0x7f0a0026
+int color material_blue_grey_900 0x7f0a0027
+int color material_blue_grey_950 0x7f0a0028
+int color material_deep_teal_200 0x7f0a0029
+int color material_deep_teal_500 0x7f0a002a
+int color material_grey_100 0x7f0a002b
+int color material_grey_300 0x7f0a002c
+int color material_grey_50 0x7f0a002d
+int color material_grey_600 0x7f0a002e
+int color material_grey_800 0x7f0a002f
+int color material_grey_850 0x7f0a0030
+int color material_grey_900 0x7f0a0031
+int color primary_dark_material_dark 0x7f0a0032
+int color primary_dark_material_light 0x7f0a0033
+int color primary_material_dark 0x7f0a0034
+int color primary_material_light 0x7f0a0035
+int color primary_text_default_material_dark 0x7f0a0036
+int color primary_text_default_material_light 0x7f0a0037
+int color primary_text_disabled_material_dark 0x7f0a0038
+int color primary_text_disabled_material_light 0x7f0a0039
+int color ripple_material_dark 0x7f0a003a
+int color ripple_material_light 0x7f0a003b
+int color secondary_text_default_material_dark 0x7f0a003c
+int color secondary_text_default_material_light 0x7f0a003d
+int color secondary_text_disabled_material_dark 0x7f0a003e
+int color secondary_text_disabled_material_light 0x7f0a003f
+int color switch_thumb_disabled_material_dark 0x7f0a0040
+int color switch_thumb_disabled_material_light 0x7f0a0041
+int color switch_thumb_material_dark 0x7f0a004e
+int color switch_thumb_material_light 0x7f0a004f
+int color switch_thumb_normal_material_dark 0x7f0a0042
+int color switch_thumb_normal_material_light 0x7f0a0043
+int dimen abc_action_bar_content_inset_material 0x7f07000d
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_end_material 0x7f07000e
+int dimen abc_action_bar_default_padding_start_material 0x7f07000f
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070019
+int dimen abc_action_bar_overflow_padding_end_material 0x7f07001a
+int dimen abc_action_bar_overflow_padding_start_material 0x7f07001b
+int dimen abc_action_bar_progress_bar_size 0x7f070002
+int dimen abc_action_bar_stacked_max_height 0x7f07001c
+int dimen abc_action_bar_stacked_tab_max_width 0x7f07001d
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07001e
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f07001f
+int dimen abc_action_button_min_height_material 0x7f070020
+int dimen abc_action_button_min_width_material 0x7f070021
+int dimen abc_action_button_min_width_overflow_material 0x7f070022
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f070023
+int dimen abc_button_inset_vertical_material 0x7f070024
+int dimen abc_button_padding_horizontal_material 0x7f070025
+int dimen abc_button_padding_vertical_material 0x7f070026
+int dimen abc_config_prefDialogWidth 0x7f070005
+int dimen abc_control_corner_material 0x7f070027
+int dimen abc_control_inset_material 0x7f070028
+int dimen abc_control_padding_material 0x7f070029
+int dimen abc_dialog_fixed_height_major 0x7f070006
+int dimen abc_dialog_fixed_height_minor 0x7f070007
+int dimen abc_dialog_fixed_width_major 0x7f070008
+int dimen abc_dialog_fixed_width_minor 0x7f070009
+int dimen abc_dialog_list_padding_vertical_material 0x7f07002a
+int dimen abc_dialog_min_width_major 0x7f07000a
+int dimen abc_dialog_min_width_minor 0x7f07000b
+int dimen abc_dialog_padding_material 0x7f07002b
+int dimen abc_dialog_padding_top_material 0x7f07002c
+int dimen abc_disabled_alpha_material_dark 0x7f07002d
+int dimen abc_disabled_alpha_material_light 0x7f07002e
+int dimen abc_dropdownitem_icon_width 0x7f07002f
+int dimen abc_dropdownitem_text_padding_left 0x7f070030
+int dimen abc_dropdownitem_text_padding_right 0x7f070031
+int dimen abc_edit_text_inset_bottom_material 0x7f070032
+int dimen abc_edit_text_inset_horizontal_material 0x7f070033
+int dimen abc_edit_text_inset_top_material 0x7f070034
+int dimen abc_floating_window_z 0x7f070035
+int dimen abc_list_item_padding_horizontal_material 0x7f070036
+int dimen abc_panel_menu_list_width 0x7f070037
+int dimen abc_search_view_preferred_width 0x7f070038
+int dimen abc_search_view_text_min_width 0x7f07000c
+int dimen abc_seekbar_track_background_height_material 0x7f070039
+int dimen abc_seekbar_track_progress_height_material 0x7f07003a
+int dimen abc_select_dialog_padding_start_material 0x7f07003b
+int dimen abc_switch_padding 0x7f070018
+int dimen abc_text_size_body_1_material 0x7f07003c
+int dimen abc_text_size_body_2_material 0x7f07003d
+int dimen abc_text_size_button_material 0x7f07003e
+int dimen abc_text_size_caption_material 0x7f07003f
+int dimen abc_text_size_display_1_material 0x7f070040
+int dimen abc_text_size_display_2_material 0x7f070041
+int dimen abc_text_size_display_3_material 0x7f070042
+int dimen abc_text_size_display_4_material 0x7f070043
+int dimen abc_text_size_headline_material 0x7f070044
+int dimen abc_text_size_large_material 0x7f070045
+int dimen abc_text_size_medium_material 0x7f070046
+int dimen abc_text_size_menu_material 0x7f070047
+int dimen abc_text_size_small_material 0x7f070048
+int dimen abc_text_size_subhead_material 0x7f070049
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
+int dimen abc_text_size_title_material 0x7f07004a
+int dimen abc_text_size_title_material_toolbar 0x7f070004
+int dimen design_appbar_elevation 0x7f07004b
+int dimen design_bottom_sheet_modal_elevation 0x7f07004c
+int dimen design_bottom_sheet_modal_peek_height 0x7f07004d
+int dimen design_fab_border_width 0x7f07004e
+int dimen design_fab_elevation 0x7f07004f
+int dimen design_fab_image_size 0x7f070050
+int dimen design_fab_size_mini 0x7f070051
+int dimen design_fab_size_normal 0x7f070052
+int dimen design_fab_translation_z_pressed 0x7f070053
+int dimen design_navigation_elevation 0x7f070054
+int dimen design_navigation_icon_padding 0x7f070055
+int dimen design_navigation_icon_size 0x7f070056
+int dimen design_navigation_max_width 0x7f070010
+int dimen design_navigation_padding_bottom 0x7f070057
+int dimen design_navigation_separator_vertical_padding 0x7f070058
+int dimen design_snackbar_action_inline_max_width 0x7f070011
+int dimen design_snackbar_background_corner_radius 0x7f070012
+int dimen design_snackbar_elevation 0x7f070059
+int dimen design_snackbar_extra_spacing_horizontal 0x7f070013
+int dimen design_snackbar_max_width 0x7f070014
+int dimen design_snackbar_min_width 0x7f070015
+int dimen design_snackbar_padding_horizontal 0x7f07005a
+int dimen design_snackbar_padding_vertical 0x7f07005b
+int dimen design_snackbar_padding_vertical_2lines 0x7f070016
+int dimen design_snackbar_text_size 0x7f07005c
+int dimen design_tab_max_width 0x7f07005d
+int dimen design_tab_scrollable_min_width 0x7f070017
+int dimen design_tab_text_size 0x7f07005e
+int dimen design_tab_text_size_2line 0x7f07005f
+int dimen disabled_alpha_material_dark 0x7f070060
+int dimen disabled_alpha_material_light 0x7f070061
+int dimen highlight_alpha_material_colored 0x7f070062
+int dimen highlight_alpha_material_dark 0x7f070063
+int dimen highlight_alpha_material_light 0x7f070064
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070065
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070066
+int dimen item_touch_helper_swipe_escape_velocity 0x7f070067
+int dimen notification_large_icon_height 0x7f070068
+int dimen notification_large_icon_width 0x7f070069
+int dimen notification_subtext_size 0x7f07006a
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_star_black_16dp 0x7f020021
+int drawable abc_ic_star_black_36dp 0x7f020022
+int drawable abc_ic_star_half_black_16dp 0x7f020023
+int drawable abc_ic_star_half_black_36dp 0x7f020024
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
+int drawable abc_item_background_holo_dark 0x7f020026
+int drawable abc_item_background_holo_light 0x7f020027
+int drawable abc_list_divider_mtrl_alpha 0x7f020028
+int drawable abc_list_focused_holo 0x7f020029
+int drawable abc_list_longpressed_holo 0x7f02002a
+int drawable abc_list_pressed_holo_dark 0x7f02002b
+int drawable abc_list_pressed_holo_light 0x7f02002c
+int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
+int drawable abc_list_selector_disabled_holo_light 0x7f020030
+int drawable abc_list_selector_holo_dark 0x7f020031
+int drawable abc_list_selector_holo_light 0x7f020032
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
+int drawable abc_popup_background_mtrl_mult 0x7f020034
+int drawable abc_ratingbar_full_material 0x7f020035
+int drawable abc_ratingbar_indicator_material 0x7f020036
+int drawable abc_ratingbar_small_material 0x7f020037
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
+int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
+int drawable abc_seekbar_thumb_material 0x7f02003d
+int drawable abc_seekbar_track_material 0x7f02003e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
+int drawable abc_spinner_textfield_background_material 0x7f020040
+int drawable abc_switch_thumb_material 0x7f020041
+int drawable abc_switch_track_mtrl_alpha 0x7f020042
+int drawable abc_tab_indicator_material 0x7f020043
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
+int drawable abc_text_cursor_material 0x7f020045
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
+int drawable abc_textfield_default_mtrl_alpha 0x7f020047
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
+int drawable abc_textfield_search_material 0x7f02004a
+int drawable design_fab_background 0x7f02004b
+int drawable design_snackbar_background 0x7f02004c
+int drawable notification_template_icon_bg 0x7f02004d
+int id action0 0x7f0b0072
+int id action_bar 0x7f0b005a
+int id action_bar_activity_content 0x7f0b0000
+int id action_bar_container 0x7f0b0059
+int id action_bar_root 0x7f0b0055
+int id action_bar_spinner 0x7f0b0001
+int id action_bar_subtitle 0x7f0b003b
+int id action_bar_title 0x7f0b003a
+int id action_context_bar 0x7f0b005b
+int id action_divider 0x7f0b0076
+int id action_menu_divider 0x7f0b0002
+int id action_menu_presenter 0x7f0b0003
+int id action_mode_bar 0x7f0b0057
+int id action_mode_bar_stub 0x7f0b0056
+int id action_mode_close_button 0x7f0b003c
+int id activity_chooser_view_content 0x7f0b003d
+int id alertTitle 0x7f0b0049
+int id always 0x7f0b0033
+int id beginning 0x7f0b0031
+int id bottom 0x7f0b001d
+int id buttonPanel 0x7f0b0044
+int id cancel_action 0x7f0b0073
+int id center 0x7f0b001e
+int id center_horizontal 0x7f0b001f
+int id center_vertical 0x7f0b0020
+int id checkbox 0x7f0b0052
+int id chronometer 0x7f0b0079
+int id clip_horizontal 0x7f0b002c
+int id clip_vertical 0x7f0b002d
+int id collapseActionView 0x7f0b0034
+int id contentPanel 0x7f0b004a
+int id custom 0x7f0b0050
+int id customPanel 0x7f0b004f
+int id decor_content_parent 0x7f0b0058
+int id default_activity_button 0x7f0b0040
+int id design_bottom_sheet 0x7f0b006a
+int id design_menu_item_action_area 0x7f0b0071
+int id design_menu_item_action_area_stub 0x7f0b0070
+int id design_menu_item_text 0x7f0b006f
+int id design_navigation_view 0x7f0b006e
+int id disableHome 0x7f0b000e
+int id edit_query 0x7f0b005c
+int id end 0x7f0b0021
+int id end_padder 0x7f0b007e
+int id enterAlways 0x7f0b0015
+int id enterAlwaysCollapsed 0x7f0b0016
+int id exitUntilCollapsed 0x7f0b0017
+int id expand_activities_button 0x7f0b003e
+int id expanded_menu 0x7f0b0051
+int id fill 0x7f0b002e
+int id fill_horizontal 0x7f0b002f
+int id fill_vertical 0x7f0b0022
+int id fixed 0x7f0b0038
+int id home 0x7f0b0004
+int id homeAsUp 0x7f0b000f
+int id icon 0x7f0b0042
+int id ifRoom 0x7f0b0035
+int id image 0x7f0b003f
+int id info 0x7f0b007d
+int id item_touch_helper_previous_elevation 0x7f0b0005
+int id left 0x7f0b0023
+int id line1 0x7f0b0077
+int id line3 0x7f0b007b
+int id listMode 0x7f0b000b
+int id list_item 0x7f0b0041
+int id media_actions 0x7f0b0075
+int id middle 0x7f0b0032
+int id mini 0x7f0b0030
+int id multiply 0x7f0b0027
+int id navigation_header_container 0x7f0b006d
+int id never 0x7f0b0036
+int id none 0x7f0b0010
+int id normal 0x7f0b000c
+int id parallax 0x7f0b001b
+int id parentPanel 0x7f0b0046
+int id pin 0x7f0b001c
+int id progress_circular 0x7f0b0006
+int id progress_horizontal 0x7f0b0007
+int id radio 0x7f0b0054
+int id right 0x7f0b0024
+int id screen 0x7f0b0028
+int id scroll 0x7f0b0018
+int id scrollIndicatorDown 0x7f0b004e
+int id scrollIndicatorUp 0x7f0b004b
+int id scrollView 0x7f0b004c
+int id scrollable 0x7f0b0039
+int id search_badge 0x7f0b005e
+int id search_bar 0x7f0b005d
+int id search_button 0x7f0b005f
+int id search_close_btn 0x7f0b0064
+int id search_edit_frame 0x7f0b0060
+int id search_go_btn 0x7f0b0066
+int id search_mag_icon 0x7f0b0061
+int id search_plate 0x7f0b0062
+int id search_src_text 0x7f0b0063
+int id search_voice_btn 0x7f0b0067
+int id select_dialog_listview 0x7f0b0068
+int id shortcut 0x7f0b0053
+int id showCustom 0x7f0b0011
+int id showHome 0x7f0b0012
+int id showTitle 0x7f0b0013
+int id snackbar_action 0x7f0b006c
+int id snackbar_text 0x7f0b006b
+int id snap 0x7f0b0019
+int id spacer 0x7f0b0045
+int id split_action_bar 0x7f0b0008
+int id src_atop 0x7f0b0029
+int id src_in 0x7f0b002a
+int id src_over 0x7f0b002b
+int id start 0x7f0b0025
+int id status_bar_latest_event_content 0x7f0b0074
+int id submit_area 0x7f0b0065
+int id tabMode 0x7f0b000d
+int id text 0x7f0b007c
+int id text2 0x7f0b007a
+int id textSpacerNoButtons 0x7f0b004d
+int id time 0x7f0b0078
+int id title 0x7f0b0043
+int id title_template 0x7f0b0048
+int id top 0x7f0b0026
+int id topPanel 0x7f0b0047
+int id touch_outside 0x7f0b0069
+int id up 0x7f0b0009
+int id useLogo 0x7f0b0014
+int id view_offset_helper 0x7f0b000a
+int id withText 0x7f0b0037
+int id wrap_content 0x7f0b001a
+int integer abc_config_activityDefaultDur 0x7f090002
+int integer abc_config_activityShortDur 0x7f090003
+int integer abc_max_action_buttons 0x7f090000
+int integer bottom_sheet_slide_duration 0x7f090004
+int integer cancel_button_image_alpha 0x7f090005
+int integer design_snackbar_text_max_lines 0x7f090001
+int integer status_bar_notification_info_maxnum 0x7f090006
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_button_bar_material 0x7f030009
+int layout abc_alert_dialog_material 0x7f03000a
+int layout abc_dialog_title_material 0x7f03000b
+int layout abc_expanded_menu_layout 0x7f03000c
+int layout abc_list_menu_item_checkbox 0x7f03000d
+int layout abc_list_menu_item_icon 0x7f03000e
+int layout abc_list_menu_item_layout 0x7f03000f
+int layout abc_list_menu_item_radio 0x7f030010
+int layout abc_popup_menu_item_layout 0x7f030011
+int layout abc_screen_content_include 0x7f030012
+int layout abc_screen_simple 0x7f030013
+int layout abc_screen_simple_overlay_action_mode 0x7f030014
+int layout abc_screen_toolbar 0x7f030015
+int layout abc_search_dropdown_item_icons_2line 0x7f030016
+int layout abc_search_view 0x7f030017
+int layout abc_select_dialog_material 0x7f030018
+int layout design_bottom_sheet_dialog 0x7f030019
+int layout design_layout_snackbar 0x7f03001a
+int layout design_layout_snackbar_include 0x7f03001b
+int layout design_layout_tab_icon 0x7f03001c
+int layout design_layout_tab_text 0x7f03001d
+int layout design_menu_item_action_area 0x7f03001e
+int layout design_navigation_item 0x7f03001f
+int layout design_navigation_item_header 0x7f030020
+int layout design_navigation_item_separator 0x7f030021
+int layout design_navigation_item_subheader 0x7f030022
+int layout design_navigation_menu 0x7f030023
+int layout design_navigation_menu_item 0x7f030024
+int layout notification_media_action 0x7f030025
+int layout notification_media_cancel_action 0x7f030026
+int layout notification_template_big_media 0x7f030027
+int layout notification_template_big_media_narrow 0x7f030028
+int layout notification_template_lines 0x7f030029
+int layout notification_template_media 0x7f03002a
+int layout notification_template_part_chronometer 0x7f03002b
+int layout notification_template_part_time 0x7f03002c
+int layout select_dialog_item_material 0x7f03002d
+int layout select_dialog_multichoice_material 0x7f03002e
+int layout select_dialog_singlechoice_material 0x7f03002f
+int layout support_simple_spinner_dropdown_item 0x7f030030
+int string abc_action_bar_home_description 0x7f050000
+int string abc_action_bar_home_description_format 0x7f050001
+int string abc_action_bar_home_subtitle_description_format 0x7f050002
+int string abc_action_bar_up_description 0x7f050003
+int string abc_action_menu_overflow_description 0x7f050004
+int string abc_action_mode_done 0x7f050005
+int string abc_activity_chooser_view_see_all 0x7f050006
+int string abc_activitychooserview_choose_application 0x7f050007
+int string abc_capital_off 0x7f050008
+int string abc_capital_on 0x7f050009
+int string abc_search_hint 0x7f05000a
+int string abc_searchview_description_clear 0x7f05000b
+int string abc_searchview_description_query 0x7f05000c
+int string abc_searchview_description_search 0x7f05000d
+int string abc_searchview_description_submit 0x7f05000e
+int string abc_searchview_description_voice 0x7f05000f
+int string abc_shareactionprovider_share_with 0x7f050010
+int string abc_shareactionprovider_share_with_application 0x7f050011
+int string abc_toolbar_collapse_description 0x7f050012
+int string appbar_scrolling_view_behavior 0x7f050014
+int string bottom_sheet_behavior 0x7f050015
+int string character_counter_pattern 0x7f050016
+int string status_bar_notification_info_overflow 0x7f050013
+int style AlertDialog_AppCompat 0x7f080087
+int style AlertDialog_AppCompat_Light 0x7f080088
+int style Animation_AppCompat_Dialog 0x7f080089
+int style Animation_AppCompat_DropDownUp 0x7f08008a
+int style Animation_Design_BottomSheetDialog 0x7f08008b
+int style Base_AlertDialog_AppCompat 0x7f08008c
+int style Base_AlertDialog_AppCompat_Light 0x7f08008d
+int style Base_Animation_AppCompat_Dialog 0x7f08008e
+int style Base_Animation_AppCompat_DropDownUp 0x7f08008f
+int style Base_DialogWindowTitle_AppCompat 0x7f080090
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f080091
+int style Base_TextAppearance_AppCompat 0x7f080037
+int style Base_TextAppearance_AppCompat_Body1 0x7f080038
+int style Base_TextAppearance_AppCompat_Body2 0x7f080039
+int style Base_TextAppearance_AppCompat_Button 0x7f080021
+int style Base_TextAppearance_AppCompat_Caption 0x7f08003a
+int style Base_TextAppearance_AppCompat_Display1 0x7f08003b
+int style Base_TextAppearance_AppCompat_Display2 0x7f08003c
+int style Base_TextAppearance_AppCompat_Display3 0x7f08003d
+int style Base_TextAppearance_AppCompat_Display4 0x7f08003e
+int style Base_TextAppearance_AppCompat_Headline 0x7f08003f
+int style Base_TextAppearance_AppCompat_Inverse 0x7f08000c
+int style Base_TextAppearance_AppCompat_Large 0x7f080040
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000d
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080041
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080042
+int style Base_TextAppearance_AppCompat_Medium 0x7f080043
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000e
+int style Base_TextAppearance_AppCompat_Menu 0x7f080044
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f080092
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080045
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080046
+int style Base_TextAppearance_AppCompat_Small 0x7f080047
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000f
+int style Base_TextAppearance_AppCompat_Subhead 0x7f080048
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080010
+int style Base_TextAppearance_AppCompat_Title 0x7f080049
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080011
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080080
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004c
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004d
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004e
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004f
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080050
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080081
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080093
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080051
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080052
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080053
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080054
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080094
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080055
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080056
+int style Base_Theme_AppCompat 0x7f080057
+int style Base_Theme_AppCompat_CompactMenu 0x7f080095
+int style Base_Theme_AppCompat_Dialog 0x7f080012
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f080096
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080097
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080098
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080002
+int style Base_Theme_AppCompat_Light 0x7f080058
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080099
+int style Base_Theme_AppCompat_Light_Dialog 0x7f080013
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08009a
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08009b
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08009c
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080003
+int style Base_ThemeOverlay_AppCompat 0x7f08009d
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08009e
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f08009f
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800a0
+int style Base_ThemeOverlay_AppCompat_Light 0x7f0800a1
+int style Base_V11_Theme_AppCompat_Dialog 0x7f080014
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080015
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001d
+int style Base_V12_Widget_AppCompat_EditText 0x7f08001e
+int style Base_V21_Theme_AppCompat 0x7f080059
+int style Base_V21_Theme_AppCompat_Dialog 0x7f08005a
+int style Base_V21_Theme_AppCompat_Light 0x7f08005b
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005c
+int style Base_V22_Theme_AppCompat 0x7f08007e
+int style Base_V22_Theme_AppCompat_Light 0x7f08007f
+int style Base_V23_Theme_AppCompat 0x7f080082
+int style Base_V23_Theme_AppCompat_Light 0x7f080083
+int style Base_V7_Theme_AppCompat 0x7f0800a2
+int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a3
+int style Base_V7_Theme_AppCompat_Light 0x7f0800a4
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a5
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800a6
+int style Base_V7_Widget_AppCompat_EditText 0x7f0800a7
+int style Base_Widget_AppCompat_ActionBar 0x7f0800a8
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800a9
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800aa
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005d
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005e
+int style Base_Widget_AppCompat_ActionButton 0x7f08005f
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080060
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080061
+int style Base_Widget_AppCompat_ActionMode 0x7f0800ab
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800ac
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001f
+int style Base_Widget_AppCompat_Button 0x7f080062
+int style Base_Widget_AppCompat_Button_Borderless 0x7f080063
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080064
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800ad
+int style Base_Widget_AppCompat_Button_Colored 0x7f080084
+int style Base_Widget_AppCompat_Button_Small 0x7f080065
+int style Base_Widget_AppCompat_ButtonBar 0x7f080066
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ae
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080067
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080068
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800af
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800b0
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080069
+int style Base_Widget_AppCompat_EditText 0x7f080020
+int style Base_Widget_AppCompat_ImageButton 0x7f08006a
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800b1
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b2
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b3
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006b
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006c
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006d
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006e
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006f
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f080070
+int style Base_Widget_AppCompat_ListView 0x7f080071
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f080072
+int style Base_Widget_AppCompat_ListView_Menu 0x7f080073
+int style Base_Widget_AppCompat_PopupMenu 0x7f080074
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080075
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800b4
+int style Base_Widget_AppCompat_ProgressBar 0x7f080016
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080017
+int style Base_Widget_AppCompat_RatingBar 0x7f080076
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080085
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f080086
+int style Base_Widget_AppCompat_SearchView 0x7f0800b5
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800b6
+int style Base_Widget_AppCompat_SeekBar 0x7f080077
+int style Base_Widget_AppCompat_Spinner 0x7f080078
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080004
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080079
+int style Base_Widget_AppCompat_Toolbar 0x7f0800b7
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f08007a
+int style Base_Widget_Design_TabLayout 0x7f0800b8
+int style Platform_AppCompat 0x7f080018
+int style Platform_AppCompat_Light 0x7f080019
+int style Platform_ThemeOverlay_AppCompat 0x7f08007b
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007c
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007d
+int style Platform_V11_AppCompat 0x7f08001a
+int style Platform_V11_AppCompat_Light 0x7f08001b
+int style Platform_V14_AppCompat 0x7f080022
+int style Platform_V14_AppCompat_Light 0x7f080023
+int style Platform_Widget_AppCompat_Spinner 0x7f08001c
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080029
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002c
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002d
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002e
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002f
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080030
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080031
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080032
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080033
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080034
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080035
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080036
+int style TextAppearance_AppCompat 0x7f0800b9
+int style TextAppearance_AppCompat_Body1 0x7f0800ba
+int style TextAppearance_AppCompat_Body2 0x7f0800bb
+int style TextAppearance_AppCompat_Button 0x7f0800bc
+int style TextAppearance_AppCompat_Caption 0x7f0800bd
+int style TextAppearance_AppCompat_Display1 0x7f0800be
+int style TextAppearance_AppCompat_Display2 0x7f0800bf
+int style TextAppearance_AppCompat_Display3 0x7f0800c0
+int style TextAppearance_AppCompat_Display4 0x7f0800c1
+int style TextAppearance_AppCompat_Headline 0x7f0800c2
+int style TextAppearance_AppCompat_Inverse 0x7f0800c3
+int style TextAppearance_AppCompat_Large 0x7f0800c4
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c5
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c6
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c7
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c8
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c9
+int style TextAppearance_AppCompat_Medium 0x7f0800ca
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800cb
+int style TextAppearance_AppCompat_Menu 0x7f0800cc
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800cd
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800ce
+int style TextAppearance_AppCompat_Small 0x7f0800cf
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800d0
+int style TextAppearance_AppCompat_Subhead 0x7f0800d1
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800d2
+int style TextAppearance_AppCompat_Title 0x7f0800d3
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d4
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d5
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d6
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d7
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d8
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d9
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800da
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800db
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800dc
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800dd
+int style TextAppearance_AppCompat_Widget_Button 0x7f0800de
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800df
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800e0
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800e1
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800e2
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800e3
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e4
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0800e5
+int style TextAppearance_Design_Counter 0x7f0800e6
+int style TextAppearance_Design_Counter_Overflow 0x7f0800e7
+int style TextAppearance_Design_Error 0x7f0800e8
+int style TextAppearance_Design_Hint 0x7f0800e9
+int style TextAppearance_Design_Snackbar_Message 0x7f0800ea
+int style TextAppearance_Design_Tab 0x7f0800eb
+int style TextAppearance_StatusBar_EventContent 0x7f080024
+int style TextAppearance_StatusBar_EventContent_Info 0x7f080025
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f080026
+int style TextAppearance_StatusBar_EventContent_Time 0x7f080027
+int style TextAppearance_StatusBar_EventContent_Title 0x7f080028
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800ec
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800ed
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800ee
+int style Theme_AppCompat 0x7f0800ef
+int style Theme_AppCompat_CompactMenu 0x7f0800f0
+int style Theme_AppCompat_DayNight 0x7f080005
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080006
+int style Theme_AppCompat_DayNight_Dialog 0x7f080007
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080008
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080009
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f08000a
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000b
+int style Theme_AppCompat_Dialog 0x7f0800f1
+int style Theme_AppCompat_Dialog_Alert 0x7f0800f2
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800f3
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800f4
+int style Theme_AppCompat_Light 0x7f0800f5
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800f6
+int style Theme_AppCompat_Light_Dialog 0x7f0800f7
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800f8
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800f9
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800fa
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800fb
+int style Theme_AppCompat_NoActionBar 0x7f0800fc
+int style Theme_Design 0x7f0800fd
+int style Theme_Design_BottomSheetDialog 0x7f0800fe
+int style Theme_Design_Light 0x7f0800ff
+int style Theme_Design_Light_BottomSheetDialog 0x7f080100
+int style Theme_Design_Light_NoActionBar 0x7f080101
+int style Theme_Design_NoActionBar 0x7f080102
+int style ThemeOverlay_AppCompat 0x7f080103
+int style ThemeOverlay_AppCompat_ActionBar 0x7f080104
+int style ThemeOverlay_AppCompat_Dark 0x7f080105
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080106
+int style ThemeOverlay_AppCompat_Light 0x7f080107
+int style Widget_AppCompat_ActionBar 0x7f080108
+int style Widget_AppCompat_ActionBar_Solid 0x7f080109
+int style Widget_AppCompat_ActionBar_TabBar 0x7f08010a
+int style Widget_AppCompat_ActionBar_TabText 0x7f08010b
+int style Widget_AppCompat_ActionBar_TabView 0x7f08010c
+int style Widget_AppCompat_ActionButton 0x7f08010d
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f08010e
+int style Widget_AppCompat_ActionButton_Overflow 0x7f08010f
+int style Widget_AppCompat_ActionMode 0x7f080110
+int style Widget_AppCompat_ActivityChooserView 0x7f080111
+int style Widget_AppCompat_AutoCompleteTextView 0x7f080112
+int style Widget_AppCompat_Button 0x7f080113
+int style Widget_AppCompat_Button_Borderless 0x7f080114
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f080115
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080116
+int style Widget_AppCompat_Button_Colored 0x7f080117
+int style Widget_AppCompat_Button_Small 0x7f080118
+int style Widget_AppCompat_ButtonBar 0x7f080119
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f08011a
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f08011b
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f08011c
+int style Widget_AppCompat_CompoundButton_Switch 0x7f08011d
+int style Widget_AppCompat_DrawerArrowToggle 0x7f08011e
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f08011f
+int style Widget_AppCompat_EditText 0x7f080120
+int style Widget_AppCompat_ImageButton 0x7f080121
+int style Widget_AppCompat_Light_ActionBar 0x7f080122
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080123
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080124
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080125
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080126
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080127
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080128
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080129
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f08012a
+int style Widget_AppCompat_Light_ActionButton 0x7f08012b
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f08012c
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f08012d
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08012e
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f08012f
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080130
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080131
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f080132
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f080133
+int style Widget_AppCompat_Light_PopupMenu 0x7f080134
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080135
+int style Widget_AppCompat_Light_SearchView 0x7f080136
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080137
+int style Widget_AppCompat_ListPopupWindow 0x7f080138
+int style Widget_AppCompat_ListView 0x7f080139
+int style Widget_AppCompat_ListView_DropDown 0x7f08013a
+int style Widget_AppCompat_ListView_Menu 0x7f08013b
+int style Widget_AppCompat_PopupMenu 0x7f08013c
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f08013d
+int style Widget_AppCompat_PopupWindow 0x7f08013e
+int style Widget_AppCompat_ProgressBar 0x7f08013f
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080140
+int style Widget_AppCompat_RatingBar 0x7f080141
+int style Widget_AppCompat_RatingBar_Indicator 0x7f080142
+int style Widget_AppCompat_RatingBar_Small 0x7f080143
+int style Widget_AppCompat_SearchView 0x7f080144
+int style Widget_AppCompat_SearchView_ActionBar 0x7f080145
+int style Widget_AppCompat_SeekBar 0x7f080146
+int style Widget_AppCompat_Spinner 0x7f080147
+int style Widget_AppCompat_Spinner_DropDown 0x7f080148
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080149
+int style Widget_AppCompat_Spinner_Underlined 0x7f08014a
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f08014b
+int style Widget_AppCompat_Toolbar 0x7f08014c
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08014d
+int style Widget_Design_AppBarLayout 0x7f08014e
+int style Widget_Design_BottomSheet_Modal 0x7f08014f
+int style Widget_Design_CollapsingToolbar 0x7f080150
+int style Widget_Design_CoordinatorLayout 0x7f080151
+int style Widget_Design_FloatingActionButton 0x7f080152
+int style Widget_Design_NavigationView 0x7f080153
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f080154
+int style Widget_Design_Snackbar 0x7f080155
+int style Widget_Design_TabLayout 0x7f080001
+int style Widget_Design_TextInputLayout 0x7f080156
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_elevation 1
+int styleable AppBarLayout_expanded 2
+int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
+int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
+int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
+int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
+int styleable AppCompatTheme_actionBarDivider 23
+int styleable AppCompatTheme_actionBarItemBackground 24
+int styleable AppCompatTheme_actionBarPopupTheme 17
+int styleable AppCompatTheme_actionBarSize 22
+int styleable AppCompatTheme_actionBarSplitStyle 19
+int styleable AppCompatTheme_actionBarStyle 18
+int styleable AppCompatTheme_actionBarTabBarStyle 13
+int styleable AppCompatTheme_actionBarTabStyle 12
+int styleable AppCompatTheme_actionBarTabTextStyle 14
+int styleable AppCompatTheme_actionBarTheme 20
+int styleable AppCompatTheme_actionBarWidgetTheme 21
+int styleable AppCompatTheme_actionButtonStyle 49
+int styleable AppCompatTheme_actionDropDownStyle 45
+int styleable AppCompatTheme_actionMenuTextAppearance 25
+int styleable AppCompatTheme_actionMenuTextColor 26
+int styleable AppCompatTheme_actionModeBackground 29
+int styleable AppCompatTheme_actionModeCloseButtonStyle 28
+int styleable AppCompatTheme_actionModeCloseDrawable 31
+int styleable AppCompatTheme_actionModeCopyDrawable 33
+int styleable AppCompatTheme_actionModeCutDrawable 32
+int styleable AppCompatTheme_actionModeFindDrawable 37
+int styleable AppCompatTheme_actionModePasteDrawable 34
+int styleable AppCompatTheme_actionModePopupWindowStyle 39
+int styleable AppCompatTheme_actionModeSelectAllDrawable 35
+int styleable AppCompatTheme_actionModeShareDrawable 36
+int styleable AppCompatTheme_actionModeSplitBackground 30
+int styleable AppCompatTheme_actionModeStyle 27
+int styleable AppCompatTheme_actionModeWebSearchDrawable 38
+int styleable AppCompatTheme_actionOverflowButtonStyle 15
+int styleable AppCompatTheme_actionOverflowMenuStyle 16
+int styleable AppCompatTheme_activityChooserViewStyle 57
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
+int styleable AppCompatTheme_alertDialogCenterButtons 93
+int styleable AppCompatTheme_alertDialogStyle 91
+int styleable AppCompatTheme_alertDialogTheme 94
+int styleable AppCompatTheme_android_windowAnimationStyle 1
+int styleable AppCompatTheme_android_windowIsFloating 0
+int styleable AppCompatTheme_autoCompleteTextViewStyle 99
+int styleable AppCompatTheme_borderlessButtonStyle 54
+int styleable AppCompatTheme_buttonBarButtonStyle 51
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
+int styleable AppCompatTheme_buttonBarStyle 50
+int styleable AppCompatTheme_buttonStyle 100
+int styleable AppCompatTheme_buttonStyleSmall 101
+int styleable AppCompatTheme_checkboxStyle 102
+int styleable AppCompatTheme_checkedTextViewStyle 103
+int styleable AppCompatTheme_colorAccent 84
+int styleable AppCompatTheme_colorButtonNormal 88
+int styleable AppCompatTheme_colorControlActivated 86
+int styleable AppCompatTheme_colorControlHighlight 87
+int styleable AppCompatTheme_colorControlNormal 85
+int styleable AppCompatTheme_colorPrimary 82
+int styleable AppCompatTheme_colorPrimaryDark 83
+int styleable AppCompatTheme_colorSwitchThumbNormal 89
+int styleable AppCompatTheme_controlBackground 90
+int styleable AppCompatTheme_dialogPreferredPadding 43
+int styleable AppCompatTheme_dialogTheme 42
+int styleable AppCompatTheme_dividerHorizontal 56
+int styleable AppCompatTheme_dividerVertical 55
+int styleable AppCompatTheme_dropDownListViewStyle 74
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
+int styleable AppCompatTheme_editTextBackground 63
+int styleable AppCompatTheme_editTextColor 62
+int styleable AppCompatTheme_editTextStyle 104
+int styleable AppCompatTheme_homeAsUpIndicator 48
+int styleable AppCompatTheme_imageButtonStyle 64
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
+int styleable AppCompatTheme_listDividerAlertDialog 44
+int styleable AppCompatTheme_listPopupWindowStyle 75
+int styleable AppCompatTheme_listPreferredItemHeight 69
+int styleable AppCompatTheme_listPreferredItemHeightLarge 71
+int styleable AppCompatTheme_listPreferredItemHeightSmall 70
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
+int styleable AppCompatTheme_listPreferredItemPaddingRight 73
+int styleable AppCompatTheme_panelBackground 78
+int styleable AppCompatTheme_panelMenuListTheme 80
+int styleable AppCompatTheme_panelMenuListWidth 79
+int styleable AppCompatTheme_popupMenuStyle 60
+int styleable AppCompatTheme_popupWindowStyle 61
+int styleable AppCompatTheme_radioButtonStyle 105
+int styleable AppCompatTheme_ratingBarStyle 106
+int styleable AppCompatTheme_ratingBarStyleIndicator 107
+int styleable AppCompatTheme_ratingBarStyleSmall 108
+int styleable AppCompatTheme_searchViewStyle 68
+int styleable AppCompatTheme_seekBarStyle 109
+int styleable AppCompatTheme_selectableItemBackground 52
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
+int styleable AppCompatTheme_spinnerDropDownItemStyle 47
+int styleable AppCompatTheme_spinnerStyle 110
+int styleable AppCompatTheme_switchStyle 111
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
+int styleable AppCompatTheme_textAppearanceListItem 76
+int styleable AppCompatTheme_textAppearanceListItemSmall 77
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
+int styleable AppCompatTheme_textColorAlertDialogListItem 95
+int styleable AppCompatTheme_textColorSearchUrl 67
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
+int styleable AppCompatTheme_toolbarStyle 58
+int styleable AppCompatTheme_windowActionBar 2
+int styleable AppCompatTheme_windowActionBarOverlay 4
+int styleable AppCompatTheme_windowActionModeOverlay 5
+int styleable AppCompatTheme_windowFixedHeightMajor 9
+int styleable AppCompatTheme_windowFixedHeightMinor 7
+int styleable AppCompatTheme_windowFixedWidthMajor 6
+int styleable AppCompatTheme_windowFixedWidthMinor 8
+int styleable AppCompatTheme_windowMinWidthMajor 10
+int styleable AppCompatTheme_windowMinWidthMinor 11
+int styleable AppCompatTheme_windowNoTitle 3
+int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 }
+int styleable BottomSheetBehavior_Params_behavior_hideable 1
+int styleable BottomSheetBehavior_Params_behavior_peekHeight 0
+int[] styleable ButtonBarLayout { 0x7f010099 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009a, 0x7f01009b }
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
+int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
+int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
+int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
+int styleable CollapsingToolbarLayout_contentScrim 8
+int styleable CollapsingToolbarLayout_expandedTitleGravity 12
+int styleable CollapsingToolbarLayout_expandedTitleMargin 1
+int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
+int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
+int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
+int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
+int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
+int styleable CollapsingToolbarLayout_statusBarScrim 9
+int styleable CollapsingToolbarLayout_title 0
+int styleable CollapsingToolbarLayout_titleEnabled 13
+int styleable CollapsingToolbarLayout_toolbarId 10
+int[] styleable CompoundButton { 0x01010107, 0x7f0100a9, 0x7f0100aa }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x7f0100ab, 0x7f0100ac }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 }
+int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
+int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
+int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
+int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
+int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
+int[] styleable DesignTheme { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }
+int styleable DesignTheme_bottomSheetDialogTheme 0
+int styleable DesignTheme_bottomSheetStyle 1
+int styleable DesignTheme_textColorError 2
+int[] styleable DrawerArrowToggle { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 }
+int styleable FloatingActionButton_backgroundTint 6
+int styleable FloatingActionButton_backgroundTintMode 7
+int styleable FloatingActionButton_borderWidth 4
+int styleable FloatingActionButton_elevation 0
+int styleable FloatingActionButton_fabSize 2
+int styleable FloatingActionButton_pressedTranslationZ 3
+int styleable FloatingActionButton_rippleColor 1
+int styleable FloatingActionButton_useCompatPadding 5
+int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c1 }
+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, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf }
+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 9
+int styleable NavigationView_itemBackground 7
+int styleable NavigationView_itemIconTint 5
+int styleable NavigationView_itemTextAppearance 8
+int styleable NavigationView_itemTextColor 6
+int styleable NavigationView_menu 4
+int[] styleable PopupWindow { 0x01010176, 0x7f0100d0 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f0100d1 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecyclerView { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_layoutManager 1
+int styleable RecyclerView_reverseLayout 3
+int styleable RecyclerView_spanCount 2
+int styleable RecyclerView_stackFromEnd 4
+int[] styleable ScrimInsetsFrameLayout { 0x7f0100d6 }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Params { 0x7f0100d7 }
+int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f0100e5 }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_elevation 1
+int styleable SnackbarLayout_maxActionInlineWidth 2
+int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 3
+int styleable Spinner_android_entries 0
+int styleable Spinner_android_popupBackground 1
+int styleable Spinner_android_prompt 2
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+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 { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }
+int styleable TabLayout_tabBackground 3
+int styleable TabLayout_tabContentStart 2
+int styleable TabLayout_tabGravity 5
+int styleable TabLayout_tabIndicatorColor 0
+int styleable TabLayout_tabIndicatorHeight 1
+int styleable TabLayout_tabMaxWidth 7
+int styleable TabLayout_tabMinWidth 6
+int styleable TabLayout_tabMode 4
+int styleable TabLayout_tabPadding 15
+int styleable TabLayout_tabPaddingBottom 14
+int styleable TabLayout_tabPaddingEnd 13
+int styleable TabLayout_tabPaddingStart 11
+int styleable TabLayout_tabPaddingTop 12
+int styleable TabLayout_tabSelectedTextColor 10
+int styleable TabLayout_tabTextAppearance 8
+int styleable TabLayout_tabTextColor 9
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 }
+int styleable TextInputLayout_android_hint 1
+int styleable TextInputLayout_android_textColorHint 0
+int styleable TextInputLayout_counterEnabled 6
+int styleable TextInputLayout_counterMaxLength 7
+int styleable TextInputLayout_counterOverflowTextAppearance 9
+int styleable TextInputLayout_counterTextAppearance 8
+int styleable TextInputLayout_errorEnabled 4
+int styleable TextInputLayout_errorTextAppearance 5
+int styleable TextInputLayout_hintAnimationEnabled 10
+int styleable TextInputLayout_hintEnabled 3
+int styleable TextInputLayout_hintTextAppearance 2
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010118, 0x7f010119 }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..6c078ef88
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip
new file mode 100644
index 000000000..abdb63b7d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..5d655315f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt
new file mode 100644
index 000000000..96e2ee0f6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt
@@ -0,0 +1,22 @@
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# CoordinatorLayout resolves the behaviors of its child components with reflection.
+-keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior {
+ public (android.content.Context, android.util.AttributeSet);
+ public ();
+}
+
+# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior
+-keepattributes *Annotation*
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt
new file mode 100644
index 000000000..9cfb311e9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt
@@ -0,0 +1,94 @@
+style TextAppearance.Design.CollapsingToolbar.Expanded
+style TextAppearance.Design.Counter
+style TextAppearance.Design.Counter.Overflow
+style TextAppearance.Design.Error
+style TextAppearance.Design.Hint
+style TextAppearance.Design.Snackbar.Message
+style TextAppearance.Design.Tab
+style Theme.Design
+style Theme.Design.BottomSheetDialog
+style Theme.Design.Light
+style Theme.Design.Light.BottomSheetDialog
+style Theme.Design.Light.NoActionBar
+style Theme.Design.NoActionBar
+style Widget.Design.AppBarLayout
+style Widget.Design.BottomSheet.Modal
+style Widget.Design.CollapsingToolbar
+style Widget.Design.CoordinatorLayout
+style Widget.Design.FloatingActionButton
+style Widget.Design.NavigationView
+style Widget.Design.Snackbar
+style Widget.Design.TabLayout
+style Widget.Design.TextInputLayout
+string appbar_scrolling_view_behavior
+attr backgroundTint
+attr backgroundTintMode
+attr behavior_hideable
+attr behavior_overlapTop
+attr behavior_peekHeight
+attr borderWidth
+attr bottomSheetDialogTheme
+attr bottomSheetStyle
+string bottom_sheet_behavior
+attr collapsedTitleGravity
+attr collapsedTitleTextAppearance
+attr contentScrim
+attr counterEnabled
+attr counterMaxLength
+attr counterOverflowTextAppearance
+attr counterTextAppearance
+attr elevation
+attr errorEnabled
+attr errorTextAppearance
+attr expanded
+attr expandedTitleGravity
+attr expandedTitleMargin
+attr expandedTitleMarginBottom
+attr expandedTitleMarginEnd
+attr expandedTitleMarginStart
+attr expandedTitleMarginTop
+attr expandedTitleTextAppearance
+attr fabSize
+attr headerLayout
+attr hintAnimationEnabled
+attr hintEnabled
+attr hintTextAppearance
+attr itemBackground
+attr itemIconTint
+attr itemTextAppearance
+attr itemTextColor
+attr keylines
+attr layout_anchor
+attr layout_anchorGravity
+attr layout_behavior
+attr layout_collapseMode
+attr layout_collapseParallaxMultiplier
+attr layout_keyline
+attr layout_scrollFlags
+attr layout_scrollInterpolator
+attr menu
+attr pressedTranslationZ
+attr rippleColor
+attr statusBarBackground
+attr statusBarScrim
+attr tabBackground
+attr tabContentStart
+attr tabGravity
+attr tabIndicatorColor
+attr tabIndicatorHeight
+attr tabMaxWidth
+attr tabMinWidth
+attr tabMode
+attr tabPadding
+attr tabPaddingBottom
+attr tabPaddingEnd
+attr tabPaddingStart
+attr tabPaddingTop
+attr tabSelectedTextColor
+attr tabTextAppearance
+attr tabTextColor
+attr textColorError
+attr title
+attr titleEnabled
+attr toolbarId
+attr useCompatPadding
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..b5960a3a2
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..d680abe80
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..7cbae08bf
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..2e30963d6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml
new file mode 100644
index 000000000..294050f54
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml
new file mode 100644
index 000000000..0f80a9ab0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml
new file mode 100644
index 000000000..a40524c2b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml
new file mode 100644
index 000000000..eb55cc0e5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml
new file mode 100644
index 000000000..43afd5c9a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml
new file mode 100644
index 000000000..e82441c24
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml
new file mode 100644
index 000000000..b68395ab6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml
new file mode 100644
index 000000000..27bb8065c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml
new file mode 100644
index 000000000..604aafc03
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml
new file mode 100644
index 000000000..1aab24b87
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml
new file mode 100644
index 000000000..5dcfa117f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml
@@ -0,0 +1,21 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml
new file mode 100644
index 000000000..a83bb3d10
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml
new file mode 100644
index 000000000..ba8141d14
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml
new file mode 100644
index 000000000..ccd42de9e
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml
new file mode 100644
index 000000000..8d03f695f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml
@@ -0,0 +1,22 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml
new file mode 100644
index 000000000..938a3fbdd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml
new file mode 100644
index 000000000..707ec6aea
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml
new file mode 100644
index 000000000..b6a0ad5f1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml
new file mode 100644
index 000000000..91104bb17
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml
new file mode 100644
index 000000000..afcdbc82d
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..4ea101007
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,16 @@
+
+
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+ 160dp
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml
new file mode 100644
index 000000000..ce50cbdec
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml
@@ -0,0 +1,180 @@
+
+
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #FFFF6E6E
+ #FFD50000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4dp
+ 16dp
+ 256dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+
+ 150
+ 2
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ android.support.design.widget.BottomSheetBehavior
+ %1$d / %2$d
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..f191b9b51
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt
new file mode 100644
index 000000000..ae973d195
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt
@@ -0,0 +1,14 @@
+int attr layoutManager 0x7f010000
+int attr reverseLayout 0x7f010002
+int attr spanCount 0x7f010001
+int attr stackFromEnd 0x7f010003
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f020000
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f020001
+int dimen item_touch_helper_swipe_escape_velocity 0x7f020002
+int id item_touch_helper_previous_elevation 0x7f030000
+int[] styleable RecyclerView { 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003 }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_layoutManager 1
+int styleable RecyclerView_reverseLayout 3
+int styleable RecyclerView_spanCount 2
+int styleable RecyclerView_stackFromEnd 4
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..f191b9b51
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip
new file mode 100644
index 000000000..713e998a7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..c91b2582b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt
new file mode 100644
index 000000000..113d94dec
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt
@@ -0,0 +1,19 @@
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# When layoutManager xml attribute is used, RecyclerView inflates
+#LayoutManagers' constructors using reflection.
+-keep public class * extends android.support.v7.widget.RecyclerView$LayoutManager {
+ public (...);
+}
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt
new file mode 100644
index 000000000..040ac5fc7
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt
@@ -0,0 +1,4 @@
+attr layoutManager
+attr reverseLayout
+attr spanCount
+attr stackFromEnd
diff --git a/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml
new file mode 100644
index 000000000..7db8b965a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+ 20dp
+ 800dp
+ 120dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..f27326972
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..f27326972
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
new file mode 100644
index 000000000..6d36b97ec
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable MediaMetadataCompat;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl
new file mode 100644
index 000000000..223fd5c96
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable RatingCompat;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
new file mode 100644
index 000000000..d0c2f6fce
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
@@ -0,0 +1,20 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable MediaSessionCompat.Token;
+parcelable MediaSessionCompat.QueueItem;
+parcelable MediaSessionCompat.ResultReceiverWrapper;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
new file mode 100644
index 000000000..2e77c4fbd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable ParcelableVolumeInfo;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
new file mode 100644
index 000000000..3d4ef5956
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable PlaybackStateCompat;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl
new file mode 100644
index 000000000..81c81f6a9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl
@@ -0,0 +1,19 @@
+/*
+** Copyright 2015, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.os;
+
+parcelable ResultReceiver;
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip
new file mode 100644
index 000000000..128e4e10f
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..227b9d839
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar
new file mode 100644
index 000000000..f9ea7adc4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml
new file mode 100644
index 000000000..f643cc13f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..f643cc13f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar
new file mode 100644
index 000000000..f4ff62508
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/AndroidManifest.xml
new file mode 100644
index 000000000..e7d3ca497
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt
new file mode 100644
index 000000000..dbad92e62
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt
@@ -0,0 +1,58 @@
+int attr actualImageScaleType 0x7f01000b
+int attr backgroundImage 0x7f01000c
+int attr fadeDuration 0x7f010000
+int attr failureImage 0x7f010006
+int attr failureImageScaleType 0x7f010007
+int attr overlayImage 0x7f01000d
+int attr placeholderImage 0x7f010002
+int attr placeholderImageScaleType 0x7f010003
+int attr pressedStateOverlayImage 0x7f01000e
+int attr progressBarAutoRotateInterval 0x7f01000a
+int attr progressBarImage 0x7f010008
+int attr progressBarImageScaleType 0x7f010009
+int attr retryImage 0x7f010004
+int attr retryImageScaleType 0x7f010005
+int attr roundAsCircle 0x7f01000f
+int attr roundBottomLeft 0x7f010014
+int attr roundBottomRight 0x7f010013
+int attr roundTopLeft 0x7f010011
+int attr roundTopRight 0x7f010012
+int attr roundWithOverlayColor 0x7f010015
+int attr roundedCornerRadius 0x7f010010
+int attr roundingBorderColor 0x7f010017
+int attr roundingBorderWidth 0x7f010016
+int attr viewAspectRatio 0x7f010001
+int id center 0x7f020000
+int id centerCrop 0x7f020001
+int id centerInside 0x7f020002
+int id fitCenter 0x7f020003
+int id fitEnd 0x7f020004
+int id fitStart 0x7f020005
+int id fitXY 0x7f020006
+int id focusCrop 0x7f020007
+int id none 0x7f020008
+int[] styleable GenericDraweeView { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017 }
+int styleable GenericDraweeView_actualImageScaleType 11
+int styleable GenericDraweeView_backgroundImage 12
+int styleable GenericDraweeView_fadeDuration 0
+int styleable GenericDraweeView_failureImage 6
+int styleable GenericDraweeView_failureImageScaleType 7
+int styleable GenericDraweeView_overlayImage 13
+int styleable GenericDraweeView_placeholderImage 2
+int styleable GenericDraweeView_placeholderImageScaleType 3
+int styleable GenericDraweeView_pressedStateOverlayImage 14
+int styleable GenericDraweeView_progressBarAutoRotateInterval 10
+int styleable GenericDraweeView_progressBarImage 8
+int styleable GenericDraweeView_progressBarImageScaleType 9
+int styleable GenericDraweeView_retryImage 4
+int styleable GenericDraweeView_retryImageScaleType 5
+int styleable GenericDraweeView_roundAsCircle 15
+int styleable GenericDraweeView_roundBottomLeft 20
+int styleable GenericDraweeView_roundBottomRight 19
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 21
+int styleable GenericDraweeView_roundedCornerRadius 16
+int styleable GenericDraweeView_roundingBorderColor 23
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 1
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..e7d3ca497
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars/classes.jar
new file mode 100644
index 000000000..0a9855240
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml
new file mode 100644
index 000000000..c839e39f4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml
new file mode 100644
index 000000000..495ffaa10
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..495ffaa10
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars/classes.jar
new file mode 100644
index 000000000..08d51cf34
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/AndroidManifest.xml
new file mode 100644
index 000000000..ad7610fc6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/R.txt b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/R.txt
new file mode 100644
index 000000000..dbad92e62
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/R.txt
@@ -0,0 +1,58 @@
+int attr actualImageScaleType 0x7f01000b
+int attr backgroundImage 0x7f01000c
+int attr fadeDuration 0x7f010000
+int attr failureImage 0x7f010006
+int attr failureImageScaleType 0x7f010007
+int attr overlayImage 0x7f01000d
+int attr placeholderImage 0x7f010002
+int attr placeholderImageScaleType 0x7f010003
+int attr pressedStateOverlayImage 0x7f01000e
+int attr progressBarAutoRotateInterval 0x7f01000a
+int attr progressBarImage 0x7f010008
+int attr progressBarImageScaleType 0x7f010009
+int attr retryImage 0x7f010004
+int attr retryImageScaleType 0x7f010005
+int attr roundAsCircle 0x7f01000f
+int attr roundBottomLeft 0x7f010014
+int attr roundBottomRight 0x7f010013
+int attr roundTopLeft 0x7f010011
+int attr roundTopRight 0x7f010012
+int attr roundWithOverlayColor 0x7f010015
+int attr roundedCornerRadius 0x7f010010
+int attr roundingBorderColor 0x7f010017
+int attr roundingBorderWidth 0x7f010016
+int attr viewAspectRatio 0x7f010001
+int id center 0x7f020000
+int id centerCrop 0x7f020001
+int id centerInside 0x7f020002
+int id fitCenter 0x7f020003
+int id fitEnd 0x7f020004
+int id fitStart 0x7f020005
+int id fitXY 0x7f020006
+int id focusCrop 0x7f020007
+int id none 0x7f020008
+int[] styleable GenericDraweeView { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017 }
+int styleable GenericDraweeView_actualImageScaleType 11
+int styleable GenericDraweeView_backgroundImage 12
+int styleable GenericDraweeView_fadeDuration 0
+int styleable GenericDraweeView_failureImage 6
+int styleable GenericDraweeView_failureImageScaleType 7
+int styleable GenericDraweeView_overlayImage 13
+int styleable GenericDraweeView_placeholderImage 2
+int styleable GenericDraweeView_placeholderImageScaleType 3
+int styleable GenericDraweeView_pressedStateOverlayImage 14
+int styleable GenericDraweeView_progressBarAutoRotateInterval 10
+int styleable GenericDraweeView_progressBarImage 8
+int styleable GenericDraweeView_progressBarImageScaleType 9
+int styleable GenericDraweeView_retryImage 4
+int styleable GenericDraweeView_retryImageScaleType 5
+int styleable GenericDraweeView_roundAsCircle 15
+int styleable GenericDraweeView_roundBottomLeft 20
+int styleable GenericDraweeView_roundBottomRight 19
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 21
+int styleable GenericDraweeView_roundedCornerRadius 16
+int styleable GenericDraweeView_roundingBorderColor 23
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 1
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..ad7610fc6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars/classes.jar
new file mode 100644
index 000000000..d8e2e0063
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/AndroidManifest.xml
new file mode 100644
index 000000000..9c3600d6c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..9c3600d6c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars/classes.jar
new file mode 100644
index 000000000..5774e0734
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml
new file mode 100644
index 000000000..69e2e0815
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..69e2e0815
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars/classes.jar
new file mode 100644
index 000000000..a30989289
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libbitmaps.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libbitmaps.so
new file mode 100755
index 000000000..e98735669
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libbitmaps.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libgifimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libgifimage.so
new file mode 100755
index 000000000..1c9ded0d7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libgifimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libimagepipeline.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libimagepipeline.so
new file mode 100755
index 000000000..46de74376
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libimagepipeline.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libmemchunk.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libmemchunk.so
new file mode 100755
index 000000000..f466db3fd
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libmemchunk.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebp.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebp.so
new file mode 100755
index 000000000..e114096e5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebp.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebpimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebpimage.so
new file mode 100755
index 000000000..0701cc4d3
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/arm64-v8a/libwebpimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libbitmaps.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libbitmaps.so
new file mode 100755
index 000000000..852788fc2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libbitmaps.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libgifimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libgifimage.so
new file mode 100755
index 000000000..9e0aa8c36
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libgifimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libimagepipeline.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libimagepipeline.so
new file mode 100755
index 000000000..663f5b512
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libimagepipeline.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libmemchunk.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libmemchunk.so
new file mode 100755
index 000000000..efa0b5c3d
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libmemchunk.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebp.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebp.so
new file mode 100755
index 000000000..e94ae0746
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebp.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebpimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebpimage.so
new file mode 100755
index 000000000..b86f9b917
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi-v7a/libwebpimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libbitmaps.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libbitmaps.so
new file mode 100755
index 000000000..0db7f3e13
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libbitmaps.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libgifimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libgifimage.so
new file mode 100755
index 000000000..fdf619bc2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libgifimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libimagepipeline.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libimagepipeline.so
new file mode 100755
index 000000000..6214b390b
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libimagepipeline.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libmemchunk.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libmemchunk.so
new file mode 100755
index 000000000..f58b67bf9
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libmemchunk.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebp.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebp.so
new file mode 100755
index 000000000..dd95b83ee
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebp.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebpimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebpimage.so
new file mode 100755
index 000000000..465a3c31a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/armeabi/libwebpimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libbitmaps.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libbitmaps.so
new file mode 100755
index 000000000..d5a6d7bf5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libbitmaps.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libgifimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libgifimage.so
new file mode 100755
index 000000000..18184cf15
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libgifimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libimagepipeline.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libimagepipeline.so
new file mode 100755
index 000000000..06c789a88
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libimagepipeline.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libmemchunk.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libmemchunk.so
new file mode 100755
index 000000000..6739192c8
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libmemchunk.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebp.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebp.so
new file mode 100755
index 000000000..d45ba7319
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebp.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebpimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebpimage.so
new file mode 100755
index 000000000..f88dafbc2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86/libwebpimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libbitmaps.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libbitmaps.so
new file mode 100755
index 000000000..8bb7bfefd
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libbitmaps.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libgifimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libgifimage.so
new file mode 100755
index 000000000..056b95093
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libgifimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libimagepipeline.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libimagepipeline.so
new file mode 100755
index 000000000..de25af5a5
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libimagepipeline.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libmemchunk.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libmemchunk.so
new file mode 100755
index 000000000..6d3f35dc4
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libmemchunk.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebp.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebp.so
new file mode 100755
index 000000000..3c6ea5c23
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebp.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebpimage.so b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebpimage.so
new file mode 100755
index 000000000..7725697dc
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jni/x86_64/libwebpimage.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/AndroidManifest.xml
new file mode 100644
index 000000000..1fd127541
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/AndroidManifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/R.txt b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/R.txt
new file mode 100644
index 000000000..82fc24473
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/R.txt
@@ -0,0 +1,1297 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int anim catalyst_push_up_in 0x7f04000a
+int anim catalyst_push_up_out 0x7f04000b
+int attr actionBarDivider 0x7f01007e
+int attr actionBarItemBackground 0x7f01007f
+int attr actionBarPopupTheme 0x7f010078
+int attr actionBarSize 0x7f01007d
+int attr actionBarSplitStyle 0x7f01007a
+int attr actionBarStyle 0x7f010079
+int attr actionBarTabBarStyle 0x7f010074
+int attr actionBarTabStyle 0x7f010073
+int attr actionBarTabTextStyle 0x7f010075
+int attr actionBarTheme 0x7f01007b
+int attr actionBarWidgetTheme 0x7f01007c
+int attr actionButtonStyle 0x7f010098
+int attr actionDropDownStyle 0x7f010094
+int attr actionLayout 0x7f01004b
+int attr actionMenuTextAppearance 0x7f010080
+int attr actionMenuTextColor 0x7f010081
+int attr actionModeBackground 0x7f010084
+int attr actionModeCloseButtonStyle 0x7f010083
+int attr actionModeCloseDrawable 0x7f010086
+int attr actionModeCopyDrawable 0x7f010088
+int attr actionModeCutDrawable 0x7f010087
+int attr actionModeFindDrawable 0x7f01008c
+int attr actionModePasteDrawable 0x7f010089
+int attr actionModePopupWindowStyle 0x7f01008e
+int attr actionModeSelectAllDrawable 0x7f01008a
+int attr actionModeShareDrawable 0x7f01008b
+int attr actionModeSplitBackground 0x7f010085
+int attr actionModeStyle 0x7f010082
+int attr actionModeWebSearchDrawable 0x7f01008d
+int attr actionOverflowButtonStyle 0x7f010076
+int attr actionOverflowMenuStyle 0x7f010077
+int attr actionProviderClass 0x7f01004d
+int attr actionViewClass 0x7f01004c
+int attr activityChooserViewStyle 0x7f0100a0
+int attr actualImageScaleType 0x7f01003a
+int attr alertDialogButtonGroupStyle 0x7f0100c2
+int attr alertDialogCenterButtons 0x7f0100c3
+int attr alertDialogStyle 0x7f0100c1
+int attr alertDialogTheme 0x7f0100c4
+int attr arrowHeadLength 0x7f01002b
+int attr arrowShaftLength 0x7f01002c
+int attr autoCompleteTextViewStyle 0x7f0100c9
+int attr background 0x7f01000c
+int attr backgroundImage 0x7f01003b
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100e5
+int attr backgroundTintMode 0x7f0100e6
+int attr barLength 0x7f01002d
+int attr borderlessButtonStyle 0x7f01009d
+int attr buttonBarButtonStyle 0x7f01009a
+int attr buttonBarNegativeButtonStyle 0x7f0100c7
+int attr buttonBarNeutralButtonStyle 0x7f0100c8
+int attr buttonBarPositiveButtonStyle 0x7f0100c6
+int attr buttonBarStyle 0x7f010099
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100ca
+int attr buttonStyleSmall 0x7f0100cb
+int attr buttonTint 0x7f010025
+int attr buttonTintMode 0x7f010026
+int attr checkboxStyle 0x7f0100cc
+int attr checkedTextViewStyle 0x7f0100cd
+int attr closeIcon 0x7f010059
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100dc
+int attr collapseIcon 0x7f0100db
+int attr color 0x7f010027
+int attr colorAccent 0x7f0100ba
+int attr colorButtonNormal 0x7f0100be
+int attr colorControlActivated 0x7f0100bc
+int attr colorControlHighlight 0x7f0100bd
+int attr colorControlNormal 0x7f0100bb
+int attr colorPrimary 0x7f0100b8
+int attr colorPrimaryDark 0x7f0100b9
+int attr colorSwitchThumbNormal 0x7f0100bf
+int attr commitIcon 0x7f01005e
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f0100c0
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f010058
+int attr dialogPreferredPadding 0x7f010092
+int attr dialogTheme 0x7f010091
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01009f
+int attr dividerPadding 0x7f010049
+int attr dividerVertical 0x7f01009e
+int attr drawableSize 0x7f010029
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f0100b0
+int attr dropdownListPreferredItemHeight 0x7f010095
+int attr editTextBackground 0x7f0100a6
+int attr editTextColor 0x7f0100a5
+int attr editTextStyle 0x7f0100ce
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr fadeDuration 0x7f01002f
+int attr failureImage 0x7f010035
+int attr failureImageScaleType 0x7f010036
+int attr gapBetweenBars 0x7f01002a
+int attr goIcon 0x7f01005a
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f010097
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f010056
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010055
+int attr layoutManager 0x7f010051
+int attr listChoiceBackgroundIndicator 0x7f0100b7
+int attr listDividerAlertDialog 0x7f010093
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f0100b1
+int attr listPreferredItemHeight 0x7f0100ab
+int attr listPreferredItemHeightLarge 0x7f0100ad
+int attr listPreferredItemHeightSmall 0x7f0100ac
+int attr listPreferredItemPaddingLeft 0x7f0100ae
+int attr listPreferredItemPaddingRight 0x7f0100af
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100df
+int attr maxButtonHeight 0x7f0100da
+int attr measureWithLargestChild 0x7f010047
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100de
+int attr navigationIcon 0x7f0100dd
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f01004f
+int attr overlayImage 0x7f01003c
+int attr paddingEnd 0x7f0100e3
+int attr paddingStart 0x7f0100e2
+int attr panelBackground 0x7f0100b4
+int attr panelMenuListTheme 0x7f0100b6
+int attr panelMenuListWidth 0x7f0100b5
+int attr placeholderImage 0x7f010031
+int attr placeholderImageScaleType 0x7f010032
+int attr popupMenuStyle 0x7f0100a3
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f0100a4
+int attr preserveIconSpacing 0x7f01004e
+int attr pressedStateOverlayImage 0x7f01003d
+int attr progressBarAutoRotateInterval 0x7f010039
+int attr progressBarImage 0x7f010037
+int attr progressBarImageScaleType 0x7f010038
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f010060
+int attr queryHint 0x7f010057
+int attr radioButtonStyle 0x7f0100cf
+int attr ratingBarStyle 0x7f0100d0
+int attr retryImage 0x7f010033
+int attr retryImageScaleType 0x7f010034
+int attr reverseLayout 0x7f010053
+int attr roundAsCircle 0x7f01003e
+int attr roundBottomLeft 0x7f010043
+int attr roundBottomRight 0x7f010042
+int attr roundTopLeft 0x7f010040
+int attr roundTopRight 0x7f010041
+int attr roundWithOverlayColor 0x7f010044
+int attr roundedCornerRadius 0x7f01003f
+int attr roundingBorderColor 0x7f010046
+int attr roundingBorderWidth 0x7f010045
+int attr searchHintIcon 0x7f01005c
+int attr searchIcon 0x7f01005b
+int attr searchViewStyle 0x7f0100aa
+int attr selectableItemBackground 0x7f01009b
+int attr selectableItemBackgroundBorderless 0x7f01009c
+int attr showAsAction 0x7f01004a
+int attr showDividers 0x7f010048
+int attr showText 0x7f010068
+int attr singleChoiceItemLayout 0x7f010022
+int attr spanCount 0x7f010052
+int attr spinBars 0x7f010028
+int attr spinnerDropDownItemStyle 0x7f010096
+int attr spinnerStyle 0x7f0100d1
+int attr splitTrack 0x7f010067
+int attr stackFromEnd 0x7f010054
+int attr state_above_anchor 0x7f010050
+int attr submitBackground 0x7f010061
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100d4
+int attr subtitleTextColor 0x7f0100e1
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f01005f
+int attr switchMinWidth 0x7f010065
+int attr switchPadding 0x7f010066
+int attr switchStyle 0x7f0100d2
+int attr switchTextAppearance 0x7f010064
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f01008f
+int attr textAppearanceListItem 0x7f0100b2
+int attr textAppearanceListItemSmall 0x7f0100b3
+int attr textAppearanceSearchResultSubtitle 0x7f0100a8
+int attr textAppearanceSearchResultTitle 0x7f0100a7
+int attr textAppearanceSmallPopupMenu 0x7f010090
+int attr textColorAlertDialogListItem 0x7f0100c5
+int attr textColorSearchUrl 0x7f0100a9
+int attr theme 0x7f0100e4
+int attr thickness 0x7f01002e
+int attr thumbTextPadding 0x7f010063
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100d9
+int attr titleMarginEnd 0x7f0100d7
+int attr titleMarginStart 0x7f0100d6
+int attr titleMarginTop 0x7f0100d8
+int attr titleMargins 0x7f0100d5
+int attr titleTextAppearance 0x7f0100d3
+int attr titleTextColor 0x7f0100e0
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f0100a2
+int attr toolbarStyle 0x7f0100a1
+int attr track 0x7f010062
+int attr viewAspectRatio 0x7f010030
+int attr voiceIcon 0x7f01005d
+int attr windowActionBar 0x7f010069
+int attr windowActionBarOverlay 0x7f01006b
+int attr windowActionModeOverlay 0x7f01006c
+int attr windowFixedHeightMajor 0x7f010070
+int attr windowFixedHeightMinor 0x7f01006e
+int attr windowFixedWidthMajor 0x7f01006d
+int attr windowFixedWidthMinor 0x7f01006f
+int attr windowMinWidthMajor 0x7f010071
+int attr windowMinWidthMinor 0x7f010072
+int attr windowNoTitle 0x7f01006a
+int bool abc_action_bar_embed_tabs 0x7f090002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f090000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f090003
+int bool abc_config_actionMenuItemAllCaps 0x7f090004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f090005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006
+int color abc_background_cache_hint_selector_material_dark 0x7f0b003b
+int color abc_background_cache_hint_selector_material_light 0x7f0b003c
+int color abc_color_highlight_material 0x7f0b003d
+int color abc_input_method_navigation_guard 0x7f0b0000
+int color abc_primary_text_disable_only_material_dark 0x7f0b003e
+int color abc_primary_text_disable_only_material_light 0x7f0b003f
+int color abc_primary_text_material_dark 0x7f0b0040
+int color abc_primary_text_material_light 0x7f0b0041
+int color abc_search_url_text 0x7f0b0042
+int color abc_search_url_text_normal 0x7f0b0001
+int color abc_search_url_text_pressed 0x7f0b0002
+int color abc_search_url_text_selected 0x7f0b0003
+int color abc_secondary_text_material_dark 0x7f0b0043
+int color abc_secondary_text_material_light 0x7f0b0044
+int color accent_material_dark 0x7f0b0004
+int color accent_material_light 0x7f0b0005
+int color background_floating_material_dark 0x7f0b0006
+int color background_floating_material_light 0x7f0b0007
+int color background_material_dark 0x7f0b0008
+int color background_material_light 0x7f0b0009
+int color bright_foreground_disabled_material_dark 0x7f0b000a
+int color bright_foreground_disabled_material_light 0x7f0b000b
+int color bright_foreground_inverse_material_dark 0x7f0b000c
+int color bright_foreground_inverse_material_light 0x7f0b000d
+int color bright_foreground_material_dark 0x7f0b000e
+int color bright_foreground_material_light 0x7f0b000f
+int color button_material_dark 0x7f0b0010
+int color button_material_light 0x7f0b0011
+int color catalyst_redbox_background 0x7f0b0012
+int color dim_foreground_disabled_material_dark 0x7f0b0013
+int color dim_foreground_disabled_material_light 0x7f0b0014
+int color dim_foreground_material_dark 0x7f0b0015
+int color dim_foreground_material_light 0x7f0b0016
+int color foreground_material_dark 0x7f0b0017
+int color foreground_material_light 0x7f0b0018
+int color highlighted_text_material_dark 0x7f0b0019
+int color highlighted_text_material_light 0x7f0b001a
+int color hint_foreground_material_dark 0x7f0b001b
+int color hint_foreground_material_light 0x7f0b001c
+int color material_blue_grey_800 0x7f0b001d
+int color material_blue_grey_900 0x7f0b001e
+int color material_blue_grey_950 0x7f0b001f
+int color material_deep_teal_200 0x7f0b0020
+int color material_deep_teal_500 0x7f0b0021
+int color material_grey_100 0x7f0b0022
+int color material_grey_300 0x7f0b0023
+int color material_grey_50 0x7f0b0024
+int color material_grey_600 0x7f0b0025
+int color material_grey_800 0x7f0b0026
+int color material_grey_850 0x7f0b0027
+int color material_grey_900 0x7f0b0028
+int color primary_dark_material_dark 0x7f0b0029
+int color primary_dark_material_light 0x7f0b002a
+int color primary_material_dark 0x7f0b002b
+int color primary_material_light 0x7f0b002c
+int color primary_text_default_material_dark 0x7f0b002d
+int color primary_text_default_material_light 0x7f0b002e
+int color primary_text_disabled_material_dark 0x7f0b002f
+int color primary_text_disabled_material_light 0x7f0b0030
+int color ripple_material_dark 0x7f0b0031
+int color ripple_material_light 0x7f0b0032
+int color secondary_text_default_material_dark 0x7f0b0033
+int color secondary_text_default_material_light 0x7f0b0034
+int color secondary_text_disabled_material_dark 0x7f0b0035
+int color secondary_text_disabled_material_light 0x7f0b0036
+int color switch_thumb_disabled_material_dark 0x7f0b0037
+int color switch_thumb_disabled_material_light 0x7f0b0038
+int color switch_thumb_material_dark 0x7f0b0045
+int color switch_thumb_material_light 0x7f0b0046
+int color switch_thumb_normal_material_dark 0x7f0b0039
+int color switch_thumb_normal_material_light 0x7f0b003a
+int dimen abc_action_bar_content_inset_material 0x7f07000b
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_end_material 0x7f07000c
+int dimen abc_action_bar_default_padding_start_material 0x7f07000d
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f07000f
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070010
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070011
+int dimen abc_action_bar_progress_bar_size 0x7f070002
+int dimen abc_action_bar_stacked_max_height 0x7f070012
+int dimen abc_action_bar_stacked_tab_max_width 0x7f070013
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070014
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f070015
+int dimen abc_action_button_min_height_material 0x7f070016
+int dimen abc_action_button_min_width_material 0x7f070017
+int dimen abc_action_button_min_width_overflow_material 0x7f070018
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f070019
+int dimen abc_button_inset_vertical_material 0x7f07001a
+int dimen abc_button_padding_horizontal_material 0x7f07001b
+int dimen abc_button_padding_vertical_material 0x7f07001c
+int dimen abc_config_prefDialogWidth 0x7f070005
+int dimen abc_control_corner_material 0x7f07001d
+int dimen abc_control_inset_material 0x7f07001e
+int dimen abc_control_padding_material 0x7f07001f
+int dimen abc_dialog_list_padding_vertical_material 0x7f070020
+int dimen abc_dialog_min_width_major 0x7f070021
+int dimen abc_dialog_min_width_minor 0x7f070022
+int dimen abc_dialog_padding_material 0x7f070023
+int dimen abc_dialog_padding_top_material 0x7f070024
+int dimen abc_disabled_alpha_material_dark 0x7f070025
+int dimen abc_disabled_alpha_material_light 0x7f070026
+int dimen abc_dropdownitem_icon_width 0x7f070027
+int dimen abc_dropdownitem_text_padding_left 0x7f070028
+int dimen abc_dropdownitem_text_padding_right 0x7f070029
+int dimen abc_edit_text_inset_bottom_material 0x7f07002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
+int dimen abc_edit_text_inset_top_material 0x7f07002c
+int dimen abc_floating_window_z 0x7f07002d
+int dimen abc_list_item_padding_horizontal_material 0x7f07002e
+int dimen abc_panel_menu_list_width 0x7f07002f
+int dimen abc_search_view_preferred_width 0x7f070030
+int dimen abc_search_view_text_min_width 0x7f070006
+int dimen abc_switch_padding 0x7f07000e
+int dimen abc_text_size_body_1_material 0x7f070031
+int dimen abc_text_size_body_2_material 0x7f070032
+int dimen abc_text_size_button_material 0x7f070033
+int dimen abc_text_size_caption_material 0x7f070034
+int dimen abc_text_size_display_1_material 0x7f070035
+int dimen abc_text_size_display_2_material 0x7f070036
+int dimen abc_text_size_display_3_material 0x7f070037
+int dimen abc_text_size_display_4_material 0x7f070038
+int dimen abc_text_size_headline_material 0x7f070039
+int dimen abc_text_size_large_material 0x7f07003a
+int dimen abc_text_size_medium_material 0x7f07003b
+int dimen abc_text_size_menu_material 0x7f07003c
+int dimen abc_text_size_small_material 0x7f07003d
+int dimen abc_text_size_subhead_material 0x7f07003e
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
+int dimen abc_text_size_title_material 0x7f07003f
+int dimen abc_text_size_title_material_toolbar 0x7f070004
+int dimen dialog_fixed_height_major 0x7f070007
+int dimen dialog_fixed_height_minor 0x7f070008
+int dimen dialog_fixed_width_major 0x7f070009
+int dimen dialog_fixed_width_minor 0x7f07000a
+int dimen disabled_alpha_material_dark 0x7f070040
+int dimen disabled_alpha_material_light 0x7f070041
+int dimen highlight_alpha_material_colored 0x7f070042
+int dimen highlight_alpha_material_dark 0x7f070043
+int dimen highlight_alpha_material_light 0x7f070044
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070045
+int dimen notification_large_icon_height 0x7f070046
+int dimen notification_large_icon_width 0x7f070047
+int dimen notification_subtext_size 0x7f070048
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
+int drawable abc_item_background_holo_dark 0x7f020022
+int drawable abc_item_background_holo_light 0x7f020023
+int drawable abc_list_divider_mtrl_alpha 0x7f020024
+int drawable abc_list_focused_holo 0x7f020025
+int drawable abc_list_longpressed_holo 0x7f020026
+int drawable abc_list_pressed_holo_dark 0x7f020027
+int drawable abc_list_pressed_holo_light 0x7f020028
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
+int drawable abc_list_selector_disabled_holo_light 0x7f02002c
+int drawable abc_list_selector_holo_dark 0x7f02002d
+int drawable abc_list_selector_holo_light 0x7f02002e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
+int drawable abc_popup_background_mtrl_mult 0x7f020030
+int drawable abc_ratingbar_full_material 0x7f020031
+int drawable abc_spinner_mtrl_am_alpha 0x7f020032
+int drawable abc_spinner_textfield_background_material 0x7f020033
+int drawable abc_switch_thumb_material 0x7f020034
+int drawable abc_switch_track_mtrl_alpha 0x7f020035
+int drawable abc_tab_indicator_material 0x7f020036
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020037
+int drawable abc_text_cursor_material 0x7f020038
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020039
+int drawable abc_textfield_default_mtrl_alpha 0x7f02003a
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c
+int drawable abc_textfield_search_material 0x7f02003d
+int drawable notification_template_icon_bg 0x7f02003e
+int id action0 0x7f0c0057
+int id action_bar 0x7f0c0047
+int id action_bar_activity_content 0x7f0c0000
+int id action_bar_container 0x7f0c0046
+int id action_bar_root 0x7f0c0042
+int id action_bar_spinner 0x7f0c0001
+int id action_bar_subtitle 0x7f0c002b
+int id action_bar_title 0x7f0c002a
+int id action_context_bar 0x7f0c0048
+int id action_divider 0x7f0c005b
+int id action_menu_divider 0x7f0c0002
+int id action_menu_presenter 0x7f0c0003
+int id action_mode_bar 0x7f0c0044
+int id action_mode_bar_stub 0x7f0c0043
+int id action_mode_close_button 0x7f0c002c
+int id activity_chooser_view_content 0x7f0c002d
+int id alertTitle 0x7f0c0037
+int id always 0x7f0c0024
+int id beginning 0x7f0c0021
+int id buttonPanel 0x7f0c003d
+int id cancel_action 0x7f0c0058
+int id catalyst_redbox_title 0x7f0c0066
+int id center 0x7f0c0019
+int id centerCrop 0x7f0c001a
+int id centerInside 0x7f0c001b
+int id checkbox 0x7f0c003f
+int id chronometer 0x7f0c005e
+int id collapseActionView 0x7f0c0025
+int id contentPanel 0x7f0c0038
+int id custom 0x7f0c003c
+int id customPanel 0x7f0c003b
+int id decor_content_parent 0x7f0c0045
+int id default_activity_button 0x7f0c0030
+int id disableHome 0x7f0c000d
+int id edit_query 0x7f0c0049
+int id end 0x7f0c0022
+int id end_padder 0x7f0c0063
+int id expand_activities_button 0x7f0c002e
+int id expanded_menu 0x7f0c003e
+int id fitCenter 0x7f0c001c
+int id fitEnd 0x7f0c001d
+int id fitStart 0x7f0c001e
+int id fitXY 0x7f0c001f
+int id focusCrop 0x7f0c0020
+int id fps_text 0x7f0c0056
+int id home 0x7f0c0004
+int id homeAsUp 0x7f0c000e
+int id icon 0x7f0c0032
+int id ifRoom 0x7f0c0026
+int id image 0x7f0c002f
+int id info 0x7f0c0062
+int id item_touch_helper_previous_elevation 0x7f0c0005
+int id line1 0x7f0c005c
+int id line3 0x7f0c0060
+int id listMode 0x7f0c000a
+int id list_item 0x7f0c0031
+int id media_actions 0x7f0c005a
+int id middle 0x7f0c0023
+int id multiply 0x7f0c0014
+int id never 0x7f0c0027
+int id none 0x7f0c000f
+int id normal 0x7f0c000b
+int id parentPanel 0x7f0c0034
+int id progress_circular 0x7f0c0006
+int id progress_horizontal 0x7f0c0007
+int id radio 0x7f0c0041
+int id rn_frame_file 0x7f0c0065
+int id rn_frame_method 0x7f0c0064
+int id rn_redbox_reloadjs 0x7f0c0068
+int id rn_redbox_stack 0x7f0c0067
+int id screen 0x7f0c0015
+int id scrollView 0x7f0c0039
+int id search_badge 0x7f0c004b
+int id search_bar 0x7f0c004a
+int id search_button 0x7f0c004c
+int id search_close_btn 0x7f0c0051
+int id search_edit_frame 0x7f0c004d
+int id search_go_btn 0x7f0c0053
+int id search_mag_icon 0x7f0c004e
+int id search_plate 0x7f0c004f
+int id search_src_text 0x7f0c0050
+int id search_voice_btn 0x7f0c0054
+int id select_dialog_listview 0x7f0c0055
+int id shortcut 0x7f0c0040
+int id showCustom 0x7f0c0010
+int id showHome 0x7f0c0011
+int id showTitle 0x7f0c0012
+int id split_action_bar 0x7f0c0008
+int id src_atop 0x7f0c0016
+int id src_in 0x7f0c0017
+int id src_over 0x7f0c0018
+int id status_bar_latest_event_content 0x7f0c0059
+int id submit_area 0x7f0c0052
+int id tabMode 0x7f0c000c
+int id text 0x7f0c0061
+int id text2 0x7f0c005f
+int id textSpacerNoButtons 0x7f0c003a
+int id time 0x7f0c005d
+int id title 0x7f0c0033
+int id title_template 0x7f0c0036
+int id topPanel 0x7f0c0035
+int id up 0x7f0c0009
+int id useLogo 0x7f0c0013
+int id withText 0x7f0c0028
+int id wrap_content 0x7f0c0029
+int integer abc_config_activityDefaultDur 0x7f0a0001
+int integer abc_config_activityShortDur 0x7f0a0002
+int integer abc_max_action_buttons 0x7f0a0000
+int integer cancel_button_image_alpha 0x7f0a0003
+int integer status_bar_notification_info_maxnum 0x7f0a0004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_material 0x7f030009
+int layout abc_dialog_title_material 0x7f03000a
+int layout abc_expanded_menu_layout 0x7f03000b
+int layout abc_list_menu_item_checkbox 0x7f03000c
+int layout abc_list_menu_item_icon 0x7f03000d
+int layout abc_list_menu_item_layout 0x7f03000e
+int layout abc_list_menu_item_radio 0x7f03000f
+int layout abc_popup_menu_item_layout 0x7f030010
+int layout abc_screen_content_include 0x7f030011
+int layout abc_screen_simple 0x7f030012
+int layout abc_screen_simple_overlay_action_mode 0x7f030013
+int layout abc_screen_toolbar 0x7f030014
+int layout abc_search_dropdown_item_icons_2line 0x7f030015
+int layout abc_search_view 0x7f030016
+int layout abc_select_dialog_material 0x7f030017
+int layout fps_view 0x7f030018
+int layout notification_media_action 0x7f030019
+int layout notification_media_cancel_action 0x7f03001a
+int layout notification_template_big_media 0x7f03001b
+int layout notification_template_big_media_narrow 0x7f03001c
+int layout notification_template_lines 0x7f03001d
+int layout notification_template_media 0x7f03001e
+int layout notification_template_part_chronometer 0x7f03001f
+int layout notification_template_part_time 0x7f030020
+int layout redbox_item_frame 0x7f030021
+int layout redbox_item_title 0x7f030022
+int layout redbox_view 0x7f030023
+int layout select_dialog_item_material 0x7f030024
+int layout select_dialog_multichoice_material 0x7f030025
+int layout select_dialog_singlechoice_material 0x7f030026
+int layout support_simple_spinner_dropdown_item 0x7f030027
+int string abc_action_bar_home_description 0x7f060000
+int string abc_action_bar_home_description_format 0x7f060001
+int string abc_action_bar_home_subtitle_description_format 0x7f060002
+int string abc_action_bar_up_description 0x7f060003
+int string abc_action_menu_overflow_description 0x7f060004
+int string abc_action_mode_done 0x7f060005
+int string abc_activity_chooser_view_see_all 0x7f060006
+int string abc_activitychooserview_choose_application 0x7f060007
+int string abc_search_hint 0x7f060008
+int string abc_searchview_description_clear 0x7f060009
+int string abc_searchview_description_query 0x7f06000a
+int string abc_searchview_description_search 0x7f06000b
+int string abc_searchview_description_submit 0x7f06000c
+int string abc_searchview_description_voice 0x7f06000d
+int string abc_shareactionprovider_share_with 0x7f06000e
+int string abc_shareactionprovider_share_with_application 0x7f06000f
+int string abc_toolbar_collapse_description 0x7f060010
+int string catalyst_debugjs 0x7f060012
+int string catalyst_debugjs_off 0x7f06001a
+int string catalyst_element_inspector 0x7f060013
+int string catalyst_element_inspector_off 0x7f06001b
+int string catalyst_hot_module_replacement 0x7f06001c
+int string catalyst_hot_module_replacement_off 0x7f06001d
+int string catalyst_jsload_error 0x7f060014
+int string catalyst_jsload_message 0x7f060015
+int string catalyst_jsload_title 0x7f060016
+int string catalyst_live_reload 0x7f06001e
+int string catalyst_live_reload_off 0x7f06001f
+int string catalyst_perf_monitor 0x7f060020
+int string catalyst_perf_monitor_off 0x7f060021
+int string catalyst_reloadjs 0x7f060017
+int string catalyst_remotedbg_error 0x7f060022
+int string catalyst_remotedbg_message 0x7f060023
+int string catalyst_settings 0x7f060018
+int string catalyst_settings_title 0x7f060019
+int string catalyst_start_profile 0x7f060024
+int string catalyst_stop_profile 0x7f060025
+int string status_bar_notification_info_overflow 0x7f060011
+int style AlertDialog_AppCompat 0x7f08007a
+int style AlertDialog_AppCompat_Light 0x7f08007b
+int style Animation_AppCompat_Dialog 0x7f08007c
+int style Animation_AppCompat_DropDownUp 0x7f08007d
+int style Animation_Catalyst_RedBox 0x7f08007e
+int style Base_AlertDialog_AppCompat 0x7f08007f
+int style Base_AlertDialog_AppCompat_Light 0x7f080080
+int style Base_Animation_AppCompat_Dialog 0x7f080081
+int style Base_Animation_AppCompat_DropDownUp 0x7f080082
+int style Base_DialogWindowTitle_AppCompat 0x7f080083
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f080084
+int style Base_TextAppearance_AppCompat 0x7f08002d
+int style Base_TextAppearance_AppCompat_Body1 0x7f08002e
+int style Base_TextAppearance_AppCompat_Body2 0x7f08002f
+int style Base_TextAppearance_AppCompat_Button 0x7f080018
+int style Base_TextAppearance_AppCompat_Caption 0x7f080030
+int style Base_TextAppearance_AppCompat_Display1 0x7f080031
+int style Base_TextAppearance_AppCompat_Display2 0x7f080032
+int style Base_TextAppearance_AppCompat_Display3 0x7f080033
+int style Base_TextAppearance_AppCompat_Display4 0x7f080034
+int style Base_TextAppearance_AppCompat_Headline 0x7f080035
+int style Base_TextAppearance_AppCompat_Inverse 0x7f080003
+int style Base_TextAppearance_AppCompat_Large 0x7f080036
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080037
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080038
+int style Base_TextAppearance_AppCompat_Medium 0x7f080039
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005
+int style Base_TextAppearance_AppCompat_Menu 0x7f08003a
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f080085
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003b
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003c
+int style Base_TextAppearance_AppCompat_Small 0x7f08003d
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f08003e
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007
+int style Base_TextAppearance_AppCompat_Title 0x7f08003f
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080040
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080044
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080046
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080047
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080076
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080086
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080087
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004d
+int style Base_Theme_AppCompat 0x7f08004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f080088
+int style Base_Theme_AppCompat_Dialog 0x7f080009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f080089
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008a
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008b
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
+int style Base_Theme_AppCompat_Light 0x7f08004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008c
+int style Base_Theme_AppCompat_Light_Dialog 0x7f08000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008d
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08008e
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08008f
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
+int style Base_ThemeOverlay_AppCompat 0x7f080090
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080091
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f080092
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080093
+int style Base_ThemeOverlay_AppCompat_Light 0x7f080094
+int style Base_V11_Theme_AppCompat_Dialog 0x7f08000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080014
+int style Base_V12_Widget_AppCompat_EditText 0x7f080015
+int style Base_V21_Theme_AppCompat 0x7f080050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f080051
+int style Base_V21_Theme_AppCompat_Light 0x7f080052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080053
+int style Base_V22_Theme_AppCompat 0x7f080074
+int style Base_V22_Theme_AppCompat_Light 0x7f080075
+int style Base_V23_Theme_AppCompat 0x7f080077
+int style Base_V23_Theme_AppCompat_Light 0x7f080078
+int style Base_V7_Theme_AppCompat 0x7f080095
+int style Base_V7_Theme_AppCompat_Dialog 0x7f080096
+int style Base_V7_Theme_AppCompat_Light 0x7f080097
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080098
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f080099
+int style Base_V7_Widget_AppCompat_EditText 0x7f08009a
+int style Base_Widget_AppCompat_ActionBar 0x7f08009b
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009c
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009d
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080055
+int style Base_Widget_AppCompat_ActionButton 0x7f080056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080058
+int style Base_Widget_AppCompat_ActionMode 0x7f08009e
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f08009f
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080016
+int style Base_Widget_AppCompat_Button 0x7f080059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f08005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a0
+int style Base_Widget_AppCompat_Button_Colored 0x7f080079
+int style Base_Widget_AppCompat_Button_Small 0x7f08005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f08005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a1
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f08005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f08005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a2
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a3
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080060
+int style Base_Widget_AppCompat_EditText 0x7f080017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a4
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a5
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a6
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f080066
+int style Base_Widget_AppCompat_ListView 0x7f080067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f080068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f080069
+int style Base_Widget_AppCompat_PopupMenu 0x7f08006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800a7
+int style Base_Widget_AppCompat_ProgressBar 0x7f08000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e
+int style Base_Widget_AppCompat_RatingBar 0x7f08006c
+int style Base_Widget_AppCompat_SearchView 0x7f0800a8
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800a9
+int style Base_Widget_AppCompat_Spinner 0x7f08006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f08006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f08006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0800aa
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080070
+int style Platform_AppCompat 0x7f08000f
+int style Platform_AppCompat_Light 0x7f080010
+int style Platform_ThemeOverlay_AppCompat 0x7f080071
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080072
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f080073
+int style Platform_V11_AppCompat 0x7f080011
+int style Platform_V11_AppCompat_Light 0x7f080012
+int style Platform_V14_AppCompat 0x7f080019
+int style Platform_V14_AppCompat_Light 0x7f08001a
+int style Platform_Widget_AppCompat_Spinner 0x7f080013
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f080022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c
+int style TextAppearance_AppCompat 0x7f0800ab
+int style TextAppearance_AppCompat_Body1 0x7f0800ac
+int style TextAppearance_AppCompat_Body2 0x7f0800ad
+int style TextAppearance_AppCompat_Button 0x7f0800ae
+int style TextAppearance_AppCompat_Caption 0x7f0800af
+int style TextAppearance_AppCompat_Display1 0x7f0800b0
+int style TextAppearance_AppCompat_Display2 0x7f0800b1
+int style TextAppearance_AppCompat_Display3 0x7f0800b2
+int style TextAppearance_AppCompat_Display4 0x7f0800b3
+int style TextAppearance_AppCompat_Headline 0x7f0800b4
+int style TextAppearance_AppCompat_Inverse 0x7f0800b5
+int style TextAppearance_AppCompat_Large 0x7f0800b6
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800b7
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800b8
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800b9
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800ba
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800bb
+int style TextAppearance_AppCompat_Medium 0x7f0800bc
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800bd
+int style TextAppearance_AppCompat_Menu 0x7f0800be
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800bf
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800c0
+int style TextAppearance_AppCompat_Small 0x7f0800c1
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800c2
+int style TextAppearance_AppCompat_Subhead 0x7f0800c3
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800c4
+int style TextAppearance_AppCompat_Title 0x7f0800c5
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800c6
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c7
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800c8
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800c9
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800ca
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800cb
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800cc
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800cd
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800ce
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800cf
+int style TextAppearance_AppCompat_Widget_Button 0x7f0800d0
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800d1
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800d2
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800d3
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800d4
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800d5
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800d6
+int style TextAppearance_StatusBar_EventContent 0x7f08001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f08001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f08001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f08001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800d7
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800d8
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800d9
+int style Theme 0x7f0800da
+int style Theme_AppCompat 0x7f0800db
+int style Theme_AppCompat_CompactMenu 0x7f0800dc
+int style Theme_AppCompat_Dialog 0x7f0800dd
+int style Theme_AppCompat_Dialog_Alert 0x7f0800de
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800df
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800e0
+int style Theme_AppCompat_Light 0x7f0800e1
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800e2
+int style Theme_AppCompat_Light_Dialog 0x7f0800e3
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800e4
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800e5
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800e6
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800e7
+int style Theme_AppCompat_NoActionBar 0x7f0800e8
+int style Theme_Catalyst 0x7f0800e9
+int style Theme_Catalyst_RedBox 0x7f0800ea
+int style Theme_ReactNative_AppCompat_Light 0x7f0800eb
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0800ec
+int style ThemeOverlay_AppCompat 0x7f0800ed
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0800ee
+int style ThemeOverlay_AppCompat_Dark 0x7f0800ef
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800f0
+int style ThemeOverlay_AppCompat_Light 0x7f0800f1
+int style Widget_AppCompat_ActionBar 0x7f0800f2
+int style Widget_AppCompat_ActionBar_Solid 0x7f0800f3
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0800f4
+int style Widget_AppCompat_ActionBar_TabText 0x7f0800f5
+int style Widget_AppCompat_ActionBar_TabView 0x7f0800f6
+int style Widget_AppCompat_ActionButton 0x7f0800f7
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800f8
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0800f9
+int style Widget_AppCompat_ActionMode 0x7f0800fa
+int style Widget_AppCompat_ActivityChooserView 0x7f0800fb
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0800fc
+int style Widget_AppCompat_Button 0x7f0800fd
+int style Widget_AppCompat_Button_Borderless 0x7f0800fe
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800ff
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080100
+int style Widget_AppCompat_Button_Colored 0x7f080101
+int style Widget_AppCompat_Button_Small 0x7f080102
+int style Widget_AppCompat_ButtonBar 0x7f080103
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080104
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080105
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080106
+int style Widget_AppCompat_CompoundButton_Switch 0x7f080107
+int style Widget_AppCompat_DrawerArrowToggle 0x7f080108
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f080109
+int style Widget_AppCompat_EditText 0x7f08010a
+int style Widget_AppCompat_Light_ActionBar 0x7f08010b
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f08010c
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08010d
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08010e
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08010f
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080110
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080111
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080112
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080113
+int style Widget_AppCompat_Light_ActionButton 0x7f080114
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080115
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080116
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080117
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f080118
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080119
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f08011a
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f08011b
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f08011c
+int style Widget_AppCompat_Light_PopupMenu 0x7f08011d
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08011e
+int style Widget_AppCompat_Light_SearchView 0x7f08011f
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080120
+int style Widget_AppCompat_ListPopupWindow 0x7f080121
+int style Widget_AppCompat_ListView 0x7f080122
+int style Widget_AppCompat_ListView_DropDown 0x7f080123
+int style Widget_AppCompat_ListView_Menu 0x7f080124
+int style Widget_AppCompat_PopupMenu 0x7f080125
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f080126
+int style Widget_AppCompat_PopupWindow 0x7f080127
+int style Widget_AppCompat_ProgressBar 0x7f080128
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080129
+int style Widget_AppCompat_RatingBar 0x7f08012a
+int style Widget_AppCompat_SearchView 0x7f08012b
+int style Widget_AppCompat_SearchView_ActionBar 0x7f08012c
+int style Widget_AppCompat_Spinner 0x7f08012d
+int style Widget_AppCompat_Spinner_DropDown 0x7f08012e
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08012f
+int style Widget_AppCompat_Spinner_Underlined 0x7f080130
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f080131
+int style Widget_AppCompat_Toolbar 0x7f080132
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080133
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010097 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable GenericDraweeView { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 }
+int styleable GenericDraweeView_actualImageScaleType 11
+int styleable GenericDraweeView_backgroundImage 12
+int styleable GenericDraweeView_fadeDuration 0
+int styleable GenericDraweeView_failureImage 6
+int styleable GenericDraweeView_failureImageScaleType 7
+int styleable GenericDraweeView_overlayImage 13
+int styleable GenericDraweeView_placeholderImage 2
+int styleable GenericDraweeView_placeholderImageScaleType 3
+int styleable GenericDraweeView_pressedStateOverlayImage 14
+int styleable GenericDraweeView_progressBarAutoRotateInterval 10
+int styleable GenericDraweeView_progressBarImage 8
+int styleable GenericDraweeView_progressBarImageScaleType 9
+int styleable GenericDraweeView_retryImage 4
+int styleable GenericDraweeView_retryImageScaleType 5
+int styleable GenericDraweeView_roundAsCircle 15
+int styleable GenericDraweeView_roundBottomLeft 20
+int styleable GenericDraweeView_roundBottomRight 19
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 21
+int styleable GenericDraweeView_roundedCornerRadius 16
+int styleable GenericDraweeView_roundingBorderColor 23
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 1
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f01004f }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010050 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecyclerView { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_layoutManager 1
+int styleable RecyclerView_reverseLayout 3
+int styleable RecyclerView_spanCount 2
+int styleable RecyclerView_stackFromEnd 4
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 2
+int styleable Spinner_android_popupBackground 0
+int styleable Spinner_android_prompt 1
+int styleable Spinner_popupTheme 3
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 4
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 91
+int styleable Theme_alertDialogCenterButtons 92
+int styleable Theme_alertDialogStyle 90
+int styleable Theme_alertDialogTheme 93
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 98
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 96
+int styleable Theme_buttonBarNeutralButtonStyle 97
+int styleable Theme_buttonBarPositiveButtonStyle 95
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 99
+int styleable Theme_buttonStyleSmall 100
+int styleable Theme_checkboxStyle 101
+int styleable Theme_checkedTextViewStyle 102
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_controlBackground 89
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 103
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 104
+int styleable Theme_ratingBarStyle 105
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 106
+int styleable Theme_switchStyle 107
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 94
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e5, 0x7f0100e6 }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml preferences 0x7f050000
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..1fd127541
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/aapt/AndroidManifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/annotations.zip b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/annotations.zip
new file mode 100644
index 000000000..8197c8124
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/classes.jar b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/classes.jar
new file mode 100644
index 000000000..6150953ba
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/libs/infer-annotations-1.5.jar b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/libs/infer-annotations-1.5.jar
new file mode 100644
index 000000000..006298a1e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jars/libs/infer-annotations-1.5.jar differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfb.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfb.so
new file mode 100644
index 000000000..372de0f62
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfb.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfbjni.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfbjni.so
new file mode 100644
index 000000000..6b99ac86a
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfbjni.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfolly_json.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfolly_json.so
new file mode 100644
index 000000000..2a4666559
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libfolly_json.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libglog.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libglog.so
new file mode 100644
index 000000000..136f7b2f7
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libglog.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libgnustl_shared.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libgnustl_shared.so
new file mode 100644
index 000000000..365801b99
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libgnustl_shared.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libreactnativejni.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libreactnativejni.so
new file mode 100644
index 000000000..d39fa82a0
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/armeabi-v7a/libreactnativejni.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfb.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfb.so
new file mode 100644
index 000000000..3c6dd61db
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfb.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfbjni.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfbjni.so
new file mode 100644
index 000000000..999e89a99
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfbjni.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfolly_json.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfolly_json.so
new file mode 100644
index 000000000..61ce33e3c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libfolly_json.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libglog.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libglog.so
new file mode 100644
index 000000000..9e68855a9
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libglog.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libgnustl_shared.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libgnustl_shared.so
new file mode 100644
index 000000000..3d9815d96
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libgnustl_shared.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libreactnativejni.so b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libreactnativejni.so
new file mode 100644
index 000000000..44883a891
Binary files /dev/null and b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/jni/x86/libreactnativejni.so differ
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml
new file mode 100644
index 000000000..aef91bc52
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml
new file mode 100644
index 000000000..790e27589
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml
new file mode 100644
index 000000000..468caa9f3
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml
new file mode 100644
index 000000000..ad23cbf47
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml
new file mode 100644
index 000000000..8091fb4d3
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml
new file mode 100644
index 000000000..02c07ba8c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-cs/values-cs.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-cs/values-cs.xml
new file mode 100644
index 000000000..523cf107f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-cs/values-cs.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-da/values-da.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-da/values-da.xml
new file mode 100644
index 000000000..8b55a1cb2
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-da/values-da.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-de/values-de.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-de/values-de.xml
new file mode 100644
index 000000000..8fa8d9b57
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-de/values-de.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-el/values-el.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-el/values-el.xml
new file mode 100644
index 000000000..9f27005f8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-el/values-el.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..bc12ca83c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es-rES/values-es-rES.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es/values-es.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es/values-es.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-es/values-es.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb/values-fb.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fi/values-fi.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fi/values-fi.xml
new file mode 100644
index 000000000..ce35293dd
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fi/values-fi.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fr/values-fr.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fr/values-fr.xml
new file mode 100644
index 000000000..68f46e9ad
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-fr/values-fr.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-hu/values-hu.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-hu/values-hu.xml
new file mode 100644
index 000000000..cdb3bdb6b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-hu/values-hu.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-in/values-in.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-in/values-in.xml
new file mode 100644
index 000000000..ebb2ef297
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-in/values-in.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-it/values-it.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-it/values-it.xml
new file mode 100644
index 000000000..62097f57a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-it/values-it.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ja/values-ja.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ja/values-ja.xml
new file mode 100644
index 000000000..a018d6815
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ja/values-ja.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ko/values-ko.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ko/values-ko.xml
new file mode 100644
index 000000000..32d45e37a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ko/values-ko.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nb/values-nb.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nb/values-nb.xml
new file mode 100644
index 000000000..628c95bc3
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nb/values-nb.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nl/values-nl.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nl/values-nl.xml
new file mode 100644
index 000000000..d074c128b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-nl/values-nl.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pl/values-pl.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pl/values-pl.xml
new file mode 100644
index 000000000..c95e65e58
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pl/values-pl.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..fce3dab44
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt/values-pt.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt/values-pt.xml
new file mode 100644
index 000000000..9edc8c751
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-pt/values-pt.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ro/values-ro.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ro/values-ro.xml
new file mode 100644
index 000000000..bc12ca83c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ro/values-ro.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ru/values-ru.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ru/values-ru.xml
new file mode 100644
index 000000000..a32bf6b44
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-ru/values-ru.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-sv/values-sv.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-sv/values-sv.xml
new file mode 100644
index 000000000..695d9f2dc
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-sv/values-sv.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-th/values-th.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-th/values-th.xml
new file mode 100644
index 000000000..3ef471ff6
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-th/values-th.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-tr/values-tr.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-tr/values-tr.xml
new file mode 100644
index 000000000..06870124f
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-tr/values-tr.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-vi/values-vi.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-vi/values-vi.xml
new file mode 100644
index 000000000..5e9e147fe
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-vi/values-vi.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..8f844f3f4
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..22051a054
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..3980252a9
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values/values.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values/values.xml
new file mode 100644
index 000000000..74f655db5
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/values/values.xml
@@ -0,0 +1,46 @@
+
+
+ #eecc0000
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml
new file mode 100644
index 000000000..99f5408c0
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/AndroidManifest.xml b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/AndroidManifest.xml
new file mode 100644
index 000000000..019fe4f7b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/AndroidManifest.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..019fe4f7b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/aapt/AndroidManifest.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/annotations.zip b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/annotations.zip
new file mode 100644
index 000000000..fec481bba
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/annotations.zip differ
diff --git a/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/jars/classes.jar b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/jars/classes.jar
new file mode 100644
index 000000000..87a53c47c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.piwik.sdk/piwik-sdk/0.0.4/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml
new file mode 100644
index 000000000..0f636985c
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar
new file mode 100644
index 000000000..d1cedcf22
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so
new file mode 100644
index 000000000..e92e859c2
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so
new file mode 100644
index 000000000..c72d14e91
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so
new file mode 100644
index 000000000..828015d09
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so
new file mode 100644
index 000000000..802ff2930
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so differ
diff --git a/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so
new file mode 100644
index 000000000..ea95c9188
Binary files /dev/null and b/android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so differ
diff --git a/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/AndroidManifest.xml b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/AndroidManifest.xml
new file mode 100644
index 000000000..135083168
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/R.txt b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/R.txt
new file mode 100644
index 000000000..a3db1775a
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f010001
+int attr show_fps 0x7f010000
+int id any 0x7f020000
+int id back 0x7f020001
+int id front 0x7f020002
+int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
diff --git a/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/jars/classes.jar b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/jars/classes.jar
new file mode 100644
index 000000000..02641d37e
Binary files /dev/null and b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/res/values/values.xml b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/res/values/values.xml
new file mode 100644
index 000000000..bfefdaefa
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/testescanner/openCVLibrary310/unspecified/res/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/AndroidManifest.xml b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/AndroidManifest.xml
new file mode 100644
index 000000000..f6377ae8b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/AndroidManifest.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/R.txt b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/R.txt
new file mode 100644
index 000000000..df191c9a8
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/R.txt
@@ -0,0 +1,1222 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int attr actionBarDivider 0x7f010063
+int attr actionBarItemBackground 0x7f010064
+int attr actionBarPopupTheme 0x7f01005d
+int attr actionBarSize 0x7f010062
+int attr actionBarSplitStyle 0x7f01005f
+int attr actionBarStyle 0x7f01005e
+int attr actionBarTabBarStyle 0x7f010059
+int attr actionBarTabStyle 0x7f010058
+int attr actionBarTabTextStyle 0x7f01005a
+int attr actionBarTheme 0x7f010060
+int attr actionBarWidgetTheme 0x7f010061
+int attr actionButtonStyle 0x7f01007d
+int attr actionDropDownStyle 0x7f010079
+int attr actionLayout 0x7f010034
+int attr actionMenuTextAppearance 0x7f010065
+int attr actionMenuTextColor 0x7f010066
+int attr actionModeBackground 0x7f010069
+int attr actionModeCloseButtonStyle 0x7f010068
+int attr actionModeCloseDrawable 0x7f01006b
+int attr actionModeCopyDrawable 0x7f01006d
+int attr actionModeCutDrawable 0x7f01006c
+int attr actionModeFindDrawable 0x7f010071
+int attr actionModePasteDrawable 0x7f01006e
+int attr actionModePopupWindowStyle 0x7f010073
+int attr actionModeSelectAllDrawable 0x7f01006f
+int attr actionModeShareDrawable 0x7f010070
+int attr actionModeSplitBackground 0x7f01006a
+int attr actionModeStyle 0x7f010067
+int attr actionModeWebSearchDrawable 0x7f010072
+int attr actionOverflowButtonStyle 0x7f01005b
+int attr actionOverflowMenuStyle 0x7f01005c
+int attr actionProviderClass 0x7f010036
+int attr actionViewClass 0x7f010035
+int attr activityChooserViewStyle 0x7f010085
+int attr alertDialogButtonGroupStyle 0x7f0100a8
+int attr alertDialogCenterButtons 0x7f0100a9
+int attr alertDialogStyle 0x7f0100a7
+int attr alertDialogTheme 0x7f0100aa
+int attr allowStacking 0x7f010025
+int attr arrowHeadLength 0x7f01002c
+int attr arrowShaftLength 0x7f01002d
+int attr autoCompleteTextViewStyle 0x7f0100af
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100cc
+int attr backgroundTintMode 0x7f0100cd
+int attr barLength 0x7f01002e
+int attr borderlessButtonStyle 0x7f010082
+int attr buttonBarButtonStyle 0x7f01007f
+int attr buttonBarNegativeButtonStyle 0x7f0100ad
+int attr buttonBarNeutralButtonStyle 0x7f0100ae
+int attr buttonBarPositiveButtonStyle 0x7f0100ac
+int attr buttonBarStyle 0x7f01007e
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100b0
+int attr buttonStyleSmall 0x7f0100b1
+int attr buttonTint 0x7f010026
+int attr buttonTintMode 0x7f010027
+int attr checkboxStyle 0x7f0100b2
+int attr checkedTextViewStyle 0x7f0100b3
+int attr closeIcon 0x7f01003e
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100c3
+int attr collapseIcon 0x7f0100c2
+int attr color 0x7f010028
+int attr colorAccent 0x7f0100a0
+int attr colorButtonNormal 0x7f0100a4
+int attr colorControlActivated 0x7f0100a2
+int attr colorControlHighlight 0x7f0100a3
+int attr colorControlNormal 0x7f0100a1
+int attr colorPrimary 0x7f01009e
+int attr colorPrimaryDark 0x7f01009f
+int attr colorSwitchThumbNormal 0x7f0100a5
+int attr commitIcon 0x7f010043
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f0100a6
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f01003d
+int attr dialogPreferredPadding 0x7f010077
+int attr dialogTheme 0x7f010076
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f010084
+int attr dividerPadding 0x7f010032
+int attr dividerVertical 0x7f010083
+int attr drawableSize 0x7f01002a
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010096
+int attr dropdownListPreferredItemHeight 0x7f01007a
+int attr editTextBackground 0x7f01008b
+int attr editTextColor 0x7f01008a
+int attr editTextStyle 0x7f0100b4
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr gapBetweenBars 0x7f01002b
+int attr goIcon 0x7f01003f
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f01007c
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f01003b
+int attr imageButtonStyle 0x7f01008c
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f01003a
+int attr listChoiceBackgroundIndicator 0x7f01009d
+int attr listDividerAlertDialog 0x7f010078
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010097
+int attr listPreferredItemHeight 0x7f010091
+int attr listPreferredItemHeightLarge 0x7f010093
+int attr listPreferredItemHeightSmall 0x7f010092
+int attr listPreferredItemPaddingLeft 0x7f010094
+int attr listPreferredItemPaddingRight 0x7f010095
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100c6
+int attr maxButtonHeight 0x7f0100c1
+int attr measureWithLargestChild 0x7f010030
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100c5
+int attr navigationIcon 0x7f0100c4
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010038
+int attr paddingEnd 0x7f0100ca
+int attr paddingStart 0x7f0100c9
+int attr panelBackground 0x7f01009a
+int attr panelMenuListTheme 0x7f01009c
+int attr panelMenuListWidth 0x7f01009b
+int attr popupMenuStyle 0x7f010088
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010089
+int attr preserveIconSpacing 0x7f010037
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f010045
+int attr queryHint 0x7f01003c
+int attr radioButtonStyle 0x7f0100b5
+int attr ratingBarStyle 0x7f0100b6
+int attr searchHintIcon 0x7f010041
+int attr searchIcon 0x7f010040
+int attr searchViewStyle 0x7f010090
+int attr seekBarStyle 0x7f0100b7
+int attr selectableItemBackground 0x7f010080
+int attr selectableItemBackgroundBorderless 0x7f010081
+int attr showAsAction 0x7f010033
+int attr showDividers 0x7f010031
+int attr showText 0x7f01004d
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010029
+int attr spinnerDropDownItemStyle 0x7f01007b
+int attr spinnerStyle 0x7f0100b8
+int attr splitTrack 0x7f01004c
+int attr state_above_anchor 0x7f010039
+int attr submitBackground 0x7f010046
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100bb
+int attr subtitleTextColor 0x7f0100c8
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f010044
+int attr switchMinWidth 0x7f01004a
+int attr switchPadding 0x7f01004b
+int attr switchStyle 0x7f0100b9
+int attr switchTextAppearance 0x7f010049
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f010074
+int attr textAppearanceListItem 0x7f010098
+int attr textAppearanceListItemSmall 0x7f010099
+int attr textAppearanceSearchResultSubtitle 0x7f01008e
+int attr textAppearanceSearchResultTitle 0x7f01008d
+int attr textAppearanceSmallPopupMenu 0x7f010075
+int attr textColorAlertDialogListItem 0x7f0100ab
+int attr textColorSearchUrl 0x7f01008f
+int attr theme 0x7f0100cb
+int attr thickness 0x7f01002f
+int attr thumbTextPadding 0x7f010048
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100c0
+int attr titleMarginEnd 0x7f0100be
+int attr titleMarginStart 0x7f0100bd
+int attr titleMarginTop 0x7f0100bf
+int attr titleMargins 0x7f0100bc
+int attr titleTextAppearance 0x7f0100ba
+int attr titleTextColor 0x7f0100c7
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f010087
+int attr toolbarStyle 0x7f010086
+int attr track 0x7f010047
+int attr voiceIcon 0x7f010042
+int attr windowActionBar 0x7f01004e
+int attr windowActionBarOverlay 0x7f010050
+int attr windowActionModeOverlay 0x7f010051
+int attr windowFixedHeightMajor 0x7f010055
+int attr windowFixedHeightMinor 0x7f010053
+int attr windowFixedWidthMajor 0x7f010052
+int attr windowFixedWidthMinor 0x7f010054
+int attr windowMinWidthMajor 0x7f010056
+int attr windowMinWidthMinor 0x7f010057
+int attr windowNoTitle 0x7f01004f
+int bool abc_action_bar_embed_tabs 0x7f060003
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
+int bool abc_allow_stacked_button_bar 0x7f060000
+int bool abc_config_actionMenuItemAllCaps 0x7f060005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
+int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
+int color abc_background_cache_hint_selector_material_dark 0x7f0a003a
+int color abc_background_cache_hint_selector_material_light 0x7f0a003b
+int color abc_color_highlight_material 0x7f0a003c
+int color abc_input_method_navigation_guard 0x7f0a0000
+int color abc_primary_text_disable_only_material_dark 0x7f0a003d
+int color abc_primary_text_disable_only_material_light 0x7f0a003e
+int color abc_primary_text_material_dark 0x7f0a003f
+int color abc_primary_text_material_light 0x7f0a0040
+int color abc_search_url_text 0x7f0a0041
+int color abc_search_url_text_normal 0x7f0a0001
+int color abc_search_url_text_pressed 0x7f0a0002
+int color abc_search_url_text_selected 0x7f0a0003
+int color abc_secondary_text_material_dark 0x7f0a0042
+int color abc_secondary_text_material_light 0x7f0a0043
+int color accent_material_dark 0x7f0a0004
+int color accent_material_light 0x7f0a0005
+int color background_floating_material_dark 0x7f0a0006
+int color background_floating_material_light 0x7f0a0007
+int color background_material_dark 0x7f0a0008
+int color background_material_light 0x7f0a0009
+int color bright_foreground_disabled_material_dark 0x7f0a000a
+int color bright_foreground_disabled_material_light 0x7f0a000b
+int color bright_foreground_inverse_material_dark 0x7f0a000c
+int color bright_foreground_inverse_material_light 0x7f0a000d
+int color bright_foreground_material_dark 0x7f0a000e
+int color bright_foreground_material_light 0x7f0a000f
+int color button_material_dark 0x7f0a0010
+int color button_material_light 0x7f0a0011
+int color dim_foreground_disabled_material_dark 0x7f0a0012
+int color dim_foreground_disabled_material_light 0x7f0a0013
+int color dim_foreground_material_dark 0x7f0a0014
+int color dim_foreground_material_light 0x7f0a0015
+int color foreground_material_dark 0x7f0a0016
+int color foreground_material_light 0x7f0a0017
+int color highlighted_text_material_dark 0x7f0a0018
+int color highlighted_text_material_light 0x7f0a0019
+int color hint_foreground_material_dark 0x7f0a001a
+int color hint_foreground_material_light 0x7f0a001b
+int color material_blue_grey_800 0x7f0a001c
+int color material_blue_grey_900 0x7f0a001d
+int color material_blue_grey_950 0x7f0a001e
+int color material_deep_teal_200 0x7f0a001f
+int color material_deep_teal_500 0x7f0a0020
+int color material_grey_100 0x7f0a0021
+int color material_grey_300 0x7f0a0022
+int color material_grey_50 0x7f0a0023
+int color material_grey_600 0x7f0a0024
+int color material_grey_800 0x7f0a0025
+int color material_grey_850 0x7f0a0026
+int color material_grey_900 0x7f0a0027
+int color primary_dark_material_dark 0x7f0a0028
+int color primary_dark_material_light 0x7f0a0029
+int color primary_material_dark 0x7f0a002a
+int color primary_material_light 0x7f0a002b
+int color primary_text_default_material_dark 0x7f0a002c
+int color primary_text_default_material_light 0x7f0a002d
+int color primary_text_disabled_material_dark 0x7f0a002e
+int color primary_text_disabled_material_light 0x7f0a002f
+int color ripple_material_dark 0x7f0a0030
+int color ripple_material_light 0x7f0a0031
+int color secondary_text_default_material_dark 0x7f0a0032
+int color secondary_text_default_material_light 0x7f0a0033
+int color secondary_text_disabled_material_dark 0x7f0a0034
+int color secondary_text_disabled_material_light 0x7f0a0035
+int color switch_thumb_disabled_material_dark 0x7f0a0036
+int color switch_thumb_disabled_material_light 0x7f0a0037
+int color switch_thumb_material_dark 0x7f0a0044
+int color switch_thumb_material_light 0x7f0a0045
+int color switch_thumb_normal_material_dark 0x7f0a0038
+int color switch_thumb_normal_material_light 0x7f0a0039
+int dimen abc_action_bar_content_inset_material 0x7f07000d
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_end_material 0x7f07000e
+int dimen abc_action_bar_default_padding_start_material 0x7f07000f
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070012
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070013
+int dimen abc_action_bar_progress_bar_size 0x7f070002
+int dimen abc_action_bar_stacked_max_height 0x7f070014
+int dimen abc_action_bar_stacked_tab_max_width 0x7f070015
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070016
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f070017
+int dimen abc_action_button_min_height_material 0x7f070018
+int dimen abc_action_button_min_width_material 0x7f070019
+int dimen abc_action_button_min_width_overflow_material 0x7f07001a
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f07001b
+int dimen abc_button_inset_vertical_material 0x7f07001c
+int dimen abc_button_padding_horizontal_material 0x7f07001d
+int dimen abc_button_padding_vertical_material 0x7f07001e
+int dimen abc_config_prefDialogWidth 0x7f070005
+int dimen abc_control_corner_material 0x7f07001f
+int dimen abc_control_inset_material 0x7f070020
+int dimen abc_control_padding_material 0x7f070021
+int dimen abc_dialog_fixed_height_major 0x7f070006
+int dimen abc_dialog_fixed_height_minor 0x7f070007
+int dimen abc_dialog_fixed_width_major 0x7f070008
+int dimen abc_dialog_fixed_width_minor 0x7f070009
+int dimen abc_dialog_list_padding_vertical_material 0x7f070022
+int dimen abc_dialog_min_width_major 0x7f07000a
+int dimen abc_dialog_min_width_minor 0x7f07000b
+int dimen abc_dialog_padding_material 0x7f070023
+int dimen abc_dialog_padding_top_material 0x7f070024
+int dimen abc_disabled_alpha_material_dark 0x7f070025
+int dimen abc_disabled_alpha_material_light 0x7f070026
+int dimen abc_dropdownitem_icon_width 0x7f070027
+int dimen abc_dropdownitem_text_padding_left 0x7f070028
+int dimen abc_dropdownitem_text_padding_right 0x7f070029
+int dimen abc_edit_text_inset_bottom_material 0x7f07002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
+int dimen abc_edit_text_inset_top_material 0x7f07002c
+int dimen abc_floating_window_z 0x7f07002d
+int dimen abc_list_item_padding_horizontal_material 0x7f07002e
+int dimen abc_panel_menu_list_width 0x7f07002f
+int dimen abc_search_view_preferred_width 0x7f070030
+int dimen abc_search_view_text_min_width 0x7f07000c
+int dimen abc_seekbar_track_background_height_material 0x7f070031
+int dimen abc_seekbar_track_progress_height_material 0x7f070032
+int dimen abc_select_dialog_padding_start_material 0x7f070033
+int dimen abc_switch_padding 0x7f070010
+int dimen abc_text_size_body_1_material 0x7f070034
+int dimen abc_text_size_body_2_material 0x7f070035
+int dimen abc_text_size_button_material 0x7f070036
+int dimen abc_text_size_caption_material 0x7f070037
+int dimen abc_text_size_display_1_material 0x7f070038
+int dimen abc_text_size_display_2_material 0x7f070039
+int dimen abc_text_size_display_3_material 0x7f07003a
+int dimen abc_text_size_display_4_material 0x7f07003b
+int dimen abc_text_size_headline_material 0x7f07003c
+int dimen abc_text_size_large_material 0x7f07003d
+int dimen abc_text_size_medium_material 0x7f07003e
+int dimen abc_text_size_menu_material 0x7f07003f
+int dimen abc_text_size_small_material 0x7f070040
+int dimen abc_text_size_subhead_material 0x7f070041
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
+int dimen abc_text_size_title_material 0x7f070042
+int dimen abc_text_size_title_material_toolbar 0x7f070004
+int dimen disabled_alpha_material_dark 0x7f070043
+int dimen disabled_alpha_material_light 0x7f070044
+int dimen highlight_alpha_material_colored 0x7f070045
+int dimen highlight_alpha_material_dark 0x7f070046
+int dimen highlight_alpha_material_light 0x7f070047
+int dimen notification_large_icon_height 0x7f070048
+int dimen notification_large_icon_width 0x7f070049
+int dimen notification_subtext_size 0x7f07004a
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
+int drawable abc_item_background_holo_dark 0x7f020022
+int drawable abc_item_background_holo_light 0x7f020023
+int drawable abc_list_divider_mtrl_alpha 0x7f020024
+int drawable abc_list_focused_holo 0x7f020025
+int drawable abc_list_longpressed_holo 0x7f020026
+int drawable abc_list_pressed_holo_dark 0x7f020027
+int drawable abc_list_pressed_holo_light 0x7f020028
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
+int drawable abc_list_selector_disabled_holo_light 0x7f02002c
+int drawable abc_list_selector_holo_dark 0x7f02002d
+int drawable abc_list_selector_holo_light 0x7f02002e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
+int drawable abc_popup_background_mtrl_mult 0x7f020030
+int drawable abc_ratingbar_full_material 0x7f020031
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020032
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020033
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f020034
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f020035
+int drawable abc_scrubber_track_mtrl_alpha 0x7f020036
+int drawable abc_seekbar_thumb_material 0x7f020037
+int drawable abc_seekbar_track_material 0x7f020038
+int drawable abc_spinner_mtrl_am_alpha 0x7f020039
+int drawable abc_spinner_textfield_background_material 0x7f02003a
+int drawable abc_switch_thumb_material 0x7f02003b
+int drawable abc_switch_track_mtrl_alpha 0x7f02003c
+int drawable abc_tab_indicator_material 0x7f02003d
+int drawable abc_tab_indicator_mtrl_alpha 0x7f02003e
+int drawable abc_text_cursor_material 0x7f02003f
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020040
+int drawable abc_textfield_default_mtrl_alpha 0x7f020041
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020042
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020043
+int drawable abc_textfield_search_material 0x7f020044
+int drawable notification_template_icon_bg 0x7f020045
+int id action0 0x7f0b0050
+int id action_bar 0x7f0b0041
+int id action_bar_activity_content 0x7f0b0000
+int id action_bar_container 0x7f0b0040
+int id action_bar_root 0x7f0b003c
+int id action_bar_spinner 0x7f0b0001
+int id action_bar_subtitle 0x7f0b0022
+int id action_bar_title 0x7f0b0021
+int id action_context_bar 0x7f0b0042
+int id action_divider 0x7f0b0054
+int id action_menu_divider 0x7f0b0002
+int id action_menu_presenter 0x7f0b0003
+int id action_mode_bar 0x7f0b003e
+int id action_mode_bar_stub 0x7f0b003d
+int id action_mode_close_button 0x7f0b0023
+int id activity_chooser_view_content 0x7f0b0024
+int id alertTitle 0x7f0b0030
+int id always 0x7f0b001b
+int id beginning 0x7f0b0018
+int id buttonPanel 0x7f0b002b
+int id cancel_action 0x7f0b0051
+int id checkbox 0x7f0b0039
+int id chronometer 0x7f0b0057
+int id collapseActionView 0x7f0b001c
+int id contentPanel 0x7f0b0031
+int id custom 0x7f0b0037
+int id customPanel 0x7f0b0036
+int id decor_content_parent 0x7f0b003f
+int id default_activity_button 0x7f0b0027
+int id disableHome 0x7f0b000c
+int id edit_query 0x7f0b0043
+int id end 0x7f0b0019
+int id end_padder 0x7f0b005c
+int id expand_activities_button 0x7f0b0025
+int id expanded_menu 0x7f0b0038
+int id home 0x7f0b0004
+int id homeAsUp 0x7f0b000d
+int id icon 0x7f0b0029
+int id ifRoom 0x7f0b001d
+int id image 0x7f0b0026
+int id info 0x7f0b005b
+int id line1 0x7f0b0055
+int id line3 0x7f0b0059
+int id listMode 0x7f0b0009
+int id list_item 0x7f0b0028
+int id media_actions 0x7f0b0053
+int id middle 0x7f0b001a
+int id multiply 0x7f0b0013
+int id never 0x7f0b001e
+int id none 0x7f0b000e
+int id normal 0x7f0b000a
+int id parentPanel 0x7f0b002d
+int id progress_circular 0x7f0b0005
+int id progress_horizontal 0x7f0b0006
+int id radio 0x7f0b003b
+int id screen 0x7f0b0014
+int id scrollIndicatorDown 0x7f0b0035
+int id scrollIndicatorUp 0x7f0b0032
+int id scrollView 0x7f0b0033
+int id search_badge 0x7f0b0045
+int id search_bar 0x7f0b0044
+int id search_button 0x7f0b0046
+int id search_close_btn 0x7f0b004b
+int id search_edit_frame 0x7f0b0047
+int id search_go_btn 0x7f0b004d
+int id search_mag_icon 0x7f0b0048
+int id search_plate 0x7f0b0049
+int id search_src_text 0x7f0b004a
+int id search_voice_btn 0x7f0b004e
+int id select_dialog_listview 0x7f0b004f
+int id shortcut 0x7f0b003a
+int id showCustom 0x7f0b000f
+int id showHome 0x7f0b0010
+int id showTitle 0x7f0b0011
+int id spacer 0x7f0b002c
+int id split_action_bar 0x7f0b0007
+int id src_atop 0x7f0b0015
+int id src_in 0x7f0b0016
+int id src_over 0x7f0b0017
+int id status_bar_latest_event_content 0x7f0b0052
+int id submit_area 0x7f0b004c
+int id tabMode 0x7f0b000b
+int id text 0x7f0b005a
+int id text2 0x7f0b0058
+int id textSpacerNoButtons 0x7f0b0034
+int id time 0x7f0b0056
+int id title 0x7f0b002a
+int id title_template 0x7f0b002f
+int id topPanel 0x7f0b002e
+int id up 0x7f0b0008
+int id useLogo 0x7f0b0012
+int id withText 0x7f0b001f
+int id wrap_content 0x7f0b0020
+int integer abc_config_activityDefaultDur 0x7f090001
+int integer abc_config_activityShortDur 0x7f090002
+int integer abc_max_action_buttons 0x7f090000
+int integer cancel_button_image_alpha 0x7f090003
+int integer status_bar_notification_info_maxnum 0x7f090004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_button_bar_material 0x7f030009
+int layout abc_alert_dialog_material 0x7f03000a
+int layout abc_dialog_title_material 0x7f03000b
+int layout abc_expanded_menu_layout 0x7f03000c
+int layout abc_list_menu_item_checkbox 0x7f03000d
+int layout abc_list_menu_item_icon 0x7f03000e
+int layout abc_list_menu_item_layout 0x7f03000f
+int layout abc_list_menu_item_radio 0x7f030010
+int layout abc_popup_menu_item_layout 0x7f030011
+int layout abc_screen_content_include 0x7f030012
+int layout abc_screen_simple 0x7f030013
+int layout abc_screen_simple_overlay_action_mode 0x7f030014
+int layout abc_screen_toolbar 0x7f030015
+int layout abc_search_dropdown_item_icons_2line 0x7f030016
+int layout abc_search_view 0x7f030017
+int layout abc_select_dialog_material 0x7f030018
+int layout notification_media_action 0x7f030019
+int layout notification_media_cancel_action 0x7f03001a
+int layout notification_template_big_media 0x7f03001b
+int layout notification_template_big_media_narrow 0x7f03001c
+int layout notification_template_lines 0x7f03001d
+int layout notification_template_media 0x7f03001e
+int layout notification_template_part_chronometer 0x7f03001f
+int layout notification_template_part_time 0x7f030020
+int layout select_dialog_item_material 0x7f030021
+int layout select_dialog_multichoice_material 0x7f030022
+int layout select_dialog_singlechoice_material 0x7f030023
+int layout support_simple_spinner_dropdown_item 0x7f030024
+int string abc_action_bar_home_description 0x7f050000
+int string abc_action_bar_home_description_format 0x7f050001
+int string abc_action_bar_home_subtitle_description_format 0x7f050002
+int string abc_action_bar_up_description 0x7f050003
+int string abc_action_menu_overflow_description 0x7f050004
+int string abc_action_mode_done 0x7f050005
+int string abc_activity_chooser_view_see_all 0x7f050006
+int string abc_activitychooserview_choose_application 0x7f050007
+int string abc_capital_off 0x7f050008
+int string abc_capital_on 0x7f050009
+int string abc_search_hint 0x7f05000a
+int string abc_searchview_description_clear 0x7f05000b
+int string abc_searchview_description_query 0x7f05000c
+int string abc_searchview_description_search 0x7f05000d
+int string abc_searchview_description_submit 0x7f05000e
+int string abc_searchview_description_voice 0x7f05000f
+int string abc_shareactionprovider_share_with 0x7f050010
+int string abc_shareactionprovider_share_with_application 0x7f050011
+int string abc_toolbar_collapse_description 0x7f050012
+int string app_name 0x7f050014
+int string status_bar_notification_info_overflow 0x7f050013
+int style AlertDialog_AppCompat 0x7f08007d
+int style AlertDialog_AppCompat_Light 0x7f08007e
+int style Animation_AppCompat_Dialog 0x7f08007f
+int style Animation_AppCompat_DropDownUp 0x7f080080
+int style Base_AlertDialog_AppCompat 0x7f080081
+int style Base_AlertDialog_AppCompat_Light 0x7f080082
+int style Base_Animation_AppCompat_Dialog 0x7f080083
+int style Base_Animation_AppCompat_DropDownUp 0x7f080084
+int style Base_DialogWindowTitle_AppCompat 0x7f080085
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f080086
+int style Base_TextAppearance_AppCompat 0x7f08002f
+int style Base_TextAppearance_AppCompat_Body1 0x7f080030
+int style Base_TextAppearance_AppCompat_Body2 0x7f080031
+int style Base_TextAppearance_AppCompat_Button 0x7f080019
+int style Base_TextAppearance_AppCompat_Caption 0x7f080032
+int style Base_TextAppearance_AppCompat_Display1 0x7f080033
+int style Base_TextAppearance_AppCompat_Display2 0x7f080034
+int style Base_TextAppearance_AppCompat_Display3 0x7f080035
+int style Base_TextAppearance_AppCompat_Display4 0x7f080036
+int style Base_TextAppearance_AppCompat_Headline 0x7f080037
+int style Base_TextAppearance_AppCompat_Inverse 0x7f080004
+int style Base_TextAppearance_AppCompat_Large 0x7f080038
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080005
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080039
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f08003a
+int style Base_TextAppearance_AppCompat_Medium 0x7f08003b
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080006
+int style Base_TextAppearance_AppCompat_Menu 0x7f08003c
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f080087
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003d
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003e
+int style Base_TextAppearance_AppCompat_Small 0x7f08003f
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080007
+int style Base_TextAppearance_AppCompat_Subhead 0x7f080040
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080008
+int style Base_TextAppearance_AppCompat_Title 0x7f080041
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080009
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080044
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080045
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080046
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080047
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080048
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080049
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080079
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080088
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f08004b
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004c
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004d
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080089
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004e
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004f
+int style Base_Theme_AppCompat 0x7f080050
+int style Base_Theme_AppCompat_CompactMenu 0x7f08008a
+int style Base_Theme_AppCompat_Dialog 0x7f08000a
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f08008b
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008c
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008d
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
+int style Base_Theme_AppCompat_Light 0x7f080051
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008e
+int style Base_Theme_AppCompat_Light_Dialog 0x7f08000b
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008f
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f080090
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f080091
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
+int style Base_ThemeOverlay_AppCompat 0x7f080092
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080093
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f080094
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080095
+int style Base_ThemeOverlay_AppCompat_Light 0x7f080096
+int style Base_V11_Theme_AppCompat_Dialog 0x7f08000c
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000d
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080015
+int style Base_V12_Widget_AppCompat_EditText 0x7f080016
+int style Base_V21_Theme_AppCompat 0x7f080052
+int style Base_V21_Theme_AppCompat_Dialog 0x7f080053
+int style Base_V21_Theme_AppCompat_Light 0x7f080054
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080055
+int style Base_V22_Theme_AppCompat 0x7f080077
+int style Base_V22_Theme_AppCompat_Light 0x7f080078
+int style Base_V23_Theme_AppCompat 0x7f08007a
+int style Base_V23_Theme_AppCompat_Light 0x7f08007b
+int style Base_V7_Theme_AppCompat 0x7f080097
+int style Base_V7_Theme_AppCompat_Dialog 0x7f080098
+int style Base_V7_Theme_AppCompat_Light 0x7f080099
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f08009a
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f08009b
+int style Base_V7_Widget_AppCompat_EditText 0x7f08009c
+int style Base_Widget_AppCompat_ActionBar 0x7f08009d
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009e
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009f
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080056
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080057
+int style Base_Widget_AppCompat_ActionButton 0x7f080058
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080059
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f08005a
+int style Base_Widget_AppCompat_ActionMode 0x7f0800a0
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800a1
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080017
+int style Base_Widget_AppCompat_Button 0x7f08005b
+int style Base_Widget_AppCompat_Button_Borderless 0x7f08005c
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005d
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a2
+int style Base_Widget_AppCompat_Button_Colored 0x7f08007c
+int style Base_Widget_AppCompat_Button_Small 0x7f08005e
+int style Base_Widget_AppCompat_ButtonBar 0x7f08005f
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a3
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080060
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080061
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a4
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a5
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080062
+int style Base_Widget_AppCompat_EditText 0x7f080018
+int style Base_Widget_AppCompat_ImageButton 0x7f080063
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a6
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a7
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a8
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080064
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080065
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080066
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080067
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080068
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f080069
+int style Base_Widget_AppCompat_ListView 0x7f08006a
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f08006b
+int style Base_Widget_AppCompat_ListView_Menu 0x7f08006c
+int style Base_Widget_AppCompat_PopupMenu 0x7f08006d
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006e
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800a9
+int style Base_Widget_AppCompat_ProgressBar 0x7f08000e
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000f
+int style Base_Widget_AppCompat_RatingBar 0x7f08006f
+int style Base_Widget_AppCompat_SearchView 0x7f0800aa
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800ab
+int style Base_Widget_AppCompat_SeekBar 0x7f080070
+int style Base_Widget_AppCompat_Spinner 0x7f080071
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080003
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080072
+int style Base_Widget_AppCompat_Toolbar 0x7f0800ac
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080073
+int style Platform_AppCompat 0x7f080010
+int style Platform_AppCompat_Light 0x7f080011
+int style Platform_ThemeOverlay_AppCompat 0x7f080074
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080075
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f080076
+int style Platform_V11_AppCompat 0x7f080012
+int style Platform_V11_AppCompat_Light 0x7f080013
+int style Platform_V14_AppCompat 0x7f08001a
+int style Platform_V14_AppCompat_Light 0x7f08001b
+int style Platform_Widget_AppCompat_Spinner 0x7f080014
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080021
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f08002d
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f08002e
+int style TextAppearance_AppCompat 0x7f0800ad
+int style TextAppearance_AppCompat_Body1 0x7f0800ae
+int style TextAppearance_AppCompat_Body2 0x7f0800af
+int style TextAppearance_AppCompat_Button 0x7f0800b0
+int style TextAppearance_AppCompat_Caption 0x7f0800b1
+int style TextAppearance_AppCompat_Display1 0x7f0800b2
+int style TextAppearance_AppCompat_Display2 0x7f0800b3
+int style TextAppearance_AppCompat_Display3 0x7f0800b4
+int style TextAppearance_AppCompat_Display4 0x7f0800b5
+int style TextAppearance_AppCompat_Headline 0x7f0800b6
+int style TextAppearance_AppCompat_Inverse 0x7f0800b7
+int style TextAppearance_AppCompat_Large 0x7f0800b8
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800b9
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800ba
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800bb
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800bc
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800bd
+int style TextAppearance_AppCompat_Medium 0x7f0800be
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800bf
+int style TextAppearance_AppCompat_Menu 0x7f0800c0
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800c1
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800c2
+int style TextAppearance_AppCompat_Small 0x7f0800c3
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800c4
+int style TextAppearance_AppCompat_Subhead 0x7f0800c5
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800c6
+int style TextAppearance_AppCompat_Title 0x7f0800c7
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800c8
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c9
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800ca
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800cb
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800cc
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800cd
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800ce
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800cf
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800d0
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800d1
+int style TextAppearance_AppCompat_Widget_Button 0x7f0800d2
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800d3
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800d4
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800d5
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800d6
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800d7
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800d8
+int style TextAppearance_StatusBar_EventContent 0x7f08001c
+int style TextAppearance_StatusBar_EventContent_Info 0x7f08001d
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001e
+int style TextAppearance_StatusBar_EventContent_Time 0x7f08001f
+int style TextAppearance_StatusBar_EventContent_Title 0x7f080020
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800d9
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800da
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800db
+int style Theme_AppCompat 0x7f0800dc
+int style Theme_AppCompat_CompactMenu 0x7f0800dd
+int style Theme_AppCompat_Dialog 0x7f0800de
+int style Theme_AppCompat_Dialog_Alert 0x7f0800df
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800e0
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800e1
+int style Theme_AppCompat_Light 0x7f0800e2
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800e3
+int style Theme_AppCompat_Light_Dialog 0x7f0800e4
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800e5
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800e6
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800e7
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800e8
+int style Theme_AppCompat_NoActionBar 0x7f0800e9
+int style ThemeOverlay_AppCompat 0x7f0800ea
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0800eb
+int style ThemeOverlay_AppCompat_Dark 0x7f0800ec
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800ed
+int style ThemeOverlay_AppCompat_Light 0x7f0800ee
+int style Widget_AppCompat_ActionBar 0x7f0800ef
+int style Widget_AppCompat_ActionBar_Solid 0x7f0800f0
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0800f1
+int style Widget_AppCompat_ActionBar_TabText 0x7f0800f2
+int style Widget_AppCompat_ActionBar_TabView 0x7f0800f3
+int style Widget_AppCompat_ActionButton 0x7f0800f4
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800f5
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0800f6
+int style Widget_AppCompat_ActionMode 0x7f0800f7
+int style Widget_AppCompat_ActivityChooserView 0x7f0800f8
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0800f9
+int style Widget_AppCompat_Button 0x7f0800fa
+int style Widget_AppCompat_Button_Borderless 0x7f0800fb
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800fc
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800fd
+int style Widget_AppCompat_Button_Colored 0x7f0800fe
+int style Widget_AppCompat_Button_Small 0x7f0800ff
+int style Widget_AppCompat_ButtonBar 0x7f080100
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080101
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080102
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080103
+int style Widget_AppCompat_CompoundButton_Switch 0x7f080104
+int style Widget_AppCompat_DrawerArrowToggle 0x7f080105
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f080106
+int style Widget_AppCompat_EditText 0x7f080107
+int style Widget_AppCompat_ImageButton 0x7f080108
+int style Widget_AppCompat_Light_ActionBar 0x7f080109
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f08010a
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08010b
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08010c
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08010d
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f08010e
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08010f
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080110
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080111
+int style Widget_AppCompat_Light_ActionButton 0x7f080112
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080113
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080114
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080115
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f080116
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080117
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080118
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f080119
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f08011a
+int style Widget_AppCompat_Light_PopupMenu 0x7f08011b
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08011c
+int style Widget_AppCompat_Light_SearchView 0x7f08011d
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f08011e
+int style Widget_AppCompat_ListPopupWindow 0x7f08011f
+int style Widget_AppCompat_ListView 0x7f080120
+int style Widget_AppCompat_ListView_DropDown 0x7f080121
+int style Widget_AppCompat_ListView_Menu 0x7f080122
+int style Widget_AppCompat_PopupMenu 0x7f080123
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f080124
+int style Widget_AppCompat_PopupWindow 0x7f080125
+int style Widget_AppCompat_ProgressBar 0x7f080126
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080127
+int style Widget_AppCompat_RatingBar 0x7f080128
+int style Widget_AppCompat_SearchView 0x7f080129
+int style Widget_AppCompat_SearchView_ActionBar 0x7f08012a
+int style Widget_AppCompat_SeekBar 0x7f08012b
+int style Widget_AppCompat_Spinner 0x7f08012c
+int style Widget_AppCompat_Spinner_DropDown 0x7f08012d
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08012e
+int style Widget_AppCompat_Spinner_Underlined 0x7f08012f
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f080130
+int style Widget_AppCompat_Toolbar 0x7f080131
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080132
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007c }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable ButtonBarLayout { 0x7f010025 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CompoundButton { 0x01010107, 0x7f010026, 0x7f010027 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010030, 0x7f010031, 0x7f010032 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010037 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010038 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010039 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 2
+int styleable Spinner_android_popupBackground 0
+int styleable Spinner_android_prompt 1
+int styleable Spinner_popupTheme 3
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 92
+int styleable Theme_alertDialogCenterButtons 93
+int styleable Theme_alertDialogStyle 91
+int styleable Theme_alertDialogTheme 94
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 99
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 97
+int styleable Theme_buttonBarNeutralButtonStyle 98
+int styleable Theme_buttonBarPositiveButtonStyle 96
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 100
+int styleable Theme_buttonStyleSmall 101
+int styleable Theme_checkboxStyle 102
+int styleable Theme_checkedTextViewStyle 103
+int styleable Theme_colorAccent 84
+int styleable Theme_colorButtonNormal 88
+int styleable Theme_colorControlActivated 86
+int styleable Theme_colorControlHighlight 87
+int styleable Theme_colorControlNormal 85
+int styleable Theme_colorPrimary 82
+int styleable Theme_colorPrimaryDark 83
+int styleable Theme_colorSwitchThumbNormal 89
+int styleable Theme_controlBackground 90
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 74
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 104
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_imageButtonStyle 64
+int styleable Theme_listChoiceBackgroundIndicator 81
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 75
+int styleable Theme_listPreferredItemHeight 69
+int styleable Theme_listPreferredItemHeightLarge 71
+int styleable Theme_listPreferredItemHeightSmall 70
+int styleable Theme_listPreferredItemPaddingLeft 72
+int styleable Theme_listPreferredItemPaddingRight 73
+int styleable Theme_panelBackground 78
+int styleable Theme_panelMenuListTheme 80
+int styleable Theme_panelMenuListWidth 79
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 105
+int styleable Theme_ratingBarStyle 106
+int styleable Theme_searchViewStyle 68
+int styleable Theme_seekBarStyle 107
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 108
+int styleable Theme_switchStyle 109
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 76
+int styleable Theme_textAppearanceListItemSmall 77
+int styleable Theme_textAppearanceSearchResultSubtitle 66
+int styleable Theme_textAppearanceSearchResultTitle 65
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 95
+int styleable Theme_textColorSearchUrl 67
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100cc, 0x7f0100cd }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/aapt/AndroidManifest.xml b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..f6377ae8b
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/aapt/AndroidManifest.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/jars/classes.jar b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/jars/classes.jar
new file mode 100644
index 000000000..8ec0dda1c
Binary files /dev/null and b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/jars/classes.jar differ
diff --git a/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/res/values/values.xml b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/res/values/values.xml
new file mode 100644
index 000000000..93d6fc204
--- /dev/null
+++ b/android/build/intermediates/exploded-aar/us.feras.mdv/markdownview/1.1.0/res/values/values.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ MarkdownView
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental-safeguard/release/tag.txt b/android/build/intermediates/incremental-safeguard/release/tag.txt
new file mode 100644
index 000000000..c01a13dc0
--- /dev/null
+++ b/android/build/intermediates/incremental-safeguard/release/tag.txt
@@ -0,0 +1 @@
+incremental task execution
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/compileDebugAidl/dependency.store b/android/build/intermediates/incremental/compileDebugAidl/dependency.store
new file mode 100644
index 000000000..8b8400dcf
Binary files /dev/null and b/android/build/intermediates/incremental/compileDebugAidl/dependency.store differ
diff --git a/android/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store b/android/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store
new file mode 100644
index 000000000..8b8400dcf
Binary files /dev/null and b/android/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store differ
diff --git a/android/build/intermediates/incremental/compileReleaseAidl/dependency.store b/android/build/intermediates/incremental/compileReleaseAidl/dependency.store
new file mode 100644
index 000000000..8b8400dcf
Binary files /dev/null and b/android/build/intermediates/incremental/compileReleaseAidl/dependency.store differ
diff --git a/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state
new file mode 100644
index 000000000..161d903df
Binary files /dev/null and b/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
diff --git a/android/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/android/build/intermediates/incremental/debug-mergeJniLibs/merge-state
new file mode 100644
index 000000000..e215c61f2
Binary files /dev/null and b/android/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
new file mode 100644
index 000000000..41f61b7ed
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
@@ -0,0 +1,532 @@
+#Wed Jan 03 12:10:57 BRST 2018
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_time.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_chronometer.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_track_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/side_nav_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_camera.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/menu/menu_imagepager.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_action_bar_item_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_manage.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_flash_on_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_header.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar_include.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/angle.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/angle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/round_button.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/round_button.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_content_include.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_done_all_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_text.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v24/ic_launcher_foreground.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/gallery_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/gallery_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout-sw600dp-v13/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_palette.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/button_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/button_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/tageditor_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/tageditor_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher_round.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_share.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_text_cursor_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_open_note_scanner.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_tv.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_tv.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_gift.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_gift.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media_narrow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_title.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_rocket.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_rocket.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_menu_tag.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_menu_tag.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_small_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_game.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_game.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_bottom_sheet_dialog.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/about_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/about_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_separator.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_monochrome.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_edit_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v23/abc_control_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_media.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_send.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_main.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_bell.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_bell.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_camera_green.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_camera_green.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_fullscreen_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_fullscreen_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_magnet.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_magnet.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color-v23/abc_color_highlight_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_subheader.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_menu_item_action_area.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_frame.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_star.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_star.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/design_snackbar_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_lines.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_launcher_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_launcher_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_find_in_page.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_find_in_page.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_cancel_action.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/layout_fullscreen_image.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/layout_fullscreen_image.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/design_fab_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/menu/menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/xml/settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/xml/settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_button_bar_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_action.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_slideshow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/angle.png
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml
new file mode 100644
index 000000000..8143ae04e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml
new file mode 100644
index 000000000..b81f93f78
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml
new file mode 100644
index 000000000..ef26d8550
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az-rAZ/values-az-rAZ.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 000000000..15769e10c
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml
new file mode 100644
index 000000000..05f19e4a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 000000000..db63cf3e9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "বন্ধ"
+ "চালু"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml
new file mode 100644
index 000000000..0aa3366e5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml
new file mode 100644
index 000000000..5787e5936
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,93 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ "999+"
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml
new file mode 100644
index 000000000..19786b8b9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,31 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml
new file mode 100644
index 000000000..e2b383555
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,93 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml
new file mode 100644
index 000000000..9980eb59a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,31 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..c5538c280
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..843ce164b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml
new file mode 100644
index 000000000..6f7ea5434
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,93 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "NO"
+ "SÍ"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ "+999"
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 000000000..fa9bc45ec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 000000000..66d5f977d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml
new file mode 100644
index 000000000..87ade66dd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb/values-fb.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml
new file mode 100644
index 000000000..1749ce012
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,31 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..a47b18eba
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml
new file mode 100644
index 000000000..623dbae15
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,93 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ ">999"
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 000000000..1ca55a9a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu-rIN/values-gu-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 000000000..ed6f52ca4
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml
new file mode 100644
index 000000000..2a6b31c51
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml
new file mode 100644
index 000000000..630e22c1f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml
new file mode 100644
index 000000000..496e87dec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml
new file mode 100644
index 000000000..75eb357ec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,31 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 000000000..302b221d7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml
new file mode 100644
index 000000000..fae86bef9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 000000000..51ffbca07
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 000000000..33d15d7e0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,93 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ "999+"
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml
new file mode 100644
index 000000000..d73f472cf
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml
new file mode 100644
index 000000000..a729bcdb9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,93 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ "999+"
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 000000000..a76c00f3d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 000000000..f95ae29bf
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 000000000..c3fee7678
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 000000000..cb0acab12
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml
new file mode 100644
index 000000000..288cd5ecb
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,31 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 000000000..0b8150f04
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml
new file mode 100644
index 000000000..aed434736
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,13 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..7c97842e6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ true
+ true
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+ 192dip
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA/values-lo-rLA.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 000000000..12501615e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 000000000..17a7c53c5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTI"
+ "ĮJUNGTI"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 000000000..df0fd7357
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK/values-mk-rMK.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 000000000..09742b98b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN/values-ml-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 000000000..49ecfc886
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN/values-mn-rMN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 000000000..997e79bc0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN/values-mr-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 000000000..7c3fe3632
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY/values-ms-rMY.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 000000000..5a84cf4b9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM/values-my-rMM.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 000000000..c05fc1857
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 000000000..9d7bdd897
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,31 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP/values-ne-rNP.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 000000000..a134235a5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml
new file mode 100644
index 000000000..10e0f86ff
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa-rIN/values-pa-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 000000000..c768d547a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml
new file mode 100644
index 000000000..126bdb482
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,31 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..880875cb5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,31 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml
new file mode 100644
index 000000000..0f4b71c46
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,93 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ "999+"
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml
new file mode 100644
index 000000000..5e9e27fc8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAȚI"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "˃999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 000000000..54c5dc57f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,31 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK/values-si-rLK.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 000000000..38729f97a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml
new file mode 100644
index 000000000..a0e5aa0da
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYP."
+ "ZAP."
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml
new file mode 100644
index 000000000..19eb9b77d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq-rAL/values-sq-rAL.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 000000000..38cfb1a9d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml
new file mode 100644
index 000000000..c674e1fe2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml
new file mode 100644
index 000000000..9da1a65f1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,31 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml
new file mode 100644
index 000000000..b80b09a00
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..6fd509602
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,24 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+ 160dp
+ 5
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN/values-ta-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 000000000..0b33d7c69
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "முடக்கு"
+ "இயக்கு"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN/values-te-rIN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 000000000..e0f4a9e2e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml
new file mode 100644
index 000000000..723086e62
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,31 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml
new file mode 100644
index 000000000..870d8ce82
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml
new file mode 100644
index 000000000..1458694c0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,31 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml
new file mode 100644
index 000000000..409e11bdd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK/values-ur-rPK.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 000000000..0d597a067
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 000000000..22c32f98d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml
new file mode 100644
index 000000000..d074ce996
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml
new file mode 100644
index 000000000..85e241664
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml
new file mode 100644
index 000000000..74d14088e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml
new file mode 100644
index 000000000..7239a2c83
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 000000000..f9f23d137
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml
new file mode 100644
index 000000000..4ac3595dd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml
new file mode 100644
index 000000000..7a225c9cc
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml
new file mode 100644
index 000000000..9d99f2d66
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,31 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 000000000..fd9dac9ba
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 000000000..5b7dcf655
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 000000000..dcd19ee3b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 000000000..4c058c26f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 000000000..966aafb2b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 000000000..98b3f8c26
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..3dcad8bdd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,12 @@
+
+
+ false
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..544f893f7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,31 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..2cb83ac26
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,31 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999 +"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f253d7f71
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,93 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml
new file mode 100644
index 000000000..d17fcf1da
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..aca27f91d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml
@@ -0,0 +1,1837 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #66000000
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #00E676
+ #00E676
+ #00C853
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #FFFF6E6E
+ #FFD50000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 16dp
+ 16dp
+ 4dp
+ 16dp
+ 256dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 0.30
+ 0.26
+ 16dp
+ 0.26
+ 0.20
+ 0.12
+ 20dp
+ 800dp
+ 120dp
+ 160dp
+ 16dp
+ 64dp
+ 64dp
+ 12dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 150
+ 127
+ 2
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ android.support.design.widget.BottomSheetBehavior
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ %1$d / %2$d
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ 999+
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
new file mode 100644
index 000000000..e6f668618
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
@@ -0,0 +1,1519 @@
+
+"संक्षिप्त करा""क्वेरी स्पष्ट करा""शोध""%s सह सामायिक करा""सर्व पहा""एक अॅप निवडा""%1$s, %2$s, %3$s""बंद""वर नेव्हिगेट करा""चालू""शोधा…""पूर्ण झाले""क्वेरी सबमिट करा""शोध क्वेरी""यांच्यासह सामायिक करा""मुख्यपृष्ठ नेव्हिगेट करा""व्हॉइस शोध""%1$s, %2$s""अधिक पर्याय""999+""भ्वाइस खोजी""%1$s, %2$s""एउटा अनुप्रयोग छान्नुहोस्""%1$s, %2$s, %3$s""जिज्ञासा पेस गर्नुहोस्""प्रश्न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""निष्क्रिय पार्नुहोस्""साझेदारी गर्नुहोस्...""%s सँग साझेदारी गर्नुहोस्""सबै हेर्नुहोस्""सक्रिय गर्नुहोस्""सम्पन्न भयो""खोज्नुहोस्...""खोज्नुहोस्""गृह खोज्नुहोस्""९९९+""माथि खोज्नुहोस्""संक्षिप्त पार्नुहोस्""थप विकल्पहरू""Пребарај барање""Движи се нагоре""Избери апликација""Пребарај""Сподели со""Пребарување…""Гласовно пребарување""%1$s, %2$s, %3$s""Собери""Готово""Движи се кон дома""ВКЛУЧЕНО""999+""ИСКЛУЧЕНО""Поднеси барање""Види ги сите""Повеќе опции""Исчисти барање""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""DESACTIVAR""Enviar consulta""Contraer""Máis opcións""Compartir con""Ver todas""Buscar…""ACTIVAR""Ir á páxina de inicio""%1$s, %2$s""Busca de voz"">999""%1$s, %2$s, %3$s""Escoller unha aplicación"8dp580dp20dp8dp64dp524dp16dp"Mai multe opțiuni""Căutați""Afișați-le pe toate""Interogare de căutare""Navigați la ecranul de pornire""Alegeți o aplicație""˃999""ACTIVAȚI""Terminat""Restrângeți""Ștergeți interogarea""DEZACTIVAȚI""Căutați…""Trimiteți la""Căutare vocală""Trimiteți interogarea""Trimiteți la %s""%1$s, %2$s""Navigați în sus""%1$s, %2$s, %3$s"0px"Orientohu për në shtëpi""Shpërnda publikisht me %s""Dërgo pyetjen""Kërkim me zë""Shpalos""U krye!""Kërko...""%1$s, %2$s""%1$s, %2$s, %3$s""JOAKTIV""999+""Zgjidh një aplikacion""Opsione të tjera""Kërko pyetjen""Ngjitu lart""Shikoji të gjitha""Pastro pyetjen""Kërko""Shpërnda publikisht me""AKTIV""Поисковый запрос""Отправить запрос""Открыть доступ пользователю %s""%1$s, %2$s"">999""ОТКЛ.""Поиск""Перейти на главный экран""ВКЛ.""Показать все""Голосовой поиск""Открыть доступ""Выбрать приложение""Поиск""%1$s, %2$s, %3$s""Удалить запрос""Перейти вверх""Свернуть""Готово""Другие параметры""Maghanap…""I-collapse""Ibahagi sa/kay %s""Tapos na""Mag-navigate patungo sa home""%1$s, %2$s, %3$s""I-ON""Paghahanap gamit ang boses""Ibahagi sa/kay""Pumili ng isang app""Mag-navigate pataas""Isumite ang query""%1$s, %2$s""I-OFF""Maghanap""Tingnan lahat""I-clear ang query""999+""Higit pang mga opsyon""Query sa paghahanap""Ուղարկել հարցումը""Տարածել""999+""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""ՄԻԱՑՎԱԾ""ԱՆՋԱՏՎԱԾ""Որոնել""Որոնում...""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Թաքցնել""Ընտրել ծրագիր""Տարածել ըստ %s""%1$s, %2$s""%1$s, %2$s, %3$s""提交查詢""%1$s - %2$s:%3$s""選擇分享對象""%1$s:%2$s""查看全部""選擇應用程式""清除查詢""更多選項""與「%s」分享""搜尋""搜尋查詢""語音搜尋""向上瀏覽""關閉""瀏覽首頁""完成""開啟""999+""收合""搜尋…""ప్రశ్నను క్లియర్ చేయి""ఆఫ్ చేయి""వీరితో భాగస్వామ్యం చేయి""పైకి నావిగేట్ చేయండి""అనువర్తనాన్ని ఎంచుకోండి""%1$s, %2$s, %3$s""%1$s, %2$s""కుదించండి""వాయిస్ శోధన""శోధించు""%sతో భాగస్వామ్యం చేయి""999+""అన్నీ చూడండి""ఆన్ చేయి""పూర్తయింది""శోధించు...""మరిన్ని ఎంపికలు""హోమ్కు నావిగేట్ చేయండి""ప్రశ్నని సమర్పించు""ప్రశ్న శోధించండి""%1$s ၊ %2$s ၊ %3$s""ပြီးဆုံးပါပြီ""အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ""ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်""အားလုံးကို ကြည့်ရန်""ရှာဖွေပါ...""အပေါ်သို့သွားရန်""ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်""%1$s၊ %2$s""ပိတ်""%s ကို မျှဝေပါရန်""ပိုမိုရွေးချယ်စရာများ""ရှာစရာ အချက်အလက်နေရာ""မျှဝေဖို့ ရွေးပါ""ရှာဖွေရန်""အသံဖြင့် ရှာဖွေခြင်း""ခေါက်ရန်""မူလနေရာကို သွားရန်""၉၉၉+""ဖွင့်""முடிந்தது""தேடல் வினவல்""முடக்கு""மேலே வழிசெலுத்து""%s உடன் பகிர்""இதனுடன் பகிர்""தேடு...""%1$s, %2$s, %3$s""முகப்பிற்கு வழிசெலுத்து""பயன்பாட்டைத் தேர்வுசெய்க""%1$s, %2$s""மேலும் விருப்பங்கள்""வினவலை அழி""வினவலைச் சமர்ப்பி""குரல் தேடல்""இயக்கு""தேடு""999+""எல்லாம் காட்டு""சுருக்கு""Scegli un\'applicazione""Comprimi""Ricerca vocale""Cancella query""Altre opzioni""%1$s, %2$s, %3$s""Fine""Condividi con %s""999+""Visualizza tutte""OFF""Vai in alto""Cerca…""Cerca""Invia query""Condividi con""Query di ricerca""%1$s, %2$s""Vai alla home page""ON""Selecciona una aplicació""Replega""Esborra la consulta""Cerca...""Envia la consulta""%1$s, %2$s""Navega cap a dalt""%1$s, %2$s, %3$s""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""+999""DESACTIVAT""Més opcions""ACTIVAT""Bilatu""Tolestu""Joan orri nagusira""Garbitu kontsulta""Bilatu…""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""DESAKTIBATUTA""Bidali kontsulta""%1$s, %2$s, %3$s""AKTIBATUTA""Ahots bidezko bilaketa""%1$s, %2$s""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""999+"4"%1$s, %2$s – %3$s""Vyhledat…""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""ZAPNUTO""Odeslat dotaz""Sdílet pomocí""Hotovo""Sbalit""Více možností""VYPNUTO""%1$s – %2$s""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""999+""%1$s, %2$s""Bununla paylaşın""999+""Sorğunu təmizlə""Axtarış""Yuxarı get""Hamısına baxın""Axtarış sorğusu""Tətbiq seçin""Səsli axtarış""Evə get""%1$s, %2$s, %3$s""Axtarış...""Daha çox seçim""Hazırdır""DEAKTİV""Dağıt""Sorğunu göndərin""AKTİV""关闭""提交查询""转到上一层级""999+""更多选项""语音搜索""收起""转到主屏幕""%1$s:%2$s""分享方式""开启""搜索""选择应用""查看全部""%1$s - %2$s:%3$s""搜索查询""完成""清除查询""通过%s分享""搜索…""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri...""Ciutkan""NONAKTIF""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""999+""%1$s, %2$s""Selesai""%1$s, %2$s, %3$s""Hapus kueri""Kirim kueri""AKTIF""Kueri penelusuran""%1$s、%2$s""アプリの選択""検索…""OFF""検索キーワードを削除""折りたたむ""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""ON""完了""音声検索""%1$s、%2$s、%3$s""ホームへ移動""999+""Φωνητική αναζήτηση""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""Κοινή χρήση με %s""%1$s, %2$s, %3$s""%1$s, %2$s""Υποβολή ερωτήματος""Αναζήτηση…""Κοινή χρήση με""999+""Επιλέξτε κάποια εφαρμογή""ΕΝΕΡΓΟΠΟΙΗΣΗ""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Σύμπτυξη""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Meklējiet…""Skatīt visu""Izvēlieties lietotni""Pārvietoties uz sākuma ekrānu""Meklēt""Meklēšana ar balsi""Gatavs""Sakļaut""999+""Meklēšanas vaicājums""Kopīgot ar:""%1$s, %2$s: %3$s""Iesniegt vaicājumu""Vairāk opciju""IZSLĒGTS""Pārvietoties augšup""IESLĒGTS""Notīrīt vaicājumu""Kopīgot ar %s""%1$s: %2$s""Vælg en app""%1$s, %2$s""Indsend forespørgslen""FRA""TIL""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Søg…""%1$s, %2$s, %3$s""Se alle""999+""Søg""Del med""Naviger op""Skjul""Luk""Del med %s""Flere muligheder""Talesøgning""ӨШІРУЛІ""ҚОСУЛЫ""Сұрақты іздеу""Іздеу""%1$s, %2$s""Дайын""%s бөлісу""Дауыс арқылы іздеу""%1$s, %2$s, %3$s""Жоғары қозғалу""Іздеу…""Тасалау""999+""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу"256dip"সঙ্কুচিত করুন""হোম এ নেভিগেট করুন""বন্ধ""চালু""৯৯৯+""একটি অ্যাপ্লিকেশান চয়ন করুন""অনুসন্ধান...""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""%1$s, %2$s""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""%1$s, %2$s, %3$s""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান"54dip"%1$s, %2$s""Navigate home""ON""Done""See all""Voice search""Search""Choose an app""%1$s, %2$s, %3$s""Clear query""Navigate up""OFF""Share with %s""Collapse""More options""999+""Search…""Submit query""Share with""Search query""清除查詢""999 +""更多選項""提交查詢""收合""與「%s」分享""向上瀏覽""開啟""語音搜尋""顯示全部""搜尋…""選擇應用程式""搜尋""%1$s (%2$s):%3$s""完成""%1$s:%2$s""搜尋查詢""分享對象""關閉""瀏覽主頁""Selecione um app""Pesquisar""Navegar para a página inicial""Concluído""Compartilhar com""Pesquisa por voz""Recolher""DESATIVAR""%1$s, %2$s""Mais opções""Consulta de pesquisa""Enviar consulta""Ver tudo""Navegar para cima""%1$s, %2$s, %3$s""ATIVAR""Compartilhar com %s""Pesquisar...""Limpar consulta""999+""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ፈልግ…""ወደ መነሻ ይዳስሱ""በርቷል""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""%1$s፣ %2$s""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""999+""ጠፍቷል""%1$s፣ %2$s፣ %3$s""ፍለጋ""ሰብስብ""ሁሉንም ይመልከቱ"32dp14dptrue48dp12dptrue50%60%false192dip70%90%545%72%20dp14sptrue56dp@android:color/black8dp#ff2632382dp16dpSee all8dp#8a000000Share with %s48dp#1f000000Choose an app999#36ffffff#fff5f5f5#6680cbc4320dp#ff5a595bfalse@dimen/abc_control_padding_materialtrue@android:color/black#80fffffffalse@android:color/white10dpDone#ffffffff#ffe0e0e00dp4dp28dipSearch#ff616161#3900000064dp@android:color/white7dp64dp0.26#66009688#de00000012sp@color/material_deep_teal_20048dp#ff80cbc436dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light0.20@color/material_grey_5048dp2dp20dp@android:color/black56sp14sp95%100%16sp999+Collapse#ffd6d7d7-3dp%1$s, %2$s, %3$s8dip#fffafafa0.304dp#7fa87f0.12@color/material_grey_8505dp@android:color/blacktrue#33ffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp@android:color/white12714sp@dimen/abc_action_bar_content_inset_material40dp@color/material_grey_900@android:color/black@color/material_grey_10022sp320dp34sp16sp24sp12dpSearch query#ff009688#3333B5E52dp6dpNavigate up3dp0.26#80323232#ffbdbdbdMore optionsOFF220320dp20sp15024dp#4Dffffff@color/bright_foreground_material_dark32dipNavigate home0.30112sp16dp0.2616dp#ff323232160dip#fff1f1f1#ff3030300dp#b3ffffff#ff7575754dp#ff21272b16dpShare with@color/material_deep_teal_500%1$s, %2$s45sp@android:color/black#ffbebebe@color/material_grey_600#ff212121Voice searchfalse#8000000018sp18dp@color/material_grey_80048dp65%Clear querytrue#ffbdbdbd#ff424242@dimen/abc_control_inset_material#ff37474fON6dp80%trueSearch…@color/bright_foreground_disabled_material_dark"ACTIVÉ""Recherche en cours...""Revenir à l\'accueil""Partager avec %s"">999""%1$s, %2$s""Terminé""%1$s, %2$s, %3$s""Sélectionnez une application""Rechercher""Recherche vocale""Partager""Voir toutes les chaînes""Réduire""Effacer la requête""DÉSACTIVÉ""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Udostępnij dla %s""Wyczyść zapytanie""Wyszukiwanie głosowe""Więcej opcji""999+""Udostępnij dla""Gotowe""Szukaj""%1$s, %2$s, %3$s""Przejdź do strony głównej""%1$s, %2$s""Wybierz aplikację""WŁ.""Zobacz wszystkie""WYŁ.""Szukaj…""Wyszukiwane hasło""Wyślij zapytanie""Zwiń""Przejdź wyżej""999+""TẮT""Gửi truy vấn""Xóa truy vấn""Chọn một ứng dụng""Tìm kiếm…""Chia sẻ với %s""Thêm tùy chọn""Xong""Tìm kiếm bằng giọng nói""%1$s, %2$s""Xem tất cả""BẬT""Tìm kiếm""%1$s, %2$s, %3$s""Tìm kiếm truy vấn""Chia sẻ với""Điều hướng lên trên""Điều hướng về trang chủ""Thu gọn""ជម្រើសច្រើនទៀត""រួចរាល់""សម្អាតសំណួរ""ដាក់ស្នើសំណួរ""ស្វែងរកសំណួរ""ចែករំលែកជាមួយ %s""%1$s, %2$s, %3$s""មើលទាំងអស់""ការស្វែងរកសំឡេង""បើក""រកមើលឡើងលើ""បិទ""ចែករំលែកជាមួយ""រកមើលទៅដើម""%1$s, %2$s""ស្វែងរក""999+""បង្រួម""ជ្រើសកម្មវិធី""ស្វែងរក…""КҮЙҮК""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""%1$s, %2$s, %3$s""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Жыйнап коюу""Талаптарды тазалоо""Издөө…""ӨЧҮК""Талап жөнөтүү""%1$s, %2$s""Даяр""Көбүрөөк мүмкүнчүлүктөр""999+""Жогору""AV""%1$s, %2$s, %3$s""Dela med"">999""Visa alla""%1$s, %2$s""Sök …""PÅ""Sök""Ta bort frågan""Navigera uppåt""Fler alternativ""Dela med %s""Klart""Röstsökning""Sökfråga""Skicka fråga""Välj en app""Visa startsidan""Komprimera""વૉઇસ શોધ""ઉપર નેવિગેટ કરો""આની સાથે શેર કરો""%1$s, %2$s""થઈ ગયું""બંધ""સંકુચિત કરો""શોધો""હોમ પર નેવિગેટ કરો""બધું જુઓ""શોધો…""%s સાથે શેર કરો""%1$s, %2$s, %3$s""એક એપ્લિકેશન પસંદ કરો""શોધ ક્વેરી""ક્વેરી સાફ કરો""ચાલુ""ક્વેરી સબમિટ કરો""વધુ વિકલ્પો""999+"5192dip"Krmarjenje navzgor""Deljenje z:""Iskanje""IZKLOPLJENO""Deljenje z""Krmarjenje domov""Glasovno iskanje""Strni""Izbira aplikacije""Iskalna poizvedba""%1$s, %2$s, %3$s""Končano""Iskanje …""Pošiljanje poizvedbe""Pokaži vse""VKLOPLJENO""%1$s, %2$s""Izbris poizvedbe""999+""Več možnosti""Vymazať dopyt""Hľadať""Prejsť na plochu""Zobraziť všetko""Zdieľať pomocou""ZAP.""Hlasové vyhľadávanie""Zbaliť""Vyhľadať…""Vyhľadávací dopyt""Zdieľať pomocou %s""%1$s, %2$s""Ďalšie možnosti""Prejsť hore""%1$s, %2$s, %3$s""VYP.""Odoslať dopyt""Zvoľte aplikáciu""Hotovo""999+"false"Tafuta""%1$s, %2$s""Shiriki na:""Shiriki na %s""Hoja ya utafutaji""Chagua programu""999+""Futa hoja""Nenda mwanzo""Tafuta…""Wasilisha hoja""Tafuta kwa kutamka""Nenda juu""Nimemaliza""Chaguo zaidi""Kunja""Angalia zote""IMEZIMWA""%1$s, %2$s, %3$s""IMEWASHWA""سکیڑیں""استفسار صاف کریں""استفسار جمع کرائیں""اشتراک کریں مع""اوپر نیویگیٹ کریں""ہوم پر نیویگیٹ کریں""آف""صوتی تلاش""مزید اختیارات""%s کے ساتھ اشتراک کریں""تلاش کریں…""استفسار تلاش کریں""ایک ایپ منتخب کریں""آن""سبھی دیکھیں""تلاش کریں""999+""%1$s, %2$s, %3$s""%1$s, %2$s""ہو گیا""Enviar consulta""%1$s, %2$s""Consulta de pesquisa""Partilhar com %s""Mais opções""Partilhar com""Escolher uma aplicação""DESATIVADO""Concluído""Navegar para a página inicial""%1$s, %2$s, %3$s""Pesquisar""Reduzir""Pesquisar...""Limpar consulta""Ver tudo""Pesquisa por voz""+999""Navegar para cima""ATIVADO""ສົ່ງການຊອກຫາ""ໂຕເລືອກອື່ນ""ແບ່ງປັນກັບ %s""ຫຍໍ້""ປິດ""ລຶບຂໍ້ຄວາມຊອກຫາ""999+""ຊອກຫາດ້ວຍສຽງ""ຂຶ້ນເທິງ""ເລືອກແອັບຯ""ຊອກຫາ""%1$s, %2$s, %3$s""ຊອກຫາ""ແບ່ງປັນກັບ""ເປີດ""ກັບໄປໜ້າຫຼັກ""%1$s, %2$s""ເບິ່ງທັງຫມົດ""ແລ້ວໆ""ຊອກຫາ"truetrue"Bir uygulama seçin""Daralt""Sorguyu temizle""999+""Şununla paylaş""AÇ""Yukarı git""%1$s, %2$s""Diğer seçenekler""%1$s, %2$s, %3$s""Tamamlandı""Ara…""Sorguyu gönder""%s ile paylaş""KAPAT""Arama sorgusu""Sesli arama""Tümünü göster""Ana ekrana git""Ara"truefalse"მოთხოვნის გადაგზავნა""ხმოვანი ძიება""%1$s, %2$s""მოთხოვნის გასუფთავება""გაზიარება:""აკეცვა""%1$s, %2$s, %3$s""მეტი ვარიანტები""ჩართულია""999+""%s-თან გაზიარება""გამორთულია""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიება...""ძიების მოთხოვნა""999+""Leita""Fara heim""%1$s, %2$s""Leitarfyrirspurn""Deila með""%1$s, %2$s, %3$s""Leita…""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""KVEIKT""Deila með %s""Senda fyrirspurn""SLÖKKT""Sjá allt""Minnka""Lokið""Fara upp""Veldu forrit""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಹುಡುಕಿ…""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%1$s, %2$s, %3$s""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""%1$s, %2$s""ಸಂಕುಚಿಸು""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಆನ್""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""999+""ಧ್ವನಿ ಹುಡುಕಾಟ""ಆಫ್"192dip440dptruetrue60%90%80%60%90%55%4"අවසාන වූ""සෙවුම් විමසුම""999+""ඉහලට සංචාලනය කරන්න""විමසුම යොමු කරන්න""යෙදුමක් තෝරන්න""%1$s, %2$s""සොයන්න...""විමසුම හිස් කරන්න""සියල්ල බලන්න""%1$s, %2$s, %3$s""සමඟ බෙදාගන්න""%s සමඟ බෙදාගන්න""ගෙදරට සංචාලනය කරන්න""ක්රියාවිරහිතයි""සෙවීම""තවත් විකල්ප""හඬ සෙවීම""හකුළන්න""ක්රියාත්මකයි""ค้นหาด้วยเสียง""เสร็จสิ้น""999+""นำทางไปหน้าแรก""แชร์กับ""เปิด""ยุบ""ปิด""แชร์กับ %s""ส่งข้อความค้นหา""%1$s, %2$s""%1$s, %2$s, %3$s""นำทางขึ้น""ตัวเลือกอื่น""ดูทั้งหมด""ข้อความค้นหา""ค้นหา…""ค้นหา""เลือกแอป""ล้างข้อความค้นหา""اشتراکگذاری با""انتخاب برنامه""%1$s، %2$s""%1$s، %2$s، %3$s""ارسال عبارت جستجو""کوچک کردن""پیمایش به صفحه اصلی""گزینههای بیشتر""جستجو""جستجوی شفاهی""خاموش""۹۹۹+""عبارت جستجو""اشتراکگذاری با %s""جستجو…""پیمایش به بالا""مشاهده همه""تمام""پاک کردن عبارت جستجو""روشن""Išvalyti užklausą""Pasirinkti programą""IŠJUNGTI""Pateikti užklausą""Sutraukti""Bendrinti naudojant „%s“""Eiti į viršų""Ieškoti...""Bendrinti naudojant""999+""%1$s, %2$s""Paieška balsu""Atlikta""Paieškos užklausa""Eiti į pagrindinį puslapį""Paieška""%1$s, %2$s, %3$s""ĮJUNGTI""Daugiau parinkčių""Peržiūrėti viską""Хайх""Нүүр хуудас руу шилжих""Нэмэлт сонголтууд""Бүгдийг харах""Хайх...""Хайх асуулга""%1$s, %2$s""Хуваалцах""ИДЭВХГҮЙ""%s-тай хуваалцах""Асуулгыг цэвэрлэх""%1$s, %2$s, %3$s""Апп сонгох""999+""Дууссан""Дуут хайлт""ИДЭВХТЭЙ""Дээш шилжих""Асуулгыг илгээх""Хумих""Päringu tühistamine""%1$s, %2$s, %3$s""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Ahendamine""Päringu esitamine""Jagamine:""SEES""Rohkem valikuid""Otsingupäring""999+""Kuva kõik""Otsige …""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""%1$s, %2$s""VÄLJAS""%1$s, %2$s, %3$s""פועל""מחק שאילתה""חפש""בחר אפליקציה""ראה הכל""כבוי""שתף עם %s""עוד אפשרויות""בוצע""חפש…""שלח שאילתה""999+""שאילתת חיפוש""נווט לדף הבית""%1$s, %2$s""חיפוש קולי""שתף עם""נווט למעלה""כווץ""%1$s, %2$s, %3$s""Voice search""OFF""Submit query""See all""Clear query""Navigate home""ON""Done""More options""Search""999+""%1$s, %2$s""Search…""Search query""Collapse""Navigate up""Share with""Choose an app""Share with %s""Valmis""KÄYTÖSSÄ""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Kutista""999+""POIS KÄYTÖSTÄ""Tyhjennä kysely""Puhehaku""%1$s, %2$s, %3$s""Hakulauseke""Jakaminen: %s""%1$s, %2$s""Haku…""%1$s, %2$s, %3$s""Yuqoriga o‘tish""So‘rovni tozalash""Tayyor""Dastur tanlang""Boshiga o‘tish""Qidirish""%1$s, %2$s""Barchasini ko‘rish""So‘rovni izlash""Qidirish…""O‘CHIQ""Ovozli qidiruv""So‘rov yaratish""Qo‘shimcha sozlamalar""Yig‘ish""YONIQ""999+""Bo‘lishish:""Submit query""Voice search""%1$s, %2$s""More options""ON""Search…""%1$s, %2$s, %3$s""Search query""Share with %s""OFF""Collapse""See all""Choose an app""999+""Done""Share with""Search""Clear query""Navigate home""Navigate up"false"Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""DÉSACTIVÉ""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""%1$s, %2$s""Partager avec %s""Effacer la requête""Réduire"">999""ACTIVÉ""%1$s, %2$s, %3$s""Rechercher…""Recherche vocale""ਸਵਾਲ ਖੋਜੋ""ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ""ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ""ਹੋ ਗਿਆ""ਬੰਦ""%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ""%1$s, %2$s, %3$s""ਸਭ ਦੇਖੋ""ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ""ਖੋਜੋ""ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ""%1$s, %2$s""ਇੱਕ ਐਪ ਚੁਣੋ""ਸਵਾਲ ਹਟਾਓ""ਨਸ਼ਟ ਕਰੋ""999+""ਤੇ""ਹੋਰ ਚੋਣਾਂ""ਖੋਜ…""ਵੌਇਸ ਖੋਜ""Buscar…""Buscar""NO""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""SÍ""Ir a la pantalla de inicio""+999""Compartir con %s""Desplazarse hacia arriba""%1$s, %2$s, %3$s""Búsqueda por voz""Listo""Contraer""%1$s, %2$s""Más opciones""Compartir con""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""%1$s, %2$s, %3$s""Dodatne opcije""UKLJUČENO""Sažmi""ISKLJUČENO""Glasovno pretraživanje""Dijeljenje sa: %s""%1$s, %2$s""999+""Pretražite…""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""ഇവരുമായി പങ്കിടുക""തിരയുക…""തിരയൽ""%1$s, %2$s""ഓൺ""തിരയൽ അന്വേഷണം""%s എന്നതുമായി പങ്കിടുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""999+""കൂടുതല് ഓപ്ഷനുകള്""പൂർത്തിയാക്കി""ശബ്ദ തിരയൽ""%1$s, %2$s, %3$s""ചുരുക്കുക""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""അന്വേഷണം മായ്ക്കുക""ഓഫ്""അന്വേഷണം സമർപ്പിക്കുക""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Összecsukás""Megosztás a következővel: %s""%1$s, %2$s, %3$s""Hangalapú keresés""KI""999+""Kész""BE""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Keresés…""%1$s, %2$s""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Meer opties""Gereed""UIT""Navigeren naar startpositie""Alles weergeven""Gesproken zoekopdracht""Samenvouwen""999+""AAN""Zoeken""Een app selecteren""Delen met %s""Zoeken…""Zoekopdracht""Delen met""Zoekopdracht wissen""Zoekopdracht verzenden""%1$s, %2$s""Omhoog navigeren""%1$s, %2$s, %3$s""Търсене""„%1$s“ – %2$s""Търсете…""Още опции""Заявка за търсене""ИЗКЛ.""999+""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""„%1$s“, „%2$s“ – %3$s""Изберете приложение""Гласово търсене""Придвижване нагоре""ВКЛ.""Придвижване към „Начало“""Вижте всички""Споделяне със:""Свиване""Soeknavraag""Sien alles""%1$s, %2$s""Deel met""Kies \'n program""AF""Soek …""Soek""999+""Stemsoektog""Deel met %s""Navigeer tuis""%1$s, %2$s, %3$s""Nog opsies""Vou in""Vee navraag uit""Klaar""AAN""Dien navraag in""Navigeer op""%1$s – %2$s – %3$s""Flere alternativer""Del med %s""PÅ""Del med""Se alle""Slett søket""Søk""Søkeord""Velg en app""Gå til startsiden""AV""Søk …""Ferdig""Skjul""%1$s – %2$s""999+""Gå opp""Utfør søket""Talesøk""पूर्ण""%1$s, %2$s, %3$s""ध्वनि खोज""क्वेरी साफ़ करें""%s के साथ साझा करें""संक्षिप्त करें""अधिक विकल्प""कोई एप्लिकेशन चुनें""बंद""सभी देखें""खोज क्वेरी""मुख्यपृष्ठ पर नेविगेट करें""खोजें""999+""चालू""इसके द्वारा साझा करें""ऊपर नेविगेट करें""%1$s, %2$s""खोजा जा रहा है…""क्वेरी सबमिट करें""Sprachsuche""%1$s: %2$s""An""Weitere Optionen""Minimieren""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Suchen…""Freigeben für""Suchen""Freigeben für %s""Nach oben""Aus""999+""App auswählen""Suchanfrage senden""%1$s, %2$s: %3$s""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""검색...""%1$s, %2$s, %3$s""음성 검색""%1$s, %2$s""검색어 보내기""사용 안함""접기""공유 대상""완료""사용""홈 탐색""전체 보기""앱 선택""999+"3"محو طلب البحث""خيارات إضافية""إيقاف""تشغيل""تصغير""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""%1$s، %2$s، %3$s""اختيار تطبيق""بحث…""التنقل إلى الشاشة الرئيسية""+999""مشاركة مع %s""البحث الصوتي""بحث""%1$s، %2$s""مشاركة مع""عرض الكل""Navegar a la página principal""Elige una aplicación.""Buscar…""Navegar hacia arriba""Búsqueda por voz""ACTIVAR""999+""Consulta de búsqueda""%1$s, %2$s, %3$s""DESACTIVAR""Enviar consulta""Compartir con""Contraer""Listo""Compartir con %s""Más opciones""%1$s, %2$s""Eliminar la consulta""Ver todo""Búsqueda""Limpar consulta""Mais opções""Compartilhar com %s""Recolher""%1$s, %2$s""ATIVAR""Enviar consulta""Navegar para cima""Concluído""Consulta de pesquisa""%1$s, %2$s, %3$s""DESATIVAR""Navegar para a página inicial""Ver tudo""Compartilhar com""999+""Pesquisar""Pesquisa por voz""Selecione um app""Pesquisar...""Пошуковий запит""ВИМК.""Вибрати програму""Пошук""999+""Переглянути всі""Голосовий пошук""Надіслати через %s""%1$s, %2$s, %3$s""Пошук…""УВІМК.""Перейти на головний""Інші опції""%1$s, %2$s""Згорнути""Очистити запит""Готово""Надіслати запит""Надіслати через""Перейти вгору""Одлазак на Почетну""%1$s, %2$s, %3$s""Избор апликације""Претражите...""Дели са апликацијом %s""УКЉУЧИ""Још опција""ИСКЉУЧИ""Слање упита""%1$s, %2$s"">999""Гласовна претрага""Кретање нагоре""Скупи""Брисање упита""Претрага""Готово""Дели са""Упит за претрагу""Прикажи све""Runtuhkan""Pilih apl""Selesai""%1$s, %2$s""Lagi pilihan""Lihat semua""Carian suara""Kongsi dengan %s""Navigasi skrin utama""Navigasi ke atas""Cari""999+""MATI""%1$s, %2$s, %3$s""Kongsi dengan""Pertanyaan carian""Serah pertanyaan""Kosongkan pertanyaan""HIDUP""Cari…""Iyasesha...""%1$s, %2$s""Hambisa umbuzo""Yabelana no-%s""%1$s, %2$s, %3$s""Izinketho eziningi""Kwenziwe""Umbuzo wosesho""Zulazulela phezulu""Sula inkinga""Sesha""VULIWE""Yabelana no-""Goqa""VALIWE""Ukusesha ngezwi""Khetha uhlelo lokusebenza""Zulazulela ekhaya""Buka konke""999+"MarkdownView800dp120dp20dp0dp@dimen/design_snackbar_padding_vertical576dp24dp320dp12dp320dp160dp128dp#44000000280dp14sp0dp%1$d / %2$d8dp@android:color/transparent14sp24dp-1px264dp0dp#0F000000#1400000056dp150#1AFFFFFF4dp#FFFF6E6E8dp32dp#3232326dp2#FFD5000016dp12dp40dp-1px16dp24dpandroid.support.design.widget.AppBarLayout$ScrollingViewBehavior24dp#0A000000256dpandroid.support.design.widget.BottomSheetBehavior72dp#2EFFFFFF6dp12sp6dp14dp0.5dpFetching JS bundleCatalyst Dev SettingsDev SettingsReload JSDebug JSInspeccionar elementoEspera...Unable to download JS bundleDebug JSShow InspectorDev SettingsReload JSCatalyst Dev SettingsFetching JS bundlePlease wait...Unable to download JS bundleDev SettingsFetching JS bundleПроверить элементCatalyst Dev SettingsDebug JSUnable to download JS bundleПодождите...Reload JSFetching JS bundleDebug JS檢查元素Reload JSDev SettingsUnable to download JS bundle請稍候……Catalyst Dev SettingsEsamina elementoDebug JSAttendi...Unable to download JS bundleCatalyst Dev SettingsReload JSDev SettingsFetching JS bundleDebug JSReload JSCatalyst Dev SettingsProzkoumat prvekFetching JS bundleUnable to download JS bundleČekejte prosím...Dev Settings[Show Inspector#c1b106c92869437ebd88f326d632b973:1][Debug JS#2010fa256bd28603b686da2713bb843a:1][Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1][Please wait...#71bad104a80f916d3bfb1ffa23a487af:1][Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1][Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1][Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1][Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]Reload JSCatalyst Dev SettingsUnable to download JS bundleFetching JS bundle请稍等...检查元素Dev SettingsDebug JSDebug JSDev SettingsHarap tunggu...Catalyst Dev SettingsUnable to download JS bundleFetching JS bundleReload JSPeriksa ElemenDebug JSしばらくお待ちくださいCatalyst Dev SettingsReload JSUnable to download JS bundleDev Settings要素を確認Fetching JS bundleDebug JSFetching JS bundleΕξέταση στοιχείουCatalyst Dev SettingsUnable to download JS bundleReload JSDev SettingsΠεριμένετε...Inspicer elementUnable to download JS bundleFetching JS bundleVent venligst...Catalyst Dev SettingsDebug JSDev SettingsReload JSCatalyst Dev SettingsDebug JS(तत्व निरीक्षण गर्नुहोस्)Fetching JS bundleDev SettingsUnable to download JS bundle(অনুগ্রহ করে অপেক্ষা করুন….)Reload JSDebug JSUnable to download JS bundle請稍候……Reload JSCatalyst Dev SettingsFetching JS bundleDev Settings檢查項目Dev SettingsDisable Perf MonitorEnable Hot Module ReplacementHide InspectorCatalyst Dev SettingsStop ProfileFetching JS bundleShow InspectorStart ProfileDisable Hot Module ReplacementPlease wait…Enable Perf MonitorUnable to connect with remote debugger#eecc0000Disable Live ReloadDebug in ChromeStop Chrome DebuggingReload JSEnable Live ReloadUnable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081Connecting to remote debuggerReload JSDev SettingsDebug JSUnable to download JS bundleZaczekaj...Catalyst Dev SettingsZbadaj elementFetching JS bundleFetching JS bundleKiểm tra phần tửDebug JSReload JSDev SettingsCatalyst Dev SettingsUnable to download JS bundleVui lòng đợi...Debug JSCatalyst Dev SettingsInspektionselementFetching JS bundleReload JSUnable to download JS bundleVänta ...Dev SettingsDebug JSDev SettingsReload JSShow InspectorAguarda...Catalyst Dev SettingsUnable to download JS bundleFetching JS bundleÖğeyi DenetleDebug JSCatalyst Dev SettingsUnable to download JS bundleLütfen bekleyin...Fetching JS bundleReload JSDev SettingsUnable to download JS bundleโปรดรอ...Debug JSFetching JS bundleตรวจสอบอิลิเมนต์Catalyst Dev SettingsReload JSDev SettingsUnable to download JS bundlePlease wait...Show InspectorDev SettingsFetching JS bundleReload JSDebug JSCatalyst Dev SettingsTarkista elementtiUnable to download JS bundleOdota…Catalyst Dev SettingsFetching JS bundleReload JSDebug JSDev SettingsInspecter l’élémentReload JSDev SettingsDebug JSFetching JS bundleCatalyst Dev SettingsUnable to download JS bundleVeuillez patienter...Unable to download JS bundleEspera...Catalyst Dev SettingsInspeccionar elementoDev SettingsReload JSDebug JSFetching JS bundleDev SettingsFetching JS bundleReload JSCatalyst Dev SettingsKérjük, várj...Unable to download JS bundleElem megtekintéseDebug JSEven geduld...Reload JSUnable to download JS bundleDev SettingsDebug JSElement inspecterenCatalyst Dev SettingsFetching JS bundleReload JSUnable to download JS bundleVent litt ...Dev SettingsDebug JSInspiser elementFetching JS bundleCatalyst Dev SettingsReload JSCatalyst Dev SettingsDebug JSElement untersuchenBitte warten Sie ...Unable to download JS bundleFetching JS bundleDev SettingsDebug JSReload JSUnable to download JS bundle기다려주세요...Fetching JS bundleCatalyst Dev SettingsDev Settings요소 검사Dev SettingsDebug JSReload JSUnable to download JS bundleAguarde...Fetching JS bundleCatalyst Dev SettingsShow Inspector
+
+
+
+ 取消圖片處理器已開啟已掃瞄圖片稍後自動標籤about.md"看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"分享Storage FolderTelegram 群組在 Telegram 上討論本項目您是否想刪除已選圖片?以 Bitcoin 捐贈B&W modeGitHub 上的項目經下列應用程式分享傳送訊息給開發者傳送用量統計給開發者。掃瞄的內容不會被傳送否傳送訊息您是否想刪除本圖片?Google Play圖片處理器已關閉正在下載 OpenCV Manager直接下載刪除前往設定掃瞄圖片瀏覽器Open Note Scanner買杯咖啡給我您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。旋轉圖片 180º使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤顏色模式手動模式本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它基本設定確認掃瞄筆記和文件的好應用程式接受很多種信用卡如部份裝置的相機令影像上下倒轉,此設定能使其回復正常是標籤自動模式經下列應用程式分享連結您是否想從 GitHub 下載 OpenCV Manager?分享本應用程式回饋及貢獻大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度使用預覽長寬比Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。用量統計關於正在下載設定安裝 OpenCV Manager正在找尋文件\n再次點擊來掃瞄整張圖片Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。圖庫用量統計Sets where the scanned files should be stored如果您喜歡本應用程式並覺得它有用,您可考慮捐贈Elaboratore immagine non attivoImpostazioni di baseModalità automaticaElaboratore immagine attivoImpostazioniConfermaImposta dove verranno archiviati i file acquisitiDona usando la cripto-valuta BitcoinOffrimi un caffèLa maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprimaInvia messaggioEtichettaStatistiche di utilizzoAbilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.Chiacchiera su Telegram dell\'applicazioneStatistiche di utilizzoNoScaricamento di OpenCV ManagerEliminare questa immagine?Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazioneInvia un messaggio allo sviluppatoreInformazioniConfronta risoluzione anteprimaAlcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine correttaVai alle impostazioniGoogle Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni."Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "Modalità bianco e neroInvia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessiCondividi questa appCartella di archiviazionePer funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.Scaricare OpenCV Manager da GitHub?Modalità coloreModalità manualeImposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina specialeCondividi il link attraversoRuota immagine di 180ºImmagini acquisiteGoogle PlayQuesta applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHubAnnullaEliminaInstallare OpenCV ManagerOpen Note ScannerProgetto su GitHubVisualizzatore immagini acquisiteSìEtichette automaticheCondividiEliminare le immagini selezionate?Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagineGruppo TelegramDownload direttoCondividi immagini attraversoGalleriaScaricamento in corsoSplendida applicazione per acquisire note e documentiMolte carte di credito sono accettatePiù tardiFeedback e contributiabout-it.mdSmazatŠtítekPřejete si stáhnout OpenCV Manager z GitHub?Poslat zprávuPoslat zprávu vývojáři Automaticky"Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "AnoO aplikaciTato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránkuNastaveníPřispěj pomocí kryptoměny BitcoinStahování OpenCV ManagerSrovnat poměr stran náhleduOskenované obrázkyDefinuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoruChcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.Skupina TelegramBarevněStatistiky používáníZ důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.ZrušitPokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispěníProhlížeč oskenovaných obrázkůOpen Note ScannerPřejete si smazat vybrané obrázky?Přejete si smazat tento obrázek?Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblastiNeKup mi kafeZasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.PozdějiMluv o projektu na TelegramuGoogle PlaySdíletSdílet aplikaciSdílet odkaz přesZpracování obrázku ZapnoutAutomatické značeníZpracování obrázku VypnoutNěkterá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.Statistiky používáníČernobíléPřímé stáhnutíSložka uložištěZpětná vazba a příspěvkyPotvrditabout-cs.mdInstalovat OpenCV ManagerUrčuje, kde budou naskenované soubory uloženyOtočit obraz o 180ºVětšina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhleduPřijímáno mnoho druhů kreditních karetGalerieJít do nastaveníSkvělá aplikace pro skenování poznámek a dokumentůProjekt na GitHubManuálněStahováníSdílet obrázky přesZákladní nastaveníOpenCV Manager のダウンロード中フィードバックと貢献GitHub 上のプロジェクトイメージプロセッサ オン自動モードTelegram でプロジェクトについてチャット後でいいえ共有キャンセル特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義しますギャラリーほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択しますBuy me a coffeeGoogle Play画像をスキャンしました自動タグ付けabout-ja.mdスキャンした画像のビューアー多くのクレジットカードを受け付けます文書の検索中\nもう一度タップすると画像全体をスキャンしますTelegram グループ一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整しますこのアプリを共有Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。設定に移動画像を共有...白黒モードストレージ フォルダーはい基本設定タグ使用統計イメージプロセッサ オフ確認このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討くださいダイレクトダウンロードOpenCV Manager をインストールメッセージを送信Bitcoin 暗号通貨を使用して寄付しますOpen Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。ダウンロード中プレビューのアスペクト比に一致スキャンしたファイルを保存する場所を設定しますアプリについてOpen Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できますカラーモード開発者にメッセージを送信します開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されませんOpen Note Scannerリンクを共有...GitHub から OpenCV Manager をダウンロードしますか?このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます"メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "この画像を削除しますか?画像を 180º 回転設定手動モード削除使用統計情報スキャンした画像を削除しますか?メモや文書をスキャンする素晴らしいアプリProject on GitHubSend message to developer@android:drawable/ic_menu_manageDownloading OpenCV ManagerGoogle Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.16dpGallery#00E676Do you want to download OpenCV Manager from GitHub?ConfirmGo to SettingsImage Processor OffImages Scanned#00E676Usage StatisticsSend various usage statistics to developer. No content data will be sent16dpIn order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.@android:drawable/ic_menu_shareLater#66000000Buy me a coffeeChat about the project on TelegramYesAutomatic TaggingShareTelegram GroupDo you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen."Take a look at this great app that scans notes, drawings and documents through your camera: "Donate using Bitcoin cryptocurrencyFeedback and contributionsThis application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s pageDownloadingScanned Image ViewerSearching for document\nTap again to scan whole imageUsage Stats@android:drawable/ic_menu_slideshowDeleteShare this AppDefine automatic tags to be applied on marked scans using the special page template@android:drawable/ic_menu_send16dpGoogle Play@android:drawable/ic_menu_gallerySettingsDo you want to delete the selected images?Some devices have the camera upside down, this setting adjusts everything to make senseSets where the scanned files should be storedInstall OpenCV ManagerB&W modeOpen Note ScannerAutomatic Mode@android:drawable/ic_menu_cameraIf you like this application and think it is useful, you may consider making a donationRotate Image 180ºDo you want to delete this image?CancelNoDirect DownloadMatch preview aspect ratioabout.md160dpWow, such app, many usefulManual ModeStorage FolderDoc scan#00C853Many credit cards acceptedGreat app to scan notes and documentsColor ModeTagMost devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of previewShare link throughSend Message16dpImage Processor OnAboutShare images throughBasic SettingsGoogle PlaySupprimerGoogle Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.Partager cette applicationMode couleurPartager les images viaMode noir&blancCette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projetTéléchargement en directTéléchargement d\'OpenCV Manager en coursEnvoyer un message au développeurRecherche du document\nAppuyer à nouveau pour numériser l\'image entièreSi vous aimez cette application et que vous la trouvez utile, vous pouvez faire un donLa majorité des cartes de crédit sont acceptéesDiscutez à propos de ce projet sur TelegramVoulez-vous supprimer les images sélectionnées ?Aller aux paramètresStatistiques d\'utilisationConfirmerVoulez-vous télécharger OpenCV Manager depuis GitHub?Retours d\'utilisation et contributionsNonOffrez moi un caféOuiVisionneuse d\'image numériséePartagerGalerieÉtiquetage automatiqueLa plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisationOpen Note ScannerCertains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compteTraitement d\'image activéFaire un don en crypto-monnaie BitcoinDéfinir où seront enregistrées les images numériséesVoir le projet sur GitHubPlus tardMode automatiqueStats d\'utilisationVoulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.Traitement d\'image désactivéVoulez-vous supprimer cette image ?Paramètres"Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "ÉtiquetteGroupe TelegramDéfinir automatiquement les étiquettes en utilisant des modèles de page spéciauxabout-fr.mdSuperbe application pour numériser des notes et des documentsEnvoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmiseA proposMode manuelDossier d\'enregistrementAnnulerParamètres principauxImages numériséesTéléchargement en coursPour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.Utiliser le ratio d\'aspect de la prévisualisationEnvoyer un messagePartager l\'application viaRotation de 180º de l\'imageInstaller OpenCV ManagerCompartir imágenes conSiComentarios y contribucionesSi te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionaciónGran aplicación para escanear notas y documentosEtiquetaMuchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.Modo ManualCarpeta de almacenamientoEnviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenidoGaleríaNoBuscando documento\nPulsa de nuevo para escanear la imagen completaChat sobre el proyecto en TelegramVisor de imagen escaneadaCompartirGoogle Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.about-es.mdProcesador de imagen activadoEnviar un mensaje a un desarrolladorPágame un caféProcesador de imagen desactivadoConfiguración BásicaImágenes escaneadasAlgunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correctoGoogle PlayCancelarDonar usando la criptomoneda BitcoinDefinir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especialInstalar OpenCV ManagerEliminarEstadísticas de usoEsta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.Acerca deDescargando OpenCV ManagerModo ColorProyecto en GitHubEstablecer dónde se deben almacenar los archivos escaneadosModo AutomáticoModo Blanco y negroMantener relacción de aspectoIr a las configuracionesEtiquetado AutomáticoConfiguración"Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "Enviar mensajeAcepta diversas tarjetas de créditoEstadísticas de usoGrupo en Telegram¿Quieres descargar OpenCV Manager desde GitHub?¿Quieres eliminar esta imagen?DespuésCon el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.Compartir esta aplicaciónRotar imagen 180ºConfirmarDescarga directaOpen Note Scanner¿Quieres eliminar las imágenes seleccionadas?Compartir enlace conDescargandoTagSpendieren Sie mir einen KaffeeWollen Sie die ausgewählten Bilder löschen?Storage FolderFarb-ModusWenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die WeiterentwicklungOpenCV Manager installierenabout-de.mdJaLink teilen überZu den EinstellungenGalerieFeedback und BeiträgeSuper App zum Scannen von Notizen und DokumentenDiese App teilenLade OpenCV Manager herunterManueller ModusSpäterBild um 180º drehenGescannte BilderMöchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.EinstellungenNutzungsstatistikenNeinDiese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern"Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "Chatten Sie über das Projekt auf TelegramUm zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.Google PlayTeilenAutomatisches TaggingBildnachbearbeitung AusAbbrechenLöschenÜberWollen Sie OpenCV Manager von GitHub herunterladen?HerunterladenSpenden Sie mit der Kryptowährung BitcoinOpen Note ScannerS/W-ModusAutomatischer ModusManche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibtDokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannenNachricht an den Entwickler sendenNutzungsstatistikenDirekter DownloadGoogle Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.An Seitenverhältnis der Vorschau angleichenSets where the scanned files should be storedWollen Sie dieses Bild löschen?BestätigenTelegram GruppeProjekt auf GitHubBildnachbearbeitung EinDefinieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werdenViele verschiedene Kreditkarten werden akzeptiertNachricht sendenBilder teilen überSende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendetDie meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmtBetrachter für gescannte BilderGrundeinstellungen64dpVisualizador de imagens capturadasCompartilhar AplicativoBaixando OpenCV ManagerChat sobre o projeto no TelegramConfiguraçõesManter relação de aspectoCompartilhar usandoConfigurações BásicasDeseja baixar o OpenCV Manager a partir do GitHub?Modo em coresTags automáticasDefine as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especialDeseja deletar esta imagem?Pasta de ArmazenamentoRotaciona a imagem em 180ºModo preto & brancoAceita vários cartões de créditoabout-pt.mdModo manualEstatísticas de UsoCancelarProcessador de Imagem DesativadoEnvia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviadaExcluirComentários e contribuiçõesDepoisModo AutomáticoEsta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHubEstatísticas de UsoNãoCompartilhar link porDownload diretoÓtimo aplicativo para escanear anotações e documentosVocê deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.Buscando documento\nClique novamente para capturar imagem inteiraProcessador de Imagem AtivadoProjeto no GitHubGoogle PlayAlguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique corretoDeseja deletar as imagens selecionadas?"Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "GaleriaCompartilharIr a ConfiguraçõesBaixandoDefine a pasta de armazenamento das imagensPara funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.Enviar mensagemGoogle Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-laDocument scannerSimSobreConfirmeInstalar OpenCV ManagerEnviar mensagem ao desenvolvedorMarcaçãoGrupo no TelegramMuitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doaçãoDoar utilizando a criptomoeda BitcoinPague-me um caféImagens capturadas
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 000000000..d1bcab4c6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 000000000..12881d1d8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/android/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
new file mode 100644
index 000000000..d21b46055
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
@@ -0,0 +1,532 @@
+#Wed Jan 03 12:10:51 BRST 2018
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_tv.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_tv.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_done_all_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_imagepager.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/menu/menu_imagepager.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-mdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_star.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_star.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_game.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_game.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/round_button.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/round_button.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/gallery_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/gallery_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/xml/settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/xml/settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/about_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/about_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_bell.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_bell.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_magnet.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_magnet.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_camera.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_camera.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_slideshow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_slideshow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_manage.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_manage.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/button_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/button_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_share.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_share.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_rocket.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_rocket.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_fab_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_monochrome.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-hdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_send.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_send.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_camera_green.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_camera_green.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_launcher_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/xml/preferences.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_media.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/tageditor_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/tageditor_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/menu/menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_palette.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_main.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_main.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_find_in_page.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_find_in_page.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/angle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_fullscreen_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_fullscreen_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_fab_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_gift.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_gift.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_menu_tag.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_menu_tag.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v24/ic_launcher_foreground.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v24/ic_launcher_foreground.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/design_fab_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/layout_fullscreen_image.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/layout_fullscreen_image.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_media_action.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher_round.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/side_nav_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/side_nav_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/fps_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_rocket.png
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
new file mode 100644
index 000000000..8143ae04e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
new file mode 100644
index 000000000..b81f93f78
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
new file mode 100644
index 000000000..ef26d8550
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 000000000..15769e10c
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
new file mode 100644
index 000000000..05f19e4a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 000000000..db63cf3e9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "বন্ধ"
+ "চালু"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
new file mode 100644
index 000000000..0aa3366e5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
new file mode 100644
index 000000000..5787e5936
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,93 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ "999+"
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
new file mode 100644
index 000000000..19786b8b9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,31 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
new file mode 100644
index 000000000..e2b383555
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,93 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
new file mode 100644
index 000000000..9980eb59a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,31 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..c5538c280
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rES/values-es-rES.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..843ce164b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
new file mode 100644
index 000000000..6f7ea5434
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,93 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "NO"
+ "SÍ"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ "+999"
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 000000000..fa9bc45ec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 000000000..66d5f977d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
new file mode 100644
index 000000000..87ade66dd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb/values-fb.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
new file mode 100644
index 000000000..1749ce012
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,31 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..a47b18eba
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
new file mode 100644
index 000000000..623dbae15
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,93 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ ">999"
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 000000000..1ca55a9a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 000000000..ed6f52ca4
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml
new file mode 100644
index 000000000..2a6b31c51
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
new file mode 100644
index 000000000..630e22c1f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
new file mode 100644
index 000000000..496e87dec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
new file mode 100644
index 000000000..75eb357ec
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,31 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 000000000..302b221d7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
new file mode 100644
index 000000000..fae86bef9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 000000000..51ffbca07
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 000000000..33d15d7e0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,93 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ "999+"
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
new file mode 100644
index 000000000..d73f472cf
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
new file mode 100644
index 000000000..a729bcdb9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,93 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ "999+"
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 000000000..a76c00f3d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 000000000..f95ae29bf
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 000000000..c3fee7678
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 000000000..cb0acab12
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
new file mode 100644
index 000000000..288cd5ecb
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,31 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 000000000..0b8150f04
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
new file mode 100644
index 000000000..aed434736
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,13 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..7c97842e6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ true
+ true
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+ 192dip
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 000000000..12501615e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 000000000..17a7c53c5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTI"
+ "ĮJUNGTI"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 000000000..df0fd7357
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 000000000..09742b98b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 000000000..49ecfc886
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 000000000..997e79bc0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 000000000..7c3fe3632
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 000000000..5a84cf4b9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 000000000..c05fc1857
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 000000000..9d7bdd897
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,31 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 000000000..a134235a5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
new file mode 100644
index 000000000..10e0f86ff
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 000000000..c768d547a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
new file mode 100644
index 000000000..126bdb482
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,31 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..880875cb5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,31 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
new file mode 100644
index 000000000..0f4b71c46
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,93 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ "999+"
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
new file mode 100644
index 000000000..5e9e27fc8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAȚI"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "˃999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 000000000..54c5dc57f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,31 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 000000000..38729f97a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
new file mode 100644
index 000000000..a0e5aa0da
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYP."
+ "ZAP."
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
new file mode 100644
index 000000000..19eb9b77d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 000000000..38cfb1a9d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
new file mode 100644
index 000000000..c674e1fe2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
new file mode 100644
index 000000000..9da1a65f1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,31 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
new file mode 100644
index 000000000..b80b09a00
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..6fd509602
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,24 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+ 160dp
+ 5
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 000000000..0b33d7c69
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "முடக்கு"
+ "இயக்கு"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 000000000..e0f4a9e2e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
new file mode 100644
index 000000000..723086e62
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,31 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
new file mode 100644
index 000000000..870d8ce82
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
new file mode 100644
index 000000000..1458694c0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,31 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
new file mode 100644
index 000000000..409e11bdd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 000000000..0d597a067
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 000000000..22c32f98d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml
new file mode 100644
index 000000000..d074ce996
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml
new file mode 100644
index 000000000..85e241664
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml
new file mode 100644
index 000000000..74d14088e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml
new file mode 100644
index 000000000..7239a2c83
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 000000000..f9f23d137
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
new file mode 100644
index 000000000..4ac3595dd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
new file mode 100644
index 000000000..7a225c9cc
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
new file mode 100644
index 000000000..9d99f2d66
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,31 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 000000000..fd9dac9ba
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 000000000..5b7dcf655
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 000000000..dcd19ee3b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 000000000..4c058c26f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 000000000..966aafb2b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 000000000..98b3f8c26
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..3dcad8bdd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,12 @@
+
+
+ false
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..544f893f7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,31 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..2cb83ac26
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,31 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999 +"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f253d7f71
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,93 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml
new file mode 100644
index 000000000..d17fcf1da
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..aca27f91d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,1837 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #66000000
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #00E676
+ #00E676
+ #00C853
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #FFFF6E6E
+ #FFD50000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 16dp
+ 16dp
+ 4dp
+ 16dp
+ 256dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 0.30
+ 0.26
+ 16dp
+ 0.26
+ 0.20
+ 0.12
+ 20dp
+ 800dp
+ 120dp
+ 160dp
+ 16dp
+ 64dp
+ 64dp
+ 12dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 150
+ 127
+ 2
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ android.support.design.widget.BottomSheetBehavior
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ %1$d / %2$d
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ 999+
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugResources/merger.xml b/android/build/intermediates/incremental/mergeDebugResources/merger.xml
new file mode 100644
index 000000000..becc49348
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugResources/merger.xml
@@ -0,0 +1,1522 @@
+
+"संक्षिप्त करा""क्वेरी स्पष्ट करा""शोध""%s सह सामायिक करा""सर्व पहा""एक अॅप निवडा""%1$s, %2$s, %3$s""बंद""वर नेव्हिगेट करा""चालू""शोधा…""पूर्ण झाले""क्वेरी सबमिट करा""शोध क्वेरी""यांच्यासह सामायिक करा""मुख्यपृष्ठ नेव्हिगेट करा""व्हॉइस शोध""%1$s, %2$s""अधिक पर्याय""999+""भ्वाइस खोजी""%1$s, %2$s""एउटा अनुप्रयोग छान्नुहोस्""%1$s, %2$s, %3$s""जिज्ञासा पेस गर्नुहोस्""प्रश्न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""निष्क्रिय पार्नुहोस्""साझेदारी गर्नुहोस्...""%s सँग साझेदारी गर्नुहोस्""सबै हेर्नुहोस्""सक्रिय गर्नुहोस्""सम्पन्न भयो""खोज्नुहोस्...""खोज्नुहोस्""गृह खोज्नुहोस्""९९९+""माथि खोज्नुहोस्""संक्षिप्त पार्नुहोस्""थप विकल्पहरू""Пребарај барање""Движи се нагоре""Избери апликација""Пребарај""Сподели со""Пребарување…""Гласовно пребарување""%1$s, %2$s, %3$s""Собери""Готово""Движи се кон дома""ВКЛУЧЕНО""999+""ИСКЛУЧЕНО""Поднеси барање""Види ги сите""Повеќе опции""Исчисти барање""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""DESACTIVAR""Enviar consulta""Contraer""Máis opcións""Compartir con""Ver todas""Buscar…""ACTIVAR""Ir á páxina de inicio""%1$s, %2$s""Busca de voz"">999""%1$s, %2$s, %3$s""Escoller unha aplicación"8dp580dp20dp8dp64dp524dp16dp"Mai multe opțiuni""Căutați""Afișați-le pe toate""Interogare de căutare""Navigați la ecranul de pornire""Alegeți o aplicație""˃999""ACTIVAȚI""Terminat""Restrângeți""Ștergeți interogarea""DEZACTIVAȚI""Căutați…""Trimiteți la""Căutare vocală""Trimiteți interogarea""Trimiteți la %s""%1$s, %2$s""Navigați în sus""%1$s, %2$s, %3$s"0px"Orientohu për në shtëpi""Shpërnda publikisht me %s""Dërgo pyetjen""Kërkim me zë""Shpalos""U krye!""Kërko...""%1$s, %2$s""%1$s, %2$s, %3$s""JOAKTIV""999+""Zgjidh një aplikacion""Opsione të tjera""Kërko pyetjen""Ngjitu lart""Shikoji të gjitha""Pastro pyetjen""Kërko""Shpërnda publikisht me""AKTIV""Поисковый запрос""Отправить запрос""Открыть доступ пользователю %s""%1$s, %2$s"">999""ОТКЛ.""Поиск""Перейти на главный экран""ВКЛ.""Показать все""Голосовой поиск""Открыть доступ""Выбрать приложение""Поиск""%1$s, %2$s, %3$s""Удалить запрос""Перейти вверх""Свернуть""Готово""Другие параметры""Maghanap…""I-collapse""Ibahagi sa/kay %s""Tapos na""Mag-navigate patungo sa home""%1$s, %2$s, %3$s""I-ON""Paghahanap gamit ang boses""Ibahagi sa/kay""Pumili ng isang app""Mag-navigate pataas""Isumite ang query""%1$s, %2$s""I-OFF""Maghanap""Tingnan lahat""I-clear ang query""999+""Higit pang mga opsyon""Query sa paghahanap""Ուղարկել հարցումը""Տարածել""999+""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""ՄԻԱՑՎԱԾ""ԱՆՋԱՏՎԱԾ""Որոնել""Որոնում...""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Թաքցնել""Ընտրել ծրագիր""Տարածել ըստ %s""%1$s, %2$s""%1$s, %2$s, %3$s""提交查詢""%1$s - %2$s:%3$s""選擇分享對象""%1$s:%2$s""查看全部""選擇應用程式""清除查詢""更多選項""與「%s」分享""搜尋""搜尋查詢""語音搜尋""向上瀏覽""關閉""瀏覽首頁""完成""開啟""999+""收合""搜尋…""ప్రశ్నను క్లియర్ చేయి""ఆఫ్ చేయి""వీరితో భాగస్వామ్యం చేయి""పైకి నావిగేట్ చేయండి""అనువర్తనాన్ని ఎంచుకోండి""%1$s, %2$s, %3$s""%1$s, %2$s""కుదించండి""వాయిస్ శోధన""శోధించు""%sతో భాగస్వామ్యం చేయి""999+""అన్నీ చూడండి""ఆన్ చేయి""పూర్తయింది""శోధించు...""మరిన్ని ఎంపికలు""హోమ్కు నావిగేట్ చేయండి""ప్రశ్నని సమర్పించు""ప్రశ్న శోధించండి""%1$s ၊ %2$s ၊ %3$s""ပြီးဆုံးပါပြီ""အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ""ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်""အားလုံးကို ကြည့်ရန်""ရှာဖွေပါ...""အပေါ်သို့သွားရန်""ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်""%1$s၊ %2$s""ပိတ်""%s ကို မျှဝေပါရန်""ပိုမိုရွေးချယ်စရာများ""ရှာစရာ အချက်အလက်နေရာ""မျှဝေဖို့ ရွေးပါ""ရှာဖွေရန်""အသံဖြင့် ရှာဖွေခြင်း""ခေါက်ရန်""မူလနေရာကို သွားရန်""၉၉၉+""ဖွင့်""முடிந்தது""தேடல் வினவல்""முடக்கு""மேலே வழிசெலுத்து""%s உடன் பகிர்""இதனுடன் பகிர்""தேடு...""%1$s, %2$s, %3$s""முகப்பிற்கு வழிசெலுத்து""பயன்பாட்டைத் தேர்வுசெய்க""%1$s, %2$s""மேலும் விருப்பங்கள்""வினவலை அழி""வினவலைச் சமர்ப்பி""குரல் தேடல்""இயக்கு""தேடு""999+""எல்லாம் காட்டு""சுருக்கு""Scegli un\'applicazione""Comprimi""Ricerca vocale""Cancella query""Altre opzioni""%1$s, %2$s, %3$s""Fine""Condividi con %s""999+""Visualizza tutte""OFF""Vai in alto""Cerca…""Cerca""Invia query""Condividi con""Query di ricerca""%1$s, %2$s""Vai alla home page""ON""Selecciona una aplicació""Replega""Esborra la consulta""Cerca...""Envia la consulta""%1$s, %2$s""Navega cap a dalt""%1$s, %2$s, %3$s""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""+999""DESACTIVAT""Més opcions""ACTIVAT""Bilatu""Tolestu""Joan orri nagusira""Garbitu kontsulta""Bilatu…""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""DESAKTIBATUTA""Bidali kontsulta""%1$s, %2$s, %3$s""AKTIBATUTA""Ahots bidezko bilaketa""%1$s, %2$s""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""999+"4"%1$s, %2$s – %3$s""Vyhledat…""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""ZAPNUTO""Odeslat dotaz""Sdílet pomocí""Hotovo""Sbalit""Více možností""VYPNUTO""%1$s – %2$s""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""999+""%1$s, %2$s""Bununla paylaşın""999+""Sorğunu təmizlə""Axtarış""Yuxarı get""Hamısına baxın""Axtarış sorğusu""Tətbiq seçin""Səsli axtarış""Evə get""%1$s, %2$s, %3$s""Axtarış...""Daha çox seçim""Hazırdır""DEAKTİV""Dağıt""Sorğunu göndərin""AKTİV""关闭""提交查询""转到上一层级""999+""更多选项""语音搜索""收起""转到主屏幕""%1$s:%2$s""分享方式""开启""搜索""选择应用""查看全部""%1$s - %2$s:%3$s""搜索查询""完成""清除查询""通过%s分享""搜索…""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri...""Ciutkan""NONAKTIF""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""999+""%1$s, %2$s""Selesai""%1$s, %2$s, %3$s""Hapus kueri""Kirim kueri""AKTIF""Kueri penelusuran""%1$s、%2$s""アプリの選択""検索…""OFF""検索キーワードを削除""折りたたむ""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""ON""完了""音声検索""%1$s、%2$s、%3$s""ホームへ移動""999+""Φωνητική αναζήτηση""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""Κοινή χρήση με %s""%1$s, %2$s, %3$s""%1$s, %2$s""Υποβολή ερωτήματος""Αναζήτηση…""Κοινή χρήση με""999+""Επιλέξτε κάποια εφαρμογή""ΕΝΕΡΓΟΠΟΙΗΣΗ""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Σύμπτυξη""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Meklējiet…""Skatīt visu""Izvēlieties lietotni""Pārvietoties uz sākuma ekrānu""Meklēt""Meklēšana ar balsi""Gatavs""Sakļaut""999+""Meklēšanas vaicājums""Kopīgot ar:""%1$s, %2$s: %3$s""Iesniegt vaicājumu""Vairāk opciju""IZSLĒGTS""Pārvietoties augšup""IESLĒGTS""Notīrīt vaicājumu""Kopīgot ar %s""%1$s: %2$s""Vælg en app""%1$s, %2$s""Indsend forespørgslen""FRA""TIL""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Søg…""%1$s, %2$s, %3$s""Se alle""999+""Søg""Del med""Naviger op""Skjul""Luk""Del med %s""Flere muligheder""Talesøgning""ӨШІРУЛІ""ҚОСУЛЫ""Сұрақты іздеу""Іздеу""%1$s, %2$s""Дайын""%s бөлісу""Дауыс арқылы іздеу""%1$s, %2$s, %3$s""Жоғары қозғалу""Іздеу…""Тасалау""999+""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу"256dip"সঙ্কুচিত করুন""হোম এ নেভিগেট করুন""বন্ধ""চালু""৯৯৯+""একটি অ্যাপ্লিকেশান চয়ন করুন""অনুসন্ধান...""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""%1$s, %2$s""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""%1$s, %2$s, %3$s""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান"54dip"%1$s, %2$s""Navigate home""ON""Done""See all""Voice search""Search""Choose an app""%1$s, %2$s, %3$s""Clear query""Navigate up""OFF""Share with %s""Collapse""More options""999+""Search…""Submit query""Share with""Search query""清除查詢""999 +""更多選項""提交查詢""收合""與「%s」分享""向上瀏覽""開啟""語音搜尋""顯示全部""搜尋…""選擇應用程式""搜尋""%1$s (%2$s):%3$s""完成""%1$s:%2$s""搜尋查詢""分享對象""關閉""瀏覽主頁""Selecione um app""Pesquisar""Navegar para a página inicial""Concluído""Compartilhar com""Pesquisa por voz""Recolher""DESATIVAR""%1$s, %2$s""Mais opções""Consulta de pesquisa""Enviar consulta""Ver tudo""Navegar para cima""%1$s, %2$s, %3$s""ATIVAR""Compartilhar com %s""Pesquisar...""Limpar consulta""999+""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ፈልግ…""ወደ መነሻ ይዳስሱ""በርቷል""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""%1$s፣ %2$s""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""999+""ጠፍቷል""%1$s፣ %2$s፣ %3$s""ፍለጋ""ሰብስብ""ሁሉንም ይመልከቱ"32dp14dptrue48dp12dptrue50%60%false192dip70%90%545%72%20dp14sptrue56dp@android:color/black8dp#ff2632382dp16dpSee all8dp#8a000000Share with %s48dp#1f000000Choose an app999#36ffffff#fff5f5f5#6680cbc4320dp#ff5a595bfalse@dimen/abc_control_padding_materialtrue@android:color/black#80fffffffalse@android:color/white10dpDone#ffffffff#ffe0e0e00dp4dp28dipSearch#ff616161#3900000064dp@android:color/white7dp64dp0.26#66009688#de00000012sp@color/material_deep_teal_20048dp#ff80cbc436dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light0.20@color/material_grey_5048dp2dp20dp@android:color/black56sp14sp95%100%16sp999+Collapse#ffd6d7d7-3dp%1$s, %2$s, %3$s8dip#fffafafa0.304dp#7fa87f0.12@color/material_grey_8505dp@android:color/blacktrue#33ffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp@android:color/white12714sp@dimen/abc_action_bar_content_inset_material40dp@color/material_grey_900@android:color/black@color/material_grey_10022sp320dp34sp16sp24sp12dpSearch query#ff009688#3333B5E52dp6dpNavigate up3dp0.26#80323232#ffbdbdbdMore optionsOFF220320dp20sp15024dp#4Dffffff@color/bright_foreground_material_dark32dipNavigate home0.30112sp16dp0.2616dp#ff323232160dip#fff1f1f1#ff3030300dp#b3ffffff#ff7575754dp#ff21272b16dpShare with@color/material_deep_teal_500%1$s, %2$s45sp@android:color/black#ffbebebe@color/material_grey_600#ff212121Voice searchfalse#8000000018sp18dp@color/material_grey_80048dp65%Clear querytrue#ffbdbdbd#ff424242@dimen/abc_control_inset_material#ff37474fON6dp80%trueSearch…@color/bright_foreground_disabled_material_dark"ACTIVÉ""Recherche en cours...""Revenir à l\'accueil""Partager avec %s"">999""%1$s, %2$s""Terminé""%1$s, %2$s, %3$s""Sélectionnez une application""Rechercher""Recherche vocale""Partager""Voir toutes les chaînes""Réduire""Effacer la requête""DÉSACTIVÉ""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Udostępnij dla %s""Wyczyść zapytanie""Wyszukiwanie głosowe""Więcej opcji""999+""Udostępnij dla""Gotowe""Szukaj""%1$s, %2$s, %3$s""Przejdź do strony głównej""%1$s, %2$s""Wybierz aplikację""WŁ.""Zobacz wszystkie""WYŁ.""Szukaj…""Wyszukiwane hasło""Wyślij zapytanie""Zwiń""Przejdź wyżej""999+""TẮT""Gửi truy vấn""Xóa truy vấn""Chọn một ứng dụng""Tìm kiếm…""Chia sẻ với %s""Thêm tùy chọn""Xong""Tìm kiếm bằng giọng nói""%1$s, %2$s""Xem tất cả""BẬT""Tìm kiếm""%1$s, %2$s, %3$s""Tìm kiếm truy vấn""Chia sẻ với""Điều hướng lên trên""Điều hướng về trang chủ""Thu gọn""ជម្រើសច្រើនទៀត""រួចរាល់""សម្អាតសំណួរ""ដាក់ស្នើសំណួរ""ស្វែងរកសំណួរ""ចែករំលែកជាមួយ %s""%1$s, %2$s, %3$s""មើលទាំងអស់""ការស្វែងរកសំឡេង""បើក""រកមើលឡើងលើ""បិទ""ចែករំលែកជាមួយ""រកមើលទៅដើម""%1$s, %2$s""ស្វែងរក""999+""បង្រួម""ជ្រើសកម្មវិធី""ស្វែងរក…""КҮЙҮК""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""%1$s, %2$s, %3$s""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Жыйнап коюу""Талаптарды тазалоо""Издөө…""ӨЧҮК""Талап жөнөтүү""%1$s, %2$s""Даяр""Көбүрөөк мүмкүнчүлүктөр""999+""Жогору""AV""%1$s, %2$s, %3$s""Dela med"">999""Visa alla""%1$s, %2$s""Sök …""PÅ""Sök""Ta bort frågan""Navigera uppåt""Fler alternativ""Dela med %s""Klart""Röstsökning""Sökfråga""Skicka fråga""Välj en app""Visa startsidan""Komprimera""વૉઇસ શોધ""ઉપર નેવિગેટ કરો""આની સાથે શેર કરો""%1$s, %2$s""થઈ ગયું""બંધ""સંકુચિત કરો""શોધો""હોમ પર નેવિગેટ કરો""બધું જુઓ""શોધો…""%s સાથે શેર કરો""%1$s, %2$s, %3$s""એક એપ્લિકેશન પસંદ કરો""શોધ ક્વેરી""ક્વેરી સાફ કરો""ચાલુ""ક્વેરી સબમિટ કરો""વધુ વિકલ્પો""999+"5192dip"Krmarjenje navzgor""Deljenje z:""Iskanje""IZKLOPLJENO""Deljenje z""Krmarjenje domov""Glasovno iskanje""Strni""Izbira aplikacije""Iskalna poizvedba""%1$s, %2$s, %3$s""Končano""Iskanje …""Pošiljanje poizvedbe""Pokaži vse""VKLOPLJENO""%1$s, %2$s""Izbris poizvedbe""999+""Več možnosti""Vymazať dopyt""Hľadať""Prejsť na plochu""Zobraziť všetko""Zdieľať pomocou""ZAP.""Hlasové vyhľadávanie""Zbaliť""Vyhľadať…""Vyhľadávací dopyt""Zdieľať pomocou %s""%1$s, %2$s""Ďalšie možnosti""Prejsť hore""%1$s, %2$s, %3$s""VYP.""Odoslať dopyt""Zvoľte aplikáciu""Hotovo""999+"false"Tafuta""%1$s, %2$s""Shiriki na:""Shiriki na %s""Hoja ya utafutaji""Chagua programu""999+""Futa hoja""Nenda mwanzo""Tafuta…""Wasilisha hoja""Tafuta kwa kutamka""Nenda juu""Nimemaliza""Chaguo zaidi""Kunja""Angalia zote""IMEZIMWA""%1$s, %2$s, %3$s""IMEWASHWA""سکیڑیں""استفسار صاف کریں""استفسار جمع کرائیں""اشتراک کریں مع""اوپر نیویگیٹ کریں""ہوم پر نیویگیٹ کریں""آف""صوتی تلاش""مزید اختیارات""%s کے ساتھ اشتراک کریں""تلاش کریں…""استفسار تلاش کریں""ایک ایپ منتخب کریں""آن""سبھی دیکھیں""تلاش کریں""999+""%1$s, %2$s, %3$s""%1$s, %2$s""ہو گیا""Enviar consulta""%1$s, %2$s""Consulta de pesquisa""Partilhar com %s""Mais opções""Partilhar com""Escolher uma aplicação""DESATIVADO""Concluído""Navegar para a página inicial""%1$s, %2$s, %3$s""Pesquisar""Reduzir""Pesquisar...""Limpar consulta""Ver tudo""Pesquisa por voz""+999""Navegar para cima""ATIVADO""ສົ່ງການຊອກຫາ""ໂຕເລືອກອື່ນ""ແບ່ງປັນກັບ %s""ຫຍໍ້""ປິດ""ລຶບຂໍ້ຄວາມຊອກຫາ""999+""ຊອກຫາດ້ວຍສຽງ""ຂຶ້ນເທິງ""ເລືອກແອັບຯ""ຊອກຫາ""%1$s, %2$s, %3$s""ຊອກຫາ""ແບ່ງປັນກັບ""ເປີດ""ກັບໄປໜ້າຫຼັກ""%1$s, %2$s""ເບິ່ງທັງຫມົດ""ແລ້ວໆ""ຊອກຫາ"truetrue"Bir uygulama seçin""Daralt""Sorguyu temizle""999+""Şununla paylaş""AÇ""Yukarı git""%1$s, %2$s""Diğer seçenekler""%1$s, %2$s, %3$s""Tamamlandı""Ara…""Sorguyu gönder""%s ile paylaş""KAPAT""Arama sorgusu""Sesli arama""Tümünü göster""Ana ekrana git""Ara"truefalse"მოთხოვნის გადაგზავნა""ხმოვანი ძიება""%1$s, %2$s""მოთხოვნის გასუფთავება""გაზიარება:""აკეცვა""%1$s, %2$s, %3$s""მეტი ვარიანტები""ჩართულია""999+""%s-თან გაზიარება""გამორთულია""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიება...""ძიების მოთხოვნა""999+""Leita""Fara heim""%1$s, %2$s""Leitarfyrirspurn""Deila með""%1$s, %2$s, %3$s""Leita…""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""KVEIKT""Deila með %s""Senda fyrirspurn""SLÖKKT""Sjá allt""Minnka""Lokið""Fara upp""Veldu forrit""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಹುಡುಕಿ…""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%1$s, %2$s, %3$s""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""%1$s, %2$s""ಸಂಕುಚಿಸು""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಆನ್""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""999+""ಧ್ವನಿ ಹುಡುಕಾಟ""ಆಫ್"192dip440dptruetrue60%90%80%60%90%55%4"අවසාන වූ""සෙවුම් විමසුම""999+""ඉහලට සංචාලනය කරන්න""විමසුම යොමු කරන්න""යෙදුමක් තෝරන්න""%1$s, %2$s""සොයන්න...""විමසුම හිස් කරන්න""සියල්ල බලන්න""%1$s, %2$s, %3$s""සමඟ බෙදාගන්න""%s සමඟ බෙදාගන්න""ගෙදරට සංචාලනය කරන්න""ක්රියාවිරහිතයි""සෙවීම""තවත් විකල්ප""හඬ සෙවීම""හකුළන්න""ක්රියාත්මකයි""ค้นหาด้วยเสียง""เสร็จสิ้น""999+""นำทางไปหน้าแรก""แชร์กับ""เปิด""ยุบ""ปิด""แชร์กับ %s""ส่งข้อความค้นหา""%1$s, %2$s""%1$s, %2$s, %3$s""นำทางขึ้น""ตัวเลือกอื่น""ดูทั้งหมด""ข้อความค้นหา""ค้นหา…""ค้นหา""เลือกแอป""ล้างข้อความค้นหา""اشتراکگذاری با""انتخاب برنامه""%1$s، %2$s""%1$s، %2$s، %3$s""ارسال عبارت جستجو""کوچک کردن""پیمایش به صفحه اصلی""گزینههای بیشتر""جستجو""جستجوی شفاهی""خاموش""۹۹۹+""عبارت جستجو""اشتراکگذاری با %s""جستجو…""پیمایش به بالا""مشاهده همه""تمام""پاک کردن عبارت جستجو""روشن""Išvalyti užklausą""Pasirinkti programą""IŠJUNGTI""Pateikti užklausą""Sutraukti""Bendrinti naudojant „%s“""Eiti į viršų""Ieškoti...""Bendrinti naudojant""999+""%1$s, %2$s""Paieška balsu""Atlikta""Paieškos užklausa""Eiti į pagrindinį puslapį""Paieška""%1$s, %2$s, %3$s""ĮJUNGTI""Daugiau parinkčių""Peržiūrėti viską""Хайх""Нүүр хуудас руу шилжих""Нэмэлт сонголтууд""Бүгдийг харах""Хайх...""Хайх асуулга""%1$s, %2$s""Хуваалцах""ИДЭВХГҮЙ""%s-тай хуваалцах""Асуулгыг цэвэрлэх""%1$s, %2$s, %3$s""Апп сонгох""999+""Дууссан""Дуут хайлт""ИДЭВХТЭЙ""Дээш шилжих""Асуулгыг илгээх""Хумих""Päringu tühistamine""%1$s, %2$s, %3$s""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Ahendamine""Päringu esitamine""Jagamine:""SEES""Rohkem valikuid""Otsingupäring""999+""Kuva kõik""Otsige …""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""%1$s, %2$s""VÄLJAS""%1$s, %2$s, %3$s""פועל""מחק שאילתה""חפש""בחר אפליקציה""ראה הכל""כבוי""שתף עם %s""עוד אפשרויות""בוצע""חפש…""שלח שאילתה""999+""שאילתת חיפוש""נווט לדף הבית""%1$s, %2$s""חיפוש קולי""שתף עם""נווט למעלה""כווץ""%1$s, %2$s, %3$s""Voice search""OFF""Submit query""See all""Clear query""Navigate home""ON""Done""More options""Search""999+""%1$s, %2$s""Search…""Search query""Collapse""Navigate up""Share with""Choose an app""Share with %s""Valmis""KÄYTÖSSÄ""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Kutista""999+""POIS KÄYTÖSTÄ""Tyhjennä kysely""Puhehaku""%1$s, %2$s, %3$s""Hakulauseke""Jakaminen: %s""%1$s, %2$s""Haku…""%1$s, %2$s, %3$s""Yuqoriga o‘tish""So‘rovni tozalash""Tayyor""Dastur tanlang""Boshiga o‘tish""Qidirish""%1$s, %2$s""Barchasini ko‘rish""So‘rovni izlash""Qidirish…""O‘CHIQ""Ovozli qidiruv""So‘rov yaratish""Qo‘shimcha sozlamalar""Yig‘ish""YONIQ""999+""Bo‘lishish:""Submit query""Voice search""%1$s, %2$s""More options""ON""Search…""%1$s, %2$s, %3$s""Search query""Share with %s""OFF""Collapse""See all""Choose an app""999+""Done""Share with""Search""Clear query""Navigate home""Navigate up"false"Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""DÉSACTIVÉ""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""%1$s, %2$s""Partager avec %s""Effacer la requête""Réduire"">999""ACTIVÉ""%1$s, %2$s, %3$s""Rechercher…""Recherche vocale""ਸਵਾਲ ਖੋਜੋ""ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ""ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ""ਹੋ ਗਿਆ""ਬੰਦ""%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ""%1$s, %2$s, %3$s""ਸਭ ਦੇਖੋ""ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ""ਖੋਜੋ""ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ""%1$s, %2$s""ਇੱਕ ਐਪ ਚੁਣੋ""ਸਵਾਲ ਹਟਾਓ""ਨਸ਼ਟ ਕਰੋ""999+""ਤੇ""ਹੋਰ ਚੋਣਾਂ""ਖੋਜ…""ਵੌਇਸ ਖੋਜ""Buscar…""Buscar""NO""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""SÍ""Ir a la pantalla de inicio""+999""Compartir con %s""Desplazarse hacia arriba""%1$s, %2$s, %3$s""Búsqueda por voz""Listo""Contraer""%1$s, %2$s""Más opciones""Compartir con""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""%1$s, %2$s, %3$s""Dodatne opcije""UKLJUČENO""Sažmi""ISKLJUČENO""Glasovno pretraživanje""Dijeljenje sa: %s""%1$s, %2$s""999+""Pretražite…""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""ഇവരുമായി പങ്കിടുക""തിരയുക…""തിരയൽ""%1$s, %2$s""ഓൺ""തിരയൽ അന്വേഷണം""%s എന്നതുമായി പങ്കിടുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""999+""കൂടുതല് ഓപ്ഷനുകള്""പൂർത്തിയാക്കി""ശബ്ദ തിരയൽ""%1$s, %2$s, %3$s""ചുരുക്കുക""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""അന്വേഷണം മായ്ക്കുക""ഓഫ്""അന്വേഷണം സമർപ്പിക്കുക""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Összecsukás""Megosztás a következővel: %s""%1$s, %2$s, %3$s""Hangalapú keresés""KI""999+""Kész""BE""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Keresés…""%1$s, %2$s""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Meer opties""Gereed""UIT""Navigeren naar startpositie""Alles weergeven""Gesproken zoekopdracht""Samenvouwen""999+""AAN""Zoeken""Een app selecteren""Delen met %s""Zoeken…""Zoekopdracht""Delen met""Zoekopdracht wissen""Zoekopdracht verzenden""%1$s, %2$s""Omhoog navigeren""%1$s, %2$s, %3$s""Търсене""„%1$s“ – %2$s""Търсете…""Още опции""Заявка за търсене""ИЗКЛ.""999+""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""„%1$s“, „%2$s“ – %3$s""Изберете приложение""Гласово търсене""Придвижване нагоре""ВКЛ.""Придвижване към „Начало“""Вижте всички""Споделяне със:""Свиване""Soeknavraag""Sien alles""%1$s, %2$s""Deel met""Kies \'n program""AF""Soek …""Soek""999+""Stemsoektog""Deel met %s""Navigeer tuis""%1$s, %2$s, %3$s""Nog opsies""Vou in""Vee navraag uit""Klaar""AAN""Dien navraag in""Navigeer op""%1$s – %2$s – %3$s""Flere alternativer""Del med %s""PÅ""Del med""Se alle""Slett søket""Søk""Søkeord""Velg en app""Gå til startsiden""AV""Søk …""Ferdig""Skjul""%1$s – %2$s""999+""Gå opp""Utfør søket""Talesøk""पूर्ण""%1$s, %2$s, %3$s""ध्वनि खोज""क्वेरी साफ़ करें""%s के साथ साझा करें""संक्षिप्त करें""अधिक विकल्प""कोई एप्लिकेशन चुनें""बंद""सभी देखें""खोज क्वेरी""मुख्यपृष्ठ पर नेविगेट करें""खोजें""999+""चालू""इसके द्वारा साझा करें""ऊपर नेविगेट करें""%1$s, %2$s""खोजा जा रहा है…""क्वेरी सबमिट करें""Sprachsuche""%1$s: %2$s""An""Weitere Optionen""Minimieren""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Suchen…""Freigeben für""Suchen""Freigeben für %s""Nach oben""Aus""999+""App auswählen""Suchanfrage senden""%1$s, %2$s: %3$s""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""검색...""%1$s, %2$s, %3$s""음성 검색""%1$s, %2$s""검색어 보내기""사용 안함""접기""공유 대상""완료""사용""홈 탐색""전체 보기""앱 선택""999+"3"محو طلب البحث""خيارات إضافية""إيقاف""تشغيل""تصغير""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""%1$s، %2$s، %3$s""اختيار تطبيق""بحث…""التنقل إلى الشاشة الرئيسية""+999""مشاركة مع %s""البحث الصوتي""بحث""%1$s، %2$s""مشاركة مع""عرض الكل""Navegar a la página principal""Elige una aplicación.""Buscar…""Navegar hacia arriba""Búsqueda por voz""ACTIVAR""999+""Consulta de búsqueda""%1$s, %2$s, %3$s""DESACTIVAR""Enviar consulta""Compartir con""Contraer""Listo""Compartir con %s""Más opciones""%1$s, %2$s""Eliminar la consulta""Ver todo""Búsqueda""Limpar consulta""Mais opções""Compartilhar com %s""Recolher""%1$s, %2$s""ATIVAR""Enviar consulta""Navegar para cima""Concluído""Consulta de pesquisa""%1$s, %2$s, %3$s""DESATIVAR""Navegar para a página inicial""Ver tudo""Compartilhar com""999+""Pesquisar""Pesquisa por voz""Selecione um app""Pesquisar...""Пошуковий запит""ВИМК.""Вибрати програму""Пошук""999+""Переглянути всі""Голосовий пошук""Надіслати через %s""%1$s, %2$s, %3$s""Пошук…""УВІМК.""Перейти на головний""Інші опції""%1$s, %2$s""Згорнути""Очистити запит""Готово""Надіслати запит""Надіслати через""Перейти вгору""Одлазак на Почетну""%1$s, %2$s, %3$s""Избор апликације""Претражите...""Дели са апликацијом %s""УКЉУЧИ""Још опција""ИСКЉУЧИ""Слање упита""%1$s, %2$s"">999""Гласовна претрага""Кретање нагоре""Скупи""Брисање упита""Претрага""Готово""Дели са""Упит за претрагу""Прикажи све""Runtuhkan""Pilih apl""Selesai""%1$s, %2$s""Lagi pilihan""Lihat semua""Carian suara""Kongsi dengan %s""Navigasi skrin utama""Navigasi ke atas""Cari""999+""MATI""%1$s, %2$s, %3$s""Kongsi dengan""Pertanyaan carian""Serah pertanyaan""Kosongkan pertanyaan""HIDUP""Cari…""Iyasesha...""%1$s, %2$s""Hambisa umbuzo""Yabelana no-%s""%1$s, %2$s, %3$s""Izinketho eziningi""Kwenziwe""Umbuzo wosesho""Zulazulela phezulu""Sula inkinga""Sesha""VULIWE""Yabelana no-""Goqa""VALIWE""Ukusesha ngezwi""Khetha uhlelo lokusebenza""Zulazulela ekhaya""Buka konke""999+"MarkdownView800dp120dp20dp0dp@dimen/design_snackbar_padding_vertical576dp24dp320dp12dp320dp160dp128dp#44000000280dp14sp0dp%1$d / %2$d8dp@android:color/transparent14sp24dp-1px264dp0dp#0F000000#1400000056dp150#1AFFFFFF4dp#FFFF6E6E8dp32dp#3232326dp2#FFD5000016dp12dp40dp-1px16dp24dpandroid.support.design.widget.AppBarLayout$ScrollingViewBehavior24dp#0A000000256dpandroid.support.design.widget.BottomSheetBehavior72dp#2EFFFFFF6dp12sp6dp14dp0.5dpFetching JS bundleCatalyst Dev SettingsDev SettingsReload JSDebug JSInspeccionar elementoEspera...Unable to download JS bundleDebug JSShow InspectorDev SettingsReload JSCatalyst Dev SettingsFetching JS bundlePlease wait...Unable to download JS bundleDev SettingsFetching JS bundleПроверить элементCatalyst Dev SettingsDebug JSUnable to download JS bundleПодождите...Reload JSFetching JS bundleDebug JS檢查元素Reload JSDev SettingsUnable to download JS bundle請稍候……Catalyst Dev SettingsEsamina elementoDebug JSAttendi...Unable to download JS bundleCatalyst Dev SettingsReload JSDev SettingsFetching JS bundleDebug JSReload JSCatalyst Dev SettingsProzkoumat prvekFetching JS bundleUnable to download JS bundleČekejte prosím...Dev Settings[Show Inspector#c1b106c92869437ebd88f326d632b973:1][Debug JS#2010fa256bd28603b686da2713bb843a:1][Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1][Please wait...#71bad104a80f916d3bfb1ffa23a487af:1][Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1][Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1][Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1][Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]Reload JSCatalyst Dev SettingsUnable to download JS bundleFetching JS bundle请稍等...检查元素Dev SettingsDebug JSDebug JSDev SettingsHarap tunggu...Catalyst Dev SettingsUnable to download JS bundleFetching JS bundleReload JSPeriksa ElemenDebug JSしばらくお待ちくださいCatalyst Dev SettingsReload JSUnable to download JS bundleDev Settings要素を確認Fetching JS bundleDebug JSFetching JS bundleΕξέταση στοιχείουCatalyst Dev SettingsUnable to download JS bundleReload JSDev SettingsΠεριμένετε...Inspicer elementUnable to download JS bundleFetching JS bundleVent venligst...Catalyst Dev SettingsDebug JSDev SettingsReload JSCatalyst Dev SettingsDebug JS(तत्व निरीक्षण गर्नुहोस्)Fetching JS bundleDev SettingsUnable to download JS bundle(অনুগ্রহ করে অপেক্ষা করুন….)Reload JSDebug JSUnable to download JS bundle請稍候……Reload JSCatalyst Dev SettingsFetching JS bundleDev Settings檢查項目Dev SettingsDisable Perf MonitorEnable Hot Module ReplacementHide InspectorCatalyst Dev SettingsStop ProfileFetching JS bundleShow InspectorStart ProfileDisable Hot Module ReplacementPlease wait…Enable Perf MonitorUnable to connect with remote debugger#eecc0000Disable Live ReloadDebug in ChromeStop Chrome DebuggingReload JSEnable Live ReloadUnable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081Connecting to remote debuggerReload JSDev SettingsDebug JSUnable to download JS bundleZaczekaj...Catalyst Dev SettingsZbadaj elementFetching JS bundleFetching JS bundleKiểm tra phần tửDebug JSReload JSDev SettingsCatalyst Dev SettingsUnable to download JS bundleVui lòng đợi...Debug JSCatalyst Dev SettingsInspektionselementFetching JS bundleReload JSUnable to download JS bundleVänta ...Dev SettingsDebug JSDev SettingsReload JSShow InspectorAguarda...Catalyst Dev SettingsUnable to download JS bundleFetching JS bundleÖğeyi DenetleDebug JSCatalyst Dev SettingsUnable to download JS bundleLütfen bekleyin...Fetching JS bundleReload JSDev SettingsUnable to download JS bundleโปรดรอ...Debug JSFetching JS bundleตรวจสอบอิลิเมนต์Catalyst Dev SettingsReload JSDev SettingsUnable to download JS bundlePlease wait...Show InspectorDev SettingsFetching JS bundleReload JSDebug JSCatalyst Dev SettingsTarkista elementtiUnable to download JS bundleOdota…Catalyst Dev SettingsFetching JS bundleReload JSDebug JSDev SettingsInspecter l’élémentReload JSDev SettingsDebug JSFetching JS bundleCatalyst Dev SettingsUnable to download JS bundleVeuillez patienter...Unable to download JS bundleEspera...Catalyst Dev SettingsInspeccionar elementoDev SettingsReload JSDebug JSFetching JS bundleDev SettingsFetching JS bundleReload JSCatalyst Dev SettingsKérjük, várj...Unable to download JS bundleElem megtekintéseDebug JSEven geduld...Reload JSUnable to download JS bundleDev SettingsDebug JSElement inspecterenCatalyst Dev SettingsFetching JS bundleReload JSUnable to download JS bundleVent litt ...Dev SettingsDebug JSInspiser elementFetching JS bundleCatalyst Dev SettingsReload JSCatalyst Dev SettingsDebug JSElement untersuchenBitte warten Sie ...Unable to download JS bundleFetching JS bundleDev SettingsDebug JSReload JSUnable to download JS bundle기다려주세요...Fetching JS bundleCatalyst Dev SettingsDev Settings요소 검사Dev SettingsDebug JSReload JSUnable to download JS bundleAguarde...Fetching JS bundleCatalyst Dev SettingsShow Inspector
+
+
+
+ 取消圖片處理器已開啟已掃瞄圖片自動標籤稍後about.md"看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"分享Storage FolderTelegram 群組在 Telegram 上討論本項目您是否想刪除已選圖片?B&W mode以 Bitcoin 捐贈GitHub 上的項目經下列應用程式分享傳送訊息給開發者傳送用量統計給開發者。掃瞄的內容不會被傳送否傳送訊息您是否想刪除本圖片?Google Play圖片處理器已關閉正在下載 OpenCV Manager直接下載刪除前往設定掃瞄圖片瀏覽器Open Note Scanner買杯咖啡給我您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。旋轉圖片 180º顏色模式手動模式使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它確認基本設定掃瞄筆記和文件的好應用程式接受很多種信用卡如部份裝置的相機令影像上下倒轉,此設定能使其回復正常是標籤自動模式經下列應用程式分享連結您是否想從 GitHub 下載 OpenCV Manager?分享本應用程式回饋及貢獻大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度使用預覽長寬比用量統計Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。關於正在下載設定安裝 OpenCV Manager正在找尋文件\n再次點擊來掃瞄整張圖片Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。圖庫用量統計Sets where the scanned files should be stored如果您喜歡本應用程式並覺得它有用,您可考慮捐贈64dpElaboratore immagine non attivoImpostazioni di baseModalità automaticaElaboratore immagine attivoImpostazioniConfermaImposta dove verranno archiviati i file acquisitiDona usando la cripto-valuta BitcoinOffrimi un caffèLa maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprimaInvia messaggioStatistiche di utilizzoEtichettaAbilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.Chiacchiera su Telegram dell\'applicazioneStatistiche di utilizzoNoScaricamento di OpenCV ManagerEliminare questa immagine?Invia un messaggio allo sviluppatoreSe ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazioneInformazioniConfronta risoluzione anteprimaAlcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine correttaVai alle impostazioni"Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.Modalità bianco e neroInvia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessiCondividi questa appCartella di archiviazionePer funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.Scaricare OpenCV Manager da GitHub?Modalità coloreModalità manualeImposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina specialeCondividi il link attraversoImmagini acquisiteRuota immagine di 180ºGoogle PlayQuesta applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHubAnnullaEliminaInstallare OpenCV ManagerOpen Note ScannerProgetto su GitHubVisualizzatore immagini acquisiteSìEtichette automaticheCondividiEliminare le immagini selezionate?Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagineGruppo TelegramGalleriaCondividi immagini attraversoDownload direttoScaricamento in corsoSplendida applicazione per acquisire note e documentiMolte carte di credito sono accettatePiù tardiFeedback e contributiabout-it.mdSmazatPřejete si stáhnout OpenCV Manager z GitHub?ŠtítekPoslat zprávuPoslat zprávu vývojáři Automaticky"Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "AnoO aplikaciNastaveníTato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránkuPřispěj pomocí kryptoměny BitcoinStahování OpenCV ManagerSrovnat poměr stran náhleduOskenované obrázkyDefinuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoruChcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.Skupina TelegramBarevněStatistiky používáníZ důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.Prohlížeč oskenovaných obrázkůZrušitPokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispěníOpen Note ScannerPřejete si smazat vybrané obrázky?Přejete si smazat tento obrázek?Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblastiNeKup mi kafeZasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.PozdějiMluv o projektu na TelegramuGoogle PlaySdíletSdílet aplikaciSdílet odkaz přesZpracování obrázku ZapnoutAutomatické značeníZpracování obrázku VypnoutNěkterá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.Statistiky používáníČernobíléPřímé stáhnutíSložka uložištěZpětná vazba a příspěvkyPotvrditabout-cs.mdInstalovat OpenCV ManagerUrčuje, kde budou naskenované soubory uloženyOtočit obraz o 180ºVětšina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhleduPřijímáno mnoho druhů kreditních karetGalerieSkvělá aplikace pro skenování poznámek a dokumentůJít do nastaveníManuálněProjekt na GitHubStahováníSdílet obrázky přesZákladní nastaveníOpenCV Manager のダウンロード中GitHub 上のプロジェクトフィードバックと貢献イメージプロセッサ オン自動モードTelegram でプロジェクトについてチャットいいえ後で共有キャンセル特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義しますギャラリーほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します画像をスキャンしましたGoogle PlayBuy me a coffee自動タグ付けabout-ja.mdスキャンした画像のビューアー多くのクレジットカードを受け付けます文書の検索中\nもう一度タップすると画像全体をスキャンしますTelegram グループ一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整しますこのアプリを共有Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。設定に移動画像を共有...白黒モードストレージ フォルダーはい基本設定タグ使用統計イメージプロセッサ オフ確認このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討くださいダイレクトダウンロードOpenCV Manager をインストールメッセージを送信Bitcoin 暗号通貨を使用して寄付しますOpen Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。ダウンロード中プレビューのアスペクト比に一致スキャンしたファイルを保存する場所を設定しますアプリについてOpen Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できますカラーモード開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません開発者にメッセージを送信しますOpen Note Scannerリンクを共有...GitHub から OpenCV Manager をダウンロードしますか?このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます"メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "この画像を削除しますか?画像を 180º 回転設定手動モード削除使用統計情報スキャンした画像を削除しますか?メモや文書をスキャンする素晴らしいアプリ#66000000#00C853#00E676#00E67616dp160dp16dp16dp16dpProject on GitHubSend message to developerDownloading OpenCV ManagerGoogle Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.GalleryConfirmDo you want to download OpenCV Manager from GitHub?Go to SettingsImages ScannedImage Processor OffUsage StatisticsSend various usage statistics to developer. No content data will be sentIn order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.LaterBuy me a coffeeChat about the project on TelegramYesAutomatic TaggingShareTelegram GroupDo you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen."Take a look at this great app that scans notes, drawings and documents through your camera: "Donate using Bitcoin cryptocurrencyFeedback and contributionsThis application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s pageDownloadingScanned Image ViewerSearching for document\nTap again to scan whole imageUsage StatsDeleteShare this AppDefine automatic tags to be applied on marked scans using the special page templateGoogle PlaySettingsDo you want to delete the selected images?Some devices have the camera upside down, this setting adjusts everything to make senseSets where the scanned files should be storedInstall OpenCV ManagerOpen Note ScannerB&W modeAutomatic ModeIf you like this application and think it is useful, you may consider making a donationDo you want to delete this image?Rotate Image 180ºCancelNoDirect DownloadMatch preview aspect ratioabout.mdWow, such app, many usefulManual ModeStorage FolderDoc scanMany credit cards acceptedGreat app to scan notes and documentsColor ModeShare link throughMost devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of previewTagSend MessageImage Processor OnAboutShare images throughBasic Settings
+
+
+ @android:drawable/ic_menu_share@android:drawable/ic_menu_camera@android:drawable/ic_menu_send@android:drawable/ic_menu_manage@android:drawable/ic_menu_gallery@android:drawable/ic_menu_slideshowGoogle PlaySupprimerGoogle Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.Partager cette applicationPartager les images viaMode couleurMode noir&blancCette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projetTéléchargement en directTéléchargement d\'OpenCV Manager en coursEnvoyer un message au développeurRecherche du document\nAppuyer à nouveau pour numériser l\'image entièreSi vous aimez cette application et que vous la trouvez utile, vous pouvez faire un donDiscutez à propos de ce projet sur TelegramLa majorité des cartes de crédit sont acceptéesVoulez-vous supprimer les images sélectionnées ?Aller aux paramètresStatistiques d\'utilisationConfirmerVoulez-vous télécharger OpenCV Manager depuis GitHub?Retours d\'utilisation et contributionsNonOffrez moi un caféOuiVisionneuse d\'image numériséePartagerGalerieÉtiquetage automatiqueLa plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisationOpen Note ScannerCertains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compteTraitement d\'image activéFaire un don en crypto-monnaie BitcoinDéfinir où seront enregistrées les images numériséesVoir le projet sur GitHubPlus tardMode automatiqueStats d\'utilisationVoulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.Traitement d\'image désactivéVoulez-vous supprimer cette image ?"Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "ParamètresGroupe TelegramÉtiquetteDéfinir automatiquement les étiquettes en utilisant des modèles de page spéciauxabout-fr.mdSuperbe application pour numériser des notes et des documentsEnvoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmiseA proposMode manuelDossier d\'enregistrementAnnulerParamètres principauxImages numériséesTéléchargement en coursPour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.Utiliser le ratio d\'aspect de la prévisualisationPartager l\'application viaEnvoyer un messageRotation de 180º de l\'imageInstaller OpenCV ManagerCompartir imágenes conSiComentarios y contribucionesSi te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionaciónGran aplicación para escanear notas y documentosEtiquetaMuchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.Modo ManualEnviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenidoCarpeta de almacenamientoGaleríaNoBuscando documento\nPulsa de nuevo para escanear la imagen completaVisor de imagen escaneadaChat sobre el proyecto en TelegramCompartirGoogle Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.about-es.mdEnviar un mensaje a un desarrolladorProcesador de imagen activadoPágame un caféProcesador de imagen desactivadoConfiguración BásicaImágenes escaneadasAlgunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correctoGoogle PlayCancelarDonar usando la criptomoneda BitcoinInstalar OpenCV ManagerDefinir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especialEliminarEstadísticas de usoEsta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.Acerca deDescargando OpenCV ManagerModo ColorProyecto en GitHubEstablecer dónde se deben almacenar los archivos escaneadosModo AutomáticoModo Blanco y negroMantener relacción de aspectoIr a las configuracionesConfiguraciónEtiquetado Automático"Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "Enviar mensajeEstadísticas de usoAcepta diversas tarjetas de créditoGrupo en Telegram¿Quieres descargar OpenCV Manager desde GitHub?¿Quieres eliminar esta imagen?Compartir esta aplicaciónDespuésCon el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.Rotar imagen 180ºConfirmarDescarga directaOpen Note Scanner¿Quieres eliminar las imágenes seleccionadas?Compartir enlace conDescargandoSpendieren Sie mir einen KaffeeTagWollen Sie die ausgewählten Bilder löschen?Storage FolderFarb-ModusWenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die WeiterentwicklungOpenCV Manager installierenJaabout-de.mdLink teilen überGalerieZu den EinstellungenFeedback und BeiträgeSuper App zum Scannen von Notizen und DokumentenDiese App teilenLade OpenCV Manager herunterManueller ModusBild um 180º drehenSpäterGescannte BilderMöchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.EinstellungenNutzungsstatistikenNeinDiese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern"Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "Chatten Sie über das Projekt auf TelegramUm zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.Google PlayTeilenAutomatisches TaggingBildnachbearbeitung AusAbbrechenLöschenÜberWollen Sie OpenCV Manager von GitHub herunterladen?HerunterladenSpenden Sie mit der Kryptowährung BitcoinOpen Note ScannerS/W-ModusAutomatischer ModusManche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibtDokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannenNachricht an den Entwickler sendenNutzungsstatistikenDirekter DownloadGoogle Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.An Seitenverhältnis der Vorschau angleichenSets where the scanned files should be storedBestätigenWollen Sie dieses Bild löschen?Telegram GruppeProjekt auf GitHubBildnachbearbeitung EinDefinieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werdenViele verschiedene Kreditkarten werden akzeptiertBilder teilen überNachricht sendenSende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendetBetrachter für gescannte BilderDie meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmtGrundeinstellungenVisualizador de imagens capturadasCompartilhar AplicativoBaixando OpenCV ManagerChat sobre o projeto no TelegramConfiguraçõesManter relação de aspectoCompartilhar usandoDeseja baixar o OpenCV Manager a partir do GitHub?Configurações BásicasModo em coresTags automáticasDefine as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especialDeseja deletar esta imagem?Pasta de ArmazenamentoModo preto & brancoRotaciona a imagem em 180ºAceita vários cartões de créditoabout-pt.mdModo manualEstatísticas de UsoCancelarProcessador de Imagem DesativadoEnvia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviadaExcluirComentários e contribuiçõesDepoisModo AutomáticoEsta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHubEstatísticas de UsoNãoCompartilhar link porDownload diretoÓtimo aplicativo para escanear anotações e documentosVocê deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.Buscando documento\nClique novamente para capturar imagem inteiraProcessador de Imagem AtivadoProjeto no GitHubGoogle PlayAlguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique corretoDeseja deletar as imagens selecionadas?"Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "GaleriaCompartilharIr a ConfiguraçõesBaixandoDefine a pasta de armazenamento das imagensPara funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.Enviar mensagemGoogle Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-laDocument scannerSimConfirmeSobreInstalar OpenCV ManagerEnviar mensagem ao desenvolvedorMarcaçãoGrupo no TelegramMuitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doaçãoDoar utilizando a criptomoeda BitcoinPague-me um caféImagens capturadas
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 000000000..b0f26e2e0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml
new file mode 100644
index 000000000..998af09a7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
new file mode 100644
index 000000000..4b0992a52
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties b/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties
new file mode 100644
index 000000000..da0d2ca32
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties
@@ -0,0 +1,1010 @@
+#Thu Feb 06 12:25:07 CET 2020
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/design_error.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/design_error.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_action_bar_item_background_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_linear_out_slow_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_linear_out_slow_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_media_action.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_snackbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_snackbar.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_text_btn_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_btn_text_btn_ripple_color.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/button_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/button_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/mtrl_snackbar_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/mtrl_snackbar_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_part_chronometer.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_icon.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-hdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_delete_white_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-anydpi-v21/design_ic_visibility_off.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility_off.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_action.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_action.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/tooltip_frame_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_bottom_sheet_dialog.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_dialog_material_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_camera_green.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_camera_green.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_snackbar_include.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_bg.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/notification_bg.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_simple_overlay_action_mode.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_settings.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_multichoice_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_menu_overflow_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_text_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_chip_text_color.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_flash_on_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_flash_on_24dp.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/angle.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_popup_exit.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_item_title.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/round_button.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/round_button.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_vector_test.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_go_search_api_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_icon_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-mdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_gift.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_checked_black.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_black.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_radio.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v16/notification_template_custom_big.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v16/notification_template_custom_big.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_monochrome.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_template_custom_big.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_collapse_spec.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_popup_menu_header_item_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_spinner.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_item_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_bar_title_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_star.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_star.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim-v21/design_bottom_sheet_slide_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_voice_search_api_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_btn_colored_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_toolbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_menu_tag.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/navigation_empty_icon.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/navigation_empty_icon.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_fast_out_slow_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_slow_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_icon_group.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_icon_group.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xxxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_item_background_holo_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_separator.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_separator.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_done_all_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_done_all_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/tooltip_frame_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_chip_state_list_anim.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_chip_state_list_anim.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_background_cache_hint_selector_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/angle.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/angle.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_thumb_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_open_note_scanner.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_tabs_ripple_color.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_part_time.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_spinner.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_tab_icon.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_fab_out.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_stroke_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_btn_stroke_color_selector.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_arrow_back_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_hide_motion_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_fab_hide_motion_spec.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxhdpi-v4/design_ic_visibility.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_textfield_search_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_linear_out_slow_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator/mtrl_linear_out_slow_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_find_in_page.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/design_tint_password_toggle.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/design_tint_password_toggle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xhdpi-v4/design_ic_visibility_off.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility_off.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_bottom_sheet_slide_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/xml/preferences.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/xml/preferences.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_full_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_launcher_background.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v21/abc_btn_colored_borderless_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_indicator_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_game.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_cab_background_top_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_disable_only_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxxhdpi-v4/design_ic_visibility.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/anim/catalyst_push_up_out.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_edit_text_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_fab_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_seek_thumb.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_menu.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_menu.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_action_tombstone.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/xml/preferences.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/xml/preferences.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-mdpi-v4/design_ic_visibility.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_edittext.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_fast_out_slow_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_slow_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_default.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_default.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_fullscreen_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_fullscreen_view.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_secondary_text_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_menu_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_flash_on_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_snackbar_out.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_list_divider_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_settings.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_bottom_nav_item_tint.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_item_tint.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_bottom_navigation_item_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_bottom_navigation_item_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_btn_checkable.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-watch-v20/abc_dialog_material_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_fab_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_clear_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_ab_back_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_gift.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_gift.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_dialog_material_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_game.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_game.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_bar_view_list_nav_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_launcher_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_launcher_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-hdpi-v4/design_ic_visibility.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_find_in_page.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_btn_colored_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xhdpi-v4/ic_launcher_round.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_menu_tag.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_track_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_default.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/switch_thumb_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_in_bottom.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_mode_bar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_action_tombstone.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_action_tombstone.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_camera.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_camera.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_camera_green.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_big_media_narrow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_colored_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_tabs_colored_ripple_color.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_snackbar_out.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_snackbar_out.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v11/abc_background_cache_hint_selector_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_subheader.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/side_nav_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/side_nav_bar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_tooltip_exit.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_btn_ripple_color.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_magnet.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_magnet.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-anydpi-v26/ic_launcher.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_tooltip.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_snackbar_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/gallery_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/gallery_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_bell.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/design_password_eye.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/design_password_eye.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_bell.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_bottom_sheet_slide_out.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_out.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-sw600dp-v13/mtrl_layout_snackbar.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_tab_text.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_borderless_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-hdpi-v4/ic_launcher_round.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_checkbox.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/angle.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_colored_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_colored_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_text_input_password_icon.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_text_input_password_icon.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/mtrl_layout_snackbar_include.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar_include.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_done_all_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_out_top.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/menu/menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/switch_thumb_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_fab_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_fab_ripple_color.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-anydpi-v26/ic_launcher_round.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/avd_hide_password.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/avd_hide_password.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/xml/settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/xml/settings.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_mode_close_item_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_bg_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_btn_bg_color_selector.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_tick_mark_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_fast_out_linear_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_linear_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/design_bottom_navigation_item_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/design_bottom_navigation_item_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_tab_icon.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_tab_icon.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-v21/notification_action_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_fade_out.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_holo_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_find_in_page.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_menu_tag.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_edittext.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_bar_up_container.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/anim/catalyst_push_up_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_bottom_sheet_dialog.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_bottom_sheet_dialog.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_snackbar_include.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_snackbar_include.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_btn_colored_borderless_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_btn_colored_borderless_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_btn_checkable.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_search_api_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_monochrome.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_hint_foreground_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-hdpi-v4/design_ic_visibility_off.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility_off.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_hint_foreground_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator-v21/design_appbar_state_list_animator.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator-v21/design_appbar_state_list_animator.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_colored_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_cab_background_internal_bg.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_bottom_navigation_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_bottom_navigation_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_big_media.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_launcher_background.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_singlechoice_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_header.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_launcher_background.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_tab_text.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_tab_text.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_menu_item_action_area.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_menu_item_action_area.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_fab_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_fab_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-mdpi-v4/design_ic_visibility_off.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility_off.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout-sw600dp-v13/design_layout_snackbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-sw600dp-v13/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_content_include.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_close_icon_tint.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_chip_close_icon_tint.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/support_simple_spinner_dropdown_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_menu_item_action_area.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_background_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_chip_background_color.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_find_in_page.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_find_in_page.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_dialog_title_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_in_top.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_icon_color_selector_colored.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector_colored.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_frame.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_material_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_share.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_share.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_show_motion_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_fab_show_motion_spec.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout-v26/abc_screen_toolbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_star.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/avd_show_password.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/avd_show_password.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/tageditor_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/tageditor_view.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_spinner_textfield_background_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_tab_indicator_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_monochrome.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_monochrome.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_close_circle.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_close_circle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_search_dropdown_item_icons_2line.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_legacy_text_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_tabs_legacy_text_color_selector.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_btn_colored_borderless_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_switch_track.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_media.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_imagepager.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/menu/menu_imagepager.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_menu_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_manage.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_manage.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/design_fab_hide_motion_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/design_fab_hide_motion_spec.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_item_background_holo_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_main.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_main.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_btn_state_list_anim.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_btn_state_list_anim.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/fps_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/fps_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_header.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_header.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_tv.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_tv.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_small_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-sw600dp-v13/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-anydpi-v21/design_ic_visibility.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_gift.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout-watch-v20/abc_alert_dialog_title_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/mtrl_tabs_default_indicator.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/mtrl_tabs_default_indicator.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/angle.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_linear.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator/mtrl_linear.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_action.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_template_icon_group.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-mdpi-v4/ic_launcher_round.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/fps_view.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/fps_view.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_launcher_background.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility_off.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_find_in_page.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_search_url_text.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_simple.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/mtrl_layout_snackbar.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_palette.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_shrink_fade_out_from_bottom.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_menu_tag.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_menu_tag.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_item_frame.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_select_dialog_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxhdpi-v4/design_ic_visibility_off.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility_off.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_activity_chooser_view.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_expand_spec.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_divider_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_divider_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_check_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_monochrome.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-hdpi-v4/notification_bg_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v24/ic_launcher_foreground.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v24/ic_launcher_foreground.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_media_cancel_action.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_alert_dialog_title_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_snackbar_background.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_snackbar_background.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_bottom_nav_colored_item_tint.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_colored_item_tint.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_popup_menu_item_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_rocket.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_tv.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_checked_circle.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_circle.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim-v21/design_bottom_sheet_slide_out.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_menu_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_menu_item.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_menu_item_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_text_cursor_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_tag_bell.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_tooltip_enter.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_cascading_menu_item_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_settings.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_switch_thumb_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/activity_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-mdpi-v4/notification_bg_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_fast_out_linear_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_linear_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-mdpi-v4/ic_launcher.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_subheader.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_subheader.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_settings.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_tv.png
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/anim/blink.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/blink.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_settings.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/layout_fullscreen_image.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/layout_fullscreen_image.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_edit_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_fade_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_color_highlight_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_bg_low.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xhdpi-v4/design_ic_visibility.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v11/abc_background_cache_hint_selector_material_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_snackbar_in.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_snackbar_in.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_btn_colored_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item_separator.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_text_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_btn_text_color_selector.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_view.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_layout_snackbar.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v23/abc_control_background_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_disable_only_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_search_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_rocket.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_rocket.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_default_mtrl_shape.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_palette.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_radio_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_alert_dialog_button_bar_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_bell.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_tag_bell.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_expanded_menu_layout.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_ripple_color.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_chip_ripple_color.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_holo_dark.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_btn_unelevated_state_list_anim.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/mtrl_btn_unelevated_state_list_anim.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_send.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_send.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_arrow_back_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/notification_template_lines.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_out_bottom.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_alert_dialog_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_snackbar_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/layout/redbox_item_title.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_tag_rocket.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_edit_text_material.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_edit_text_material.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_tile_bg.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_background_cache_hint_selector_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_popup_enter.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/design_fab_show_motion_spec.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/animator/design_fab_show_motion_spec.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_activity_chooser_view_list_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.facebook.react/react-native/0.19.1/res/anim/catalyst_push_up_out.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_item.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color-v23/design_tint_password_toggle.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/design_tint_password_toggle.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_palette.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_palette.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-xxxhdpi-v4/ic_launcher.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/mipmap-hdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_slideshow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_slideshow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/design_navigation_menu.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_search_view.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_search_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_secondary_text_material_light.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_password_eye.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/design_password_eye.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/ic_flash_on_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_icon_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/ic_flash_on_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_switch_track.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_text_btn_text_color_selector.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color/mtrl_text_btn_text_color_selector.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/ic_flash_on_24dp.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_seek_thumb.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/ic_tag_game.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_grow_fade_in_from_bottom.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/about_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/about_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-v21/ic_menu_gallery.xml
+/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml
new file mode 100644
index 000000000..d8fe69b85
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigeer tuis"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksie+"
+ "Meta+"
+ "Shift+"
+ "spasiebalk"
+ "Simbool+"
+ "Kieslys+"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "Soek"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml
new file mode 100644
index 000000000..102913578
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,32 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "Alt+"
+ "Ctrl+"
+ "ሰርዝ"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "ምናሌ+"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር አጋራ"
+ "ሰብስብ"
+ "ፈልግ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml
new file mode 100644
index 000000000..e7fb419b6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,32 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "القائمة+"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "البحث"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml
new file mode 100644
index 000000000..2287e53bb
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml
@@ -0,0 +1,32 @@
+
+
+ "গৃহ পৃষ্ঠালৈ যাওক"
+ "ওপৰলৈ যাওক"
+ "অধিক বিকল্প"
+ "সম্পন্ন কৰা হ\'ল"
+ "সকলো চাওক"
+ "এটা এপ্ বাছনি কৰক"
+ "অফ কৰক"
+ "অন কৰক"
+ "Alt+"
+ "CTRL+"
+ "মচক"
+ "এণ্টাৰ"
+ "ফাংশ্বন+"
+ "মেটা+"
+ "শ্বিফ্ট+"
+ "স্পেচ"
+ "Sym+"
+ "মেনু+"
+ "অনুসন্ধান কৰক…"
+ "প্ৰশ্ন মচক"
+ "সন্ধান কৰিব খোজা প্ৰশ্ন"
+ "সন্ধান কৰক"
+ "প্ৰশ্ন দাখিল কৰক"
+ "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক"
+ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"
+ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক"
+ "সংকুচিত কৰক"
+ "অনুসন্ধান কৰক"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml
new file mode 100644
index 000000000..8bbbd5bf7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml
@@ -0,0 +1,32 @@
+
+
+ "Evə naviqasiya et"
+ "Yuxarı get"
+ "Digər variantlar"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Alt+"
+ "Ctrl+"
+ "silin"
+ "daxil olun"
+ "Funksiya+"
+ "Meta+"
+ "Shift+"
+ "kosmos"
+ "Sym+"
+ "Menyu+"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "%s ilə paylaşın"
+ "Yığışdırın"
+ "Axtarış"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
new file mode 100644
index 000000000..77f07c21f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
@@ -0,0 +1,32 @@
+
+
+ "Odlazak na Početnu"
+ "Kretanje nagore"
+ "Još opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Izbor aplikacije"
+ "ISKLJUČI"
+ "UKLJUČI"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "taster za razmak"
+ "Sym+"
+ "Menu+"
+ "Pretražite..."
+ "Brisanje upita"
+ "Upit za pretragu"
+ "Pretraga"
+ "Slanje upita"
+ "Glasovna pretraga"
+ "Deli sa"
+ "Deljenje sa aplikacijom %s"
+ "Skupi"
+ "Pretraži"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml
new file mode 100644
index 000000000..a0019be89
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml
@@ -0,0 +1,32 @@
+
+
+ "Перайсці на галоўную старонку"
+ "Перайсці ўверх"
+ "Дадатковыя параметры"
+ "Гатова"
+ "Прагледзець усё"
+ "Выбраць праграму"
+ "ВЫКЛ."
+ "УКЛ."
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Прабел"
+ "Sym +"
+ "Меню +"
+ "Пошук..."
+ "Выдалiць запыт"
+ "Запыт на пошук"
+ "Пошук"
+ "Адправіць запыт"
+ "Галасавы пошук"
+ "Абагуліць з"
+ "Абагуліць праз праграму %s"
+ "Згарнуць"
+ "Пошук"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml
new file mode 100644
index 000000000..ce1cb44f2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,32 @@
+
+
+ "Придвижване към „Начало“"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "клавиша за интервал"
+ "Sym+"
+ "Menu+"
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "Търсене"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml
new file mode 100644
index 000000000..b9e182a29
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml
@@ -0,0 +1,32 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরও বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান বেছে নিন"
+ "বন্ধ"
+ "চালু"
+ "Alt+"
+ "Ctrl+"
+ "মুছুন"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "স্পেস"
+ "Sym+"
+ "মেনু+"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী খুঁজুন"
+ "খুঁজুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে শেয়ার করুন"
+ "%s এর সাথে শেয়ার করুন"
+ "সঙ্কুচিত করুন"
+ "খুঁজুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml
new file mode 100644
index 000000000..bc8630d80
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml
@@ -0,0 +1,32 @@
+
+
+ "Vrati se na početnu stranicu"
+ "Navigiraj prema gore"
+ "Više opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Odaberite aplikaciju"
+ "ISKLJUČI"
+ "UKLJUČI"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "razmaknica"
+ "Sym+"
+ "Menu+"
+ "Pretraži..."
+ "Obriši upit"
+ "Pretraži upit"
+ "Traži"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeli sa"
+ "Dijeli koristeći aplikaciju %s"
+ "Skupi"
+ "Pretraži"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml
new file mode 100644
index 000000000..833039e10
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,32 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Alt+"
+ "Ctrl+"
+ "Supr"
+ "Retorn"
+ "Funció+"
+ "Meta+"
+ "Maj+"
+ "Espai"
+ "Sym+"
+ "Menú+"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "Cerca"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml
new file mode 100644
index 000000000..e0cd2287a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,40 @@
+
+
+ "Přejít na plochu"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mezerník"
+ "Sym+"
+ "Menu+"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet s aplikací %s"
+ "Sbalit"
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Hledat"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml
new file mode 100644
index 000000000..1389c3ca5
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,40 @@
+
+
+ "Naviger hjem"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mellemrum"
+ "Sym+"
+ "Menu+"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Søg"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml
new file mode 100644
index 000000000..701bcebda
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,40 @@
+
+
+ "Zur Startseite"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Alt +"
+ "Strg +"
+ "Löschen"
+ "Eingabetaste"
+ "Funktionstaste +"
+ "Meta-Taste +"
+ "Umschalttaste +"
+ "Leertaste +"
+ "Sym-Taste +"
+ "Menütaste +"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Mit %s teilen"
+ "Minimieren"
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Suchen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml
new file mode 100644
index 000000000..a1c6b5a5b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,40 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "διάστημα"
+ "Sym+"
+ "Menu+"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Αναζήτηση"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..1483da872
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml
new file mode 100644
index 000000000..52e1a7d78
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..edb852403
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,32 @@
+
+
+ "Navegar a la página principal"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt+"
+ "Ctrl+"
+ "borrar"
+ "intro"
+ "Función+"
+ "Meta+"
+ "Mayúscula+"
+ "espacio"
+ "Sym+"
+ "Menú+"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "Buscar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml
new file mode 100644
index 000000000..089c267f4
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,40 @@
+
+
+ "Ir a la pantalla de inicio"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt +"
+ "Ctrl +"
+ "Eliminar"
+ "Intro"
+ "Función +"
+ "Meta +"
+ "Mayús +"
+ "Espacio"
+ "Sym +"
+ "Menú +"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Buscar"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml
new file mode 100644
index 000000000..05be6e993
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigeerimine avaekraanile"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Alt +"
+ "Ctrl +"
+ "kustutamisklahv"
+ "sisestusklahv"
+ "Funktsiooniklahv +"
+ "Meta +"
+ "Tõstuklahv +"
+ "tühik"
+ "Sym +"
+ "Menüü +"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine rakendusega %s"
+ "Ahendamine"
+ "Otsing"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml
new file mode 100644
index 000000000..8c0987505
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml
@@ -0,0 +1,32 @@
+
+
+ "Joan orri nagusira"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Alt +"
+ "Ktrl +"
+ "Ezabatu"
+ "Sartu"
+ "Funtzioa +"
+ "Meta +"
+ "Maius +"
+ "Zuriunea"
+ "Sym +"
+ "Menua +"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahozko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s aplikazioarekin"
+ "Tolestu"
+ "Bilatu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml
new file mode 100644
index 000000000..90b289806
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,32 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "کلید فاصله"
+ "Sym+"
+ "منو+"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی گفتاری"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "جستجو"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb/values-fb.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml
new file mode 100644
index 000000000..1e7e988b3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,40 @@
+
+
+ "Siirry etusivulle"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Vaihto+"
+ "välilyönti"
+ "Sym+"
+ "Valikko+"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jaa sovelluksessa %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Haku"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..f71cf031c
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,32 @@
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ "Rechercher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml
new file mode 100644
index 000000000..9baa4619d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,40 @@
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Rechercher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml
new file mode 100644
index 000000000..d0081c605
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml
@@ -0,0 +1,32 @@
+
+
+ "Ir á páxina de inicio"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "Intro"
+ "Función +"
+ "Meta +"
+ "Maiús +"
+ "espazo"
+ "Sim +"
+ "Menú +"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "Buscar"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml
new file mode 100644
index 000000000..0a3b83b40
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml
@@ -0,0 +1,32 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "ઉપર નૅવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક ઍપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "Alt+"
+ "Ctrl+"
+ "ડિલીટ કરો"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Spacebar"
+ "Sym+"
+ "મેનૂ+"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%sની સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "શોધો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml
new file mode 100644
index 000000000..6576cb742
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,32 @@
+
+
+ "होम पेज पर जाएं"
+ "ऊपर जाएं"
+ "ज़्यादा विकल्प"
+ "हो गया"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "सर्च क्वेरी"
+ "सर्च करें"
+ "क्वेरी सबमिट करें"
+ "आवाज़ सर्च"
+ "इसके साथ शेयर करें"
+ "%s के साथ शेयर करें"
+ "छोटा करें"
+ "सर्च"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml
new file mode 100644
index 000000000..2c3e6ae8a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,32 @@
+
+
+ "Idi na početnu"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "razmaknica"
+ "Sym+"
+ "Menu+"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeli putem aplikacije %s"
+ "Sažmi"
+ "Pretraživanje"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml
new file mode 100644
index 000000000..4a9a48193
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,40 @@
+
+
+ "Ugrás a főoldalra"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Szóköz"
+ "Sym+"
+ "Menu+"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következő alkalmazással: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Keresés"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml
new file mode 100644
index 000000000..3247f9af2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml
@@ -0,0 +1,32 @@
+
+
+ "Ուղղվել տուն"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Պատրաստ է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "բացատ"
+ "Sym+"
+ "Menu+"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Կիսվել"
+ "Ուղարկել %s-ին"
+ "Թաքցնել"
+ "Որոնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml
new file mode 100644
index 000000000..db17beb4b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigasi ke beranda"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "spasi"
+ "Sym+"
+ "Menu+"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan ke %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Telusuri"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml
new file mode 100644
index 000000000..58321f7b8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml
@@ -0,0 +1,32 @@
+
+
+ "Fara heim"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Aðgerðarlykill+"
+ "Meta+"
+ "Shift+"
+ "bilslá"
+ "Sym+"
+ "Valmynd+"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "Leita"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 000000000..8e89b66eb
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,40 @@
+
+
+ "Vai alla home page"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "ALT +"
+ "CTRL +"
+ "CANC"
+ "INVIO"
+ "FUNZIONE +"
+ "META +"
+ "MAIUSC +"
+ "barra spaziatrice"
+ "SYM +"
+ "MENU +"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi tramite %s"
+ "Comprimi"
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Ricerca"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml
new file mode 100644
index 000000000..ed74d5718
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,32 @@
+
+
+ "נווט לדף הבית"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "מקש רווח"
+ "Sym+"
+ "תפריט+"
+ "חיפוש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חיפוש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "חיפוש"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml
new file mode 100644
index 000000000..60678c3ed
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,40 @@
+
+
+ "ホームへ移動"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "Menu+"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "検索"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml
new file mode 100644
index 000000000..8e91c0ac9
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml
@@ -0,0 +1,32 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "Alt+"
+ "Ctrl+"
+ "წაშლა"
+ "შეყვანა"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "გაუზიარეთ %s-ს"
+ "აკეცვა"
+ "ძიება"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml
new file mode 100644
index 000000000..d9596d09c
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml
@@ -0,0 +1,32 @@
+
+
+ "Негізгі бетте қозғалу"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "бос орын"
+ "Sym+"
+ "Mәзір+"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s қолданбасымен бөлісу"
+ "Тасалау"
+ "Іздеу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml
new file mode 100644
index 000000000..57735d238
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml
@@ -0,0 +1,32 @@
+
+
+ "រកមើលទៅដើម"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "ស្វែងរក"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml
new file mode 100644
index 000000000..1e2402bd6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml
@@ -0,0 +1,32 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕಿ"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "ಹುಡುಕಿ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml
new file mode 100644
index 000000000..c67693104
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,40 @@
+
+
+ "홈 탐색"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "Alt+"
+ "Ctrl+"
+ "삭제"
+ "입력"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "스페이스바"
+ "Sym+"
+ "Menu+"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "검색"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml
new file mode 100644
index 000000000..7a8bb7f4b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml
@@ -0,0 +1,32 @@
+
+
+ "Үйгө багыттоо"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "боштук"
+ "Sym+"
+ "Menu+"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "Издөө"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml
new file mode 100644
index 000000000..5d6577909
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,10 @@
+
+
+ 48dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..c0ec67a31
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,14 @@
+
+
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml
new file mode 100644
index 000000000..589107abd
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml
@@ -0,0 +1,32 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນດ້ວຍ %s"
+ "ຫຍໍ້"
+ "ຊອກຫາ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 000000000..6cf0bd31a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,32 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTA"
+ "ĮJUNGTI"
+ "„Alt“ +"
+ "„Ctrl“ +"
+ "„Delete“"
+ "„Enter“"
+ "„Function“ +"
+ "„Meta“ +"
+ "„Shift“ +"
+ "tarpo klavišas"
+ "„Sym“ +"
+ "„Menu“ +"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant programą „%s“"
+ "Sutraukti"
+ "Paieška"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 000000000..cb1560186
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,32 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Alternēšanas taustiņš +"
+ "Vadīšanas taustiņš +"
+ "dzēšanas taustiņš"
+ "ievadīšanas taustiņš"
+ "Funkcijas taustiņš +"
+ "Meta taustiņš +"
+ "Pārslēgšanas taustiņš +"
+ "atstarpes taustiņš"
+ "Simbolu taustiņš +"
+ "Poga Izvēlne +"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar lietojumprogrammu %s"
+ "Sakļaut"
+ "Meklēt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml
new file mode 100644
index 000000000..6036a05dc
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml
@@ -0,0 +1,32 @@
+
+
+ "Движи се кон дома"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "копче Alt+"
+ "копче Ctrl+"
+ "избриши"
+ "копче enter"
+ "копче Function+"
+ "копче Meta+"
+ "копче Shift+"
+ "вселена"
+ "копче Sym+"
+ "Мени+"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Сподели со %s"
+ "Собери"
+ "Пребарај"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml
new file mode 100644
index 000000000..99bafe5c2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml
@@ -0,0 +1,32 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതൽ ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "Alt+"
+ "Ctrl+"
+ "ഇല്ലാതാക്കുക"
+ "enter"
+ "ഫംഗ്ഷന്+"
+ "മെറ്റ+"
+ "Shift+"
+ "സ്പെയ്സ്"
+ "Sym+"
+ "മെനു+"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദതിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s-മായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "തിരയുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml
new file mode 100644
index 000000000..3b3db0e27
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml
@@ -0,0 +1,32 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Alt+"
+ "Ctrl+"
+ "устгах"
+ "оруулах"
+ "Функц+"
+ "Мета+"
+ "Shift+"
+ "зай"
+ "Sym+"
+ "Цэс+"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "Хайлт"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml
new file mode 100644
index 000000000..3ccf8cb73
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml
@@ -0,0 +1,32 @@
+
+
+ "होमवर नेव्हिगेट करा"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "Alt+"
+ "Ctrl+"
+ "हटवा"
+ "एंटर करा"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "spacebar"
+ "Sym+"
+ "मेनू+"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह शेअर करा"
+ "%s सह शेअर करा"
+ "संक्षिप्त करा"
+ "शोधा"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml
new file mode 100644
index 000000000..6823a82fe
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigasi skrin utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Alt+"
+ "Ctrl+"
+ "padam"
+ "enter"
+ "Fungsi+"
+ "Meta+"
+ "Shift+"
+ "ruang"
+ "Sym+"
+ "Menu+"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "Cari"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml
new file mode 100644
index 000000000..8d301b2c7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml
@@ -0,0 +1,32 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ဖြင့် မျှဝေရန်"
+ "ခေါက်ရန်"
+ "ရှာဖွေပါ"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 000000000..efc117de3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,40 @@
+
+
+ "Gå til startsiden"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksjon+"
+ "Meta+"
+ "Shift+"
+ "mellomrom"
+ "Sym+"
+ "Meny+"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Søk"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml
new file mode 100644
index 000000000..d7b12d5ce
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml
@@ -0,0 +1,32 @@
+
+
+ "गृह खोज्नुहोस्"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग आदान प्रदान गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "खोज्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml
new file mode 100644
index 000000000..811c958f8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigeren naar startpositie"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Alt +"
+ "Ctrl +"
+ "verwijderen"
+ "enter"
+ "Functie +"
+ "Meta +"
+ "Shift +"
+ "spatie"
+ "Sym +"
+ "Menu +"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Zoeken"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml
new file mode 100644
index 000000000..80994f898
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml
@@ -0,0 +1,32 @@
+
+
+ "ହୋମ୍ ପେଜ୍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"
+ "ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"
+ "ଅଧିକ ବିକଳ୍ପ"
+ "ହୋଇଗଲା"
+ "ସବୁ ଦେଖନ୍ତୁ"
+ "ଗୋଟିଏ ଆପ୍ ବାଛନ୍ତୁ"
+ "ଅଫ୍"
+ "ଅନ୍"
+ "Alt+"
+ "Ctrl+"
+ "ଡିଲିଟ୍"
+ "ଏଣ୍ଟର୍"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "ସ୍ପେସ୍"
+ "Sym+"
+ "ମେନୁ"
+ "ସର୍ଚ୍ଚ…"
+ "କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ"
+ "ସର୍ଚ୍ଚ କ୍ୱେରୀ"
+ "ସର୍ଚ୍ଚ କରନ୍ତୁ"
+ "କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ"
+ "ଭଏସ୍ ସର୍ଚ୍ଚ"
+ "ଏହାଙ୍କ ସହ ଶେୟାର୍ କରନ୍ତୁ"
+ "%s ସହ ଶେୟାର୍ କରନ୍ତୁ"
+ "ଛୋଟ କରନ୍ତୁ"
+ "ସର୍ଚ୍ଚ କରନ୍ତୁ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml
new file mode 100644
index 000000000..8fde8f72b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml
@@ -0,0 +1,32 @@
+
+
+ "ਹੋਮ \'ਤੇ ਜਾਓ"
+ "ਉੱਪਰ ਜਾਓ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਖੋਜ ਪੁੱਛਗਿੱਛ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"
+ "%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "ਖੋਜੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml
new file mode 100644
index 000000000..e0df0f676
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,40 @@
+
+
+ "Przejdź do strony głównej"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Funkcyjny+"
+ "Meta+"
+ "Shift+"
+ "spacja"
+ "Sym+"
+ "Menu+"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij przez: %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Szukaj"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..8178115bc
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,32 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..f85fbcf43
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,40 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "enter"
+ "Função +"
+ "Meta +"
+ "Shift +"
+ "espaço"
+ "Sym +"
+ "Menu +"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com a aplicação %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml
new file mode 100644
index 000000000..5f14aeb9b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,40 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml
new file mode 100644
index 000000000..34a7ac953
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigați la ecranul de pornire"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funcție+"
+ "Meta+"
+ "Shift+"
+ "spațiu"
+ "Sym+"
+ "Meniu+"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți folosind %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Căutați"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 000000000..6a4536117
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,40 @@
+
+
+ "Перейти на главный экран"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Ввод"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Пробел"
+ "Sym +"
+ "Меню +"
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ приложению \"%s\""
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Поиск"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml
new file mode 100644
index 000000000..2cdb33871
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml
@@ -0,0 +1,32 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "Alt+"
+ "Ctrl+"
+ "මකන්න"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදා ගන්න"
+ "හකුළන්න"
+ "සොයන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml
new file mode 100644
index 000000000..0d84abcef
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,32 @@
+
+
+ "Prejsť na plochu"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYPNUTÉ"
+ "ZAPNUTÉ"
+ "Alt+"
+ "Ctrl+"
+ "odstrániť"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "medzerník"
+ "Sym+"
+ "Menu+"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať s aplikáciou %s"
+ "Zbaliť"
+ "Vyhľadávanie"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml
new file mode 100644
index 000000000..86652aee1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,32 @@
+
+
+ "Krmarjenje domov"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "preslednica"
+ "Sym +"
+ "Meni +"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z drugimi prek aplikacije %s"
+ "Strni"
+ "Iskanje"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml
new file mode 100644
index 000000000..9e1578ddf
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml
@@ -0,0 +1,32 @@
+
+
+ "Orientohu për në shtëpi"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksioni+"
+ "Meta+"
+ "Shift+"
+ "hapësirë"
+ "Sym+"
+ "Menyja+"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Ndaje me %s"
+ "Shpalos"
+ "Kërko"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml
new file mode 100644
index 000000000..91ae9aff4
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,32 @@
+
+
+ "Одлазак на Почетну"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "тастер за размак"
+ "Sym+"
+ "Menu+"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дељење са апликацијом %s"
+ "Скупи"
+ "Претражи"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml
new file mode 100644
index 000000000..3c77cc836
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,40 @@
+
+
+ "Visa startsidan"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Alt + "
+ "Ctrl + "
+ "delete"
+ "retur"
+ "Funktion + "
+ "Meta + "
+ "Skift + "
+ "blanksteg"
+ "Symbol + "
+ "Meny + "
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Sök"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml
new file mode 100644
index 000000000..12b137853
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,32 @@
+
+
+ "Nenda mwanzo"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Alt+"
+ "Ctrl+"
+ "futa"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "nafasi"
+ "Sym+"
+ "Menyu+"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki ukitumia %s"
+ "Kunja"
+ "Tafuta"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..38e39e768
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,25 @@
+
+
+ 24dp
+ 80dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+
+ 160dp
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml
new file mode 100644
index 000000000..d9f29b6e4
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml
@@ -0,0 +1,32 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "மேலே செல்"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "ஆஃப்"
+ "ஆன்"
+ "ஆல்ட் மற்றும்"
+ "கண்ட்ரோல் மற்றும்"
+ "டெலிட்"
+ "எண்டர்"
+ "ஃபங்ஷன் மற்றும்"
+ "மெட்டா மற்றும்"
+ "ஷிஃப்ட் மற்றும்"
+ "ஸ்பேஸ்"
+ "சிம்பல் மற்றும்"
+ "மெனு மற்றும்"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s மூலம் பகிர்"
+ "சுருக்கு"
+ "தேடு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml
new file mode 100644
index 000000000..54f0b16a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml
@@ -0,0 +1,32 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "స్పేస్"
+ "Sym+"
+ "Menu+"
+ "వెతుకు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "వెతుకు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయండి"
+ "కుదించండి"
+ "వెతుకు"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml
new file mode 100644
index 000000000..23602fd42
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,40 @@
+
+
+ "นำทางไปหน้าแรก"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "เมนู+"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์ทาง %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "ค้นหา"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml
new file mode 100644
index 000000000..18a148fbc
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,32 @@
+
+
+ "Mag-navigate patungo sa home"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi gamit ang %s"
+ "I-collapse"
+ "Maghanap"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml
new file mode 100644
index 000000000..a5a86ed65
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,40 @@
+
+
+ "Ana ekrana git"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Bitti"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Alt+"
+ "Ctrl+"
+ "sil"
+ "enter"
+ "İşlev+"
+ "Meta+"
+ "Üst Karakter+"
+ "boşluk"
+ "Sym+"
+ "Menü+"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Ara"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml
new file mode 100644
index 000000000..c1d3da798
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,32 @@
+
+
+ "Перейти на головний"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "пробіл"
+ "Sym+"
+ "Menu+"
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Поділитися через додаток %s"
+ "Згорнути"
+ "Пошук"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml
new file mode 100644
index 000000000..6b717f4c2
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml
@@ -0,0 +1,32 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "تلاش"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml
new file mode 100644
index 000000000..053764c5c
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml
@@ -0,0 +1,32 @@
+
+
+ "Boshiga o‘tish"
+ "Yuqoriga o‘tish"
+ "Boshqa parametrlar"
+ "Tayyor"
+ "Hammasi"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "Probel"
+ "Sym+"
+ "Menyu+"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Ruxsat berish"
+ "%s orqali ulashish"
+ "Yig‘ish"
+ "Qidirish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml
new file mode 100644
index 000000000..5ee2feb23
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml
@@ -0,0 +1,8 @@
+
+
+ 4dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 000000000..f85a197ad
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml
new file mode 100644
index 000000000..98cfca4e1
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,308 @@
+
+
+ @color/secondary_text_default_material_light
+ 0dp
+ 0dp
+ 12dp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml
new file mode 100644
index 000000000..484f6d174
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml
new file mode 100644
index 000000000..f9b3c08d6
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml
new file mode 100644
index 000000000..483ae0c46
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml
new file mode 100644
index 000000000..8b28a4651
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml
new file mode 100644
index 000000000..e3801cd9a
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml
new file mode 100644
index 000000000..e5d550ce7
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,40 @@
+
+
+ "Điều hướng về trang chủ"
+ "Điều hướng lên trên"
+ "Tùy chọn khác"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "phím cách"
+ "Sym+"
+ "Menu+"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Tìm kiếm"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml
new file mode 100644
index 000000000..2d85812e0
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml
new file mode 100644
index 000000000..deecc9e8d
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..b499d2cf3
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,9 @@
+
+
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..f2e12f4a8
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,40 @@
+
+
+ "转到主屏幕"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "Alt+"
+ "Ctrl+"
+ "Delete 键"
+ "Enter 键"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "空格键"
+ "Sym+"
+ "Menu+"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "使用%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜索"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..8068f581b
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,40 @@
+
+
+ "瀏覽主頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "刪除"
+ "Enter 鍵"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "空白鍵"
+ "Sym +"
+ "Menu +"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "使用「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜尋"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..68a7da6ee
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,40 @@
+
+
+ "瀏覽首頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "Delete 鍵"
+ "Enter 鍵"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "空格鍵"
+ "Sym +"
+ "Menu +"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜尋"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml
new file mode 100644
index 000000000..31e318ddb
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,32 @@
+
+
+ "Zulazulela ekhaya"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Alt+"
+ "Ctrl+"
+ "susa"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Imenyu+"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana ne-%s"
+ "Goqa"
+ "Sesha"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..918184a61
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml
@@ -0,0 +1,4520 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #FF424242
+ #FFFFFFFF
+ #03000000
+ #37000000
+ #eecc0000
+ #14000000
+ #3F51B5
+ #303F9F
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #ff7043
+ #ff5722
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ #1F000000
+ #61000000
+ #00ffffff
+ #52000000
+ #6B000000
+ #1F000000
+ #0A000000
+ #DE000000
+ #ffffffff
+ #ff9e9e9e
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+ #e6616161
+ #e6FFFFFF
+ 16dp
+ 72dp
+ 56dp
+ 0dp
+ 0dp
+ 4dp
+ 16dp
+ 10dp
+ 6dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 720dp
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 2dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 8dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 4dp
+ 48dip
+ 320dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 14sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 1dp
+ 2dp
+ 2dp
+ 4dp
+ 6dp
+ 8dp
+ 4dp
+ 2dp
+ 320dp
+ 320dp
+ 4dp
+ 168dp
+ 96dp
+ 14sp
+ 8dp
+ 56dp
+ 24dp
+ 96dp
+ 56dp
+ 8dp
+ 1dp
+ 12sp
+ 16dp
+ 64dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 16dp
+ 32dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 5dp
+ 0.30
+ 0.26
+ 8dp
+ 0dp
+ 50dp
+ 0.26
+ 0.20
+ 0.12
+ 0.50
+ 0.38
+ 0.70
+ 0.54
+ 20dp
+ 800dp
+ 120dp
+ 60dp
+ 5dp
+ 8dp
+ 0dp
+ 56dp
+ 4dp
+ 64dp
+ 0dp
+ 0dp
+ 2dp
+ 2dp
+ 2dp
+ 12dp
+ 8dp
+ 6dp
+ 0.07
+ 4dp
+ 16dp
+ 16dp
+ 4dp
+ 6dp
+ 1dp
+ 4dp
+ 8dp
+ 8dp
+ 14sp
+ 0dp
+ 1dp
+ 8dp
+ 3dp
+ 14sp
+ 6dp
+ 2dp
+ 6dp
+ 0dp
+ 22dp
+ 14dp
+ 4dp
+ 8dp
+ 3dp
+ 4dp
+ 0dp
+ 4dp
+ 12dp
+ 1dp
+ 2dp
+ 16dp
+ 56dp
+ 32dp
+ 13sp
+ 12dp
+ 8dp
+ 64dp
+ 64dp
+ 10dp
+ @dimen/notification_content_margin_start
+ 16dp
+ 2dp
+ 3dp
+ 24dp
+ 13sp
+ 10dp
+ 5dp
+ 2dp
+ 16dp
+ 8dp
+ 8dp
+ 96dp
+ 6.5dp
+ 0dp
+ 16dp
+ #3333B5E5
+ #0cffffff
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 150
+ 150
+ 127
+ 150
+ 2
+ 300
+ 320
+ 100
+ 100
+ 100
+ 250
+ 200
+ 999
+ Navigate home
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ sans-serif
+ sans-serif-medium
+ sans-serif-medium
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif-light
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif-medium
+ Alt+
+ Ctrl+
+ delete
+ enter
+ Function+
+ Meta+
+ Shift+
+ space
+ Sym+
+ Menu+
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ MarkdownView
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ android.support.design.widget.BottomSheetBehavior
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ Character limit exceeded %1$d of %2$d
+ %1$d / %2$d
+ android.support.design.transformation.FabTransformationScrimBehavior
+ android.support.design.transformation.FabTransformationSheetBehavior
+ android.support.design.behavior.HideBottomViewOnScrollBehavior
+ Remove %1$s
+ Show password
+ M12,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,-3z
+ M2,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 Z
+ M2,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 Z
+ M3.27,4.27 L19.74,20.74
+ Search
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseResources/merger.xml b/android/build/intermediates/incremental/mergeReleaseResources/merger.xml
new file mode 100644
index 000000000..cd8de596e
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseResources/merger.xml
@@ -0,0 +1,4930 @@
+
+#FF424242#FFFFFFFF#03000000#37000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1dp2dp2dp@color/secondary_text_default_material_light0dp0dp12dp"999+""999+""999+""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#ffffffff#ff9e9e9e#1f000000#8a000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+"999+""999+""999+""999+""999+""999+""999+""999+""+999""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""+999""999+""999+""999+""999+""999+""৯৯৯+""९९९+""999+""999+""999+""999+""999+""৯৯৯+""999+""999+""999+""999+""999+""999+""၉၉၉+""999+""999+"">999""999+""999+""999+""999+""999+""999+""999+""999+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8dp0dp50dp20dp800dp120dp24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Alt+""Ctrl+""delete""enter""Funcție+""Meta+""Shift+""spațiu""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Interogare de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్కు నావిగేట్ చేయండి""పైకి నావిగేట్ చేయండి""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""అనువర్తనాన్ని ఎంచుకోండి""ఆఫ్ చేయి""ఆన్ చేయి""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""వెతుకు...""ప్రశ్నను క్లియర్ చేయి""ప్రశ్న శోధించండి""వెతుకు""ప్రశ్నని సమర్పించు""వాయిస్ శోధన""వీరితో భాగస్వామ్యం చేయి""%sతో భాగస్వామ్యం చేయండి""కుదించండి""వెతుకు"0px"Перейти на главный экран""Перейти вверх""Другие параметры""Готово""Показать все""Выбрать приложение""ОТКЛ.""ВКЛ.""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Поиск""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Открыть доступ""Открыть доступ приложению \"%s\"""Свернуть""Поиск""Mag-navigate patungo sa home""Mag-navigate pataas""Higit pang mga opsyon""Tapos na""Tingnan lahat""Pumili ng isang app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""Vai alla home page""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""barra spaziatrice""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Ricerca""Navega a la pàgina d\'inici""Navega cap a dalt""Més opcions""Fet""Mostra\'ls tots""Selecciona una aplicació""DESACTIVAT""ACTIVAT""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca...""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""Přejít na plochu""Přejít nahoru""Více možností""Hotovo""Zobrazit vše""Vybrat aplikaci""VYPNUTO""ZAPNUTO""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Vyhledávací dotaz""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet pomocí""Sdílet s aplikací %s""Sbalit""Hledat""转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %s""Ciutkan""Telusuri""ホームへ移動""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Προβολή όλων""Επιλέξτε κάποια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινή χρήση με""Κοινή χρήση με %s""Σύμπτυξη""Αναζήτηση""Pārvietoties uz sākuma ekrānu""Pārvietoties augšup""Vairāk opciju""Gatavs""Skatīt visu""Izvēlieties lietotni""IZSLĒGTS""IESLĒGTS""Alternēšanas taustiņš +""Vadīšanas taustiņš +""dzēšanas taustiņš""ievadīšanas taustiņš""Funkcijas taustiņš +""Meta taustiņš +""Pārslēgšanas taustiņš +""atstarpes taustiņš""Simbolu taustiņš +""Poga Izvēlne +""Meklējiet…""Notīrīt vaicājumu""Meklēšanas vaicājums""Meklēt""Iesniegt vaicājumu""Meklēšana ar balsi""Kopīgot ar:""Kopīgot ar lietojumprogrammu %s""Sakļaut""Meklēt""Naviger hjem""Naviger op""Flere muligheder""Luk""Se alle""Vælg en app""FRA""TIL""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mellemrum""Sym+""Menu+""Søg…""Ryd forespørgslen""Søgeforespørgsel""Søg""Indsend forespørgslen""Talesøgning""Del med""Del med %s""Skjul""Søg""होमवर नेव्हिगेट करा""वर नेव्हिगेट करा""अधिक पर्याय""पूर्ण झाले""सर्व पहा""एक अॅप निवडा""बंद""चालू""Alt+""Ctrl+""हटवा""एंटर करा""Function+""Meta+""Shift+""spacebar""Sym+""मेनू+""शोधा…""क्वेरी स्पष्ट करा""शोध क्वेरी""शोध""क्वेरी सबमिट करा""व्हॉइस शोध""यांच्यासह शेअर करा""%s सह शेअर करा""संक्षिप्त करा""शोधा""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУЛІ""ҚОСУЛЫ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""бос орын""Sym+""Mәзір+""Іздеу…""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s қолданбасымен бөлісу""Тасалау""Іздеу""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү""Жыйнап коюу""Издөө""હોમ પર નેવિગેટ કરો""ઉપર નૅવિગેટ કરો""વધુ વિકલ્પો""થઈ ગયું""બધું જુઓ""એક ઍપ્લિકેશન પસંદ કરો""બંધ""ચાલુ""Alt+""Ctrl+""ડિલીટ કરો""Enter""Function+""Meta+""Shift+""Spacebar""Sym+""મેનૂ+""શોધો…""ક્વેરી સાફ કરો""શોધ ક્વેરી""શોધો""ક્વેરી સબમિટ કરો""વૉઇસ શોધ""આની સાથે શેર કરો""%sની સાથે શેર કરો""સંકુચિત કરો""શોધો""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Нүүр хуудас руу шилжих""Дээш шилжих""Нэмэлт сонголтууд""Дууссан""Бүгдийг харах""Апп сонгох""ИДЭВХГҮЙ""ИДЭВХТЭЙ""Alt+""Ctrl+""устгах""оруулах""Функц+""Мета+""Shift+""зай""Sym+""Цэс+""Хайх...""Асуулгыг цэвэрлэх""Хайх асуулга""Хайх""Асуулгыг илгээх""Дуут хайлт""Хуваалцах""%s-тай хуваалцах""Хумих""Хайлт"54dip"Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Navigasi skrin utama""Navigasi ke atas""Lagi pilihan""Selesai""Lihat semua""Pilih apl""MATI""HIDUP""Alt+""Ctrl+""padam""enter""Fungsi+""Meta+""Shift+""ruang""Sym+""Menu+""Cari…""Kosongkan pertanyaan""Pertanyaan carian""Cari""Serah pertanyaan""Carian suara""Kongsi dengan""Kongsi dengan %s""Runtuhkan""Cari""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""刪除""Enter 鍵""Fn +""Meta +""Shift +""空白鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""使用「%s」分享""收合""搜尋""រកមើលទៅដើម""រកមើលឡើងលើ""ជម្រើសច្រើនទៀត""រួចរាល់""មើលទាំងអស់""ជ្រើសកម្មវិធី""បិទ""បើក""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាតសំណួរ""ស្វែងរកសំណួរ""ស្វែងរក""ដាក់ស្នើសំណួរ""ការស្វែងរកសំឡេង""ចែករំលែកជាមួយ""ចែករំលែកជាមួយ %s""បង្រួម""ស្វែងរក""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Selecione um app""DESATIVAR""ATIVAR""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել ծրագիր""ԱՆՋԱՏՎԱԾ""ՄԻԱՑՎԱԾ""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""բացատ""Sym+""Menu+""Որոնում...""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել""Ուղարկել %s-ին""Թաքցնել""Որոնել""ወደ መነሻ ይዳስሱ""ወደ ላይ ይዳስሱ""ተጨማሪ አማራጮች""ተከናውኗል""ሁሉንም ይመልከቱ""መተግበሪያ ይምረጡ""ጠፍቷል""በርቷል""Alt+""Ctrl+""ሰርዝ""enter""Function+""Meta+""Shift+""space""Sym+""ምናሌ+""ፈልግ…""መጠይቅ አጽዳ""የፍለጋ ጥያቄ""ፍለጋ""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ከ%s ጋር አጋራ""ሰብስብ""ፈልግ""Перайсці на галоўную старонку""Перайсці ўверх""Дадатковыя параметры""Гатова""Прагледзець усё""Выбраць праграму""ВЫКЛ.""УКЛ.""Alt +""Ctrl +""Delete""Enter""Fn +""Meta +""Shift +""Прабел""Sym +""Меню +""Пошук...""Выдалiць запыт""Запыт на пошук""Пошук""Адправіць запыт""Галасавы пошук""Абагуліць з""Абагуліць праз праграму %s""Згарнуць""Пошук"48dp12dp14dp60%90%50%70%45%72%truefalsetrue@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp80%100%320dp320dp8dp8dp65%95%24dp18dp8dp0.300.2632dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp0.300.260.260.200.120.500.380.700.542dp16dp8dp8dp96dp6.5dp0dp16dp220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONsans-serifsans-serif-mediumsans-serif-mediumsans-serifsans-serifsans-serifsans-serifsans-serif-lightsans-serifsans-serifsans-serifsans-serif-mediumAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch"Boshiga o‘tish""Yuqoriga o‘tish""Boshqa parametrlar""Tayyor""Hammasi""Dastur tanlang""O‘CHIQ""YONIQ""Alt+""Ctrl+""Delete""Enter""Fn+""Meta+""Shift+""Probel""Sym+""Menyu+""Qidirish…""So‘rovni tozalash""So‘rovni izlash""Qidirish""So‘rov yaratish""Ovozli qidiruv""Ruxsat berish""%s orqali ulashish""Yig‘ish""Qidirish""Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""Terminé""Voir toutes les chaînes""Sélectionnez une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Recherche en cours...""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager""Partager avec %s""Réduire""Rechercher""Przejdź do strony głównej""Przejdź wyżej""Więcej opcji""Gotowe""Zobacz wszystkie""Wybierz aplikację""WYŁ.""WŁ.""Alt+""Ctrl+""Delete""Enter""Funkcyjny+""Meta+""Shift+""spacja""Sym+""Menu+""Szukaj…""Wyczyść zapytanie""Wyszukiwane hasło""Szukaj""Wyślij zapytanie""Wyszukiwanie głosowe""Udostępnij dla""Udostępnij przez: %s""Zwiń""Szukaj""Điều hướng về trang chủ""Điều hướng lên trên""Tùy chọn khác""Xong""Xem tất cả""Chọn một ứng dụng""TẮT""BẬT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""phím cách""Sym+""Menu+""Tìm kiếm…""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s""Thu gọn""Tìm kiếm""Orientohu për në shtëpi""Ngjitu lart""Opsione të tjera""U krye!""Shikoji të gjitha""Zgjidh një aplikacion""JOAKTIV""AKTIV""Alt+""Ctrl+""delete""enter""Funksioni+""Meta+""Shift+""hapësirë""Sym+""Menyja+""Kërko...""Pastro pyetjen""Kërko pyetjen""Kërko""Dërgo pyetjen""Kërkim me zë""Shpërnda publikisht me""Ndaje me %s""Shpalos""Kërko""Visa startsidan""Navigera uppåt""Fler alternativ""Klart""Visa alla""Välj en app""AV""PÅ""Alt + ""Ctrl + ""delete""retur""Funktion + ""Meta + ""Skift + ""blanksteg""Symbol + ""Meny + ""Sök …""Ta bort frågan""Sökfråga""Sök""Skicka fråga""Röstsökning""Dela med""Dela med %s""Komprimera""Sök""Krmarjenje domov""Krmarjenje navzgor""Več možnosti""Končano""Pokaži vse""Izbira aplikacije""IZKLOPLJENO""VKLOPLJENO""Alt +""Ctrl +""Delete""Enter""Fn +""Meta +""Shift +""preslednica""Sym +""Meni +""Iskanje …""Izbris poizvedbe""Iskalna poizvedba""Iskanje""Pošiljanje poizvedbe""Glasovno iskanje""Deljenje z""Deljenje z drugimi prek aplikacije %s""Strni""Iskanje""Prejsť na plochu""Prejsť hore""Ďalšie možnosti""Hotovo""Zobraziť všetko""Zvoľte aplikáciu""VYPNUTÉ""ZAPNUTÉ""Alt+""Ctrl+""odstrániť""enter""Function+""Meta+""Shift+""medzerník""Sym+""Menu+""Vyhľadať…""Vymazať dopyt""Vyhľadávací dopyt""Hľadať""Odoslať dopyt""Hlasové vyhľadávanie""Zdieľať pomocou""Zdieľať s aplikáciou %s""Zbaliť""Vyhľadávanie""ہوم پر نیویگیٹ کریں""اوپر نیویگیٹ کریں""مزید اختیارات""ہو گیا""سبھی دیکھیں""ایک ایپ منتخب کریں""آف""آن""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""تلاش کریں…""استفسار صاف کریں""استفسار تلاش کریں""تلاش کریں""استفسار جمع کرائیں""صوتی تلاش""اشتراک کریں مع""%s کے ساتھ اشتراک کریں""سکیڑیں""تلاش""Nenda mwanzo""Nenda juu""Chaguo zaidi""Nimemaliza""Angalia zote""Chagua programu""IMEZIMWA""IMEWASHWA""Alt+""Ctrl+""futa""enter""Function+""Meta+""Shift+""nafasi""Sym+""Menyu+""Tafuta…""Futa hoja""Hoja ya utafutaji""Tafuta""Wasilisha hoja""Tafuta kwa kutamka""Shiriki na:""Shiriki ukitumia %s""Kunja""Tafuta""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Escolher uma aplicação""DESATIVADO""ATIVADO""Alt +""Ctrl +""eliminar""enter""Função +""Meta +""Shift +""espaço""Sym +""Menu +""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Partilhar com""Partilhar com a aplicação %s""Reduzir""Pesquisar""Ana ekrana git""Yukarı git""Diğer seçenekler""Bitti""Tümünü göster""Bir uygulama seçin""KAPAT""AÇ""Alt+""Ctrl+""sil""enter""İşlev+""Meta+""Üst Karakter+""boşluk""Sym+""Menü+""Ara…""Sorguyu temizle""Arama sorgusu""Ara""Sorguyu gönder""Sesli arama""Şununla paylaş""%s ile paylaş""Daralt""Ara"440dp60%90%60%90%55%80%"முகப்பிற்கு வழிசெலுத்து""மேலே செல்""மேலும் விருப்பங்கள்""முடிந்தது""எல்லாம் காட்டு""பயன்பாட்டைத் தேர்வுசெய்க""ஆஃப்""ஆன்""ஆல்ட் மற்றும்""கண்ட்ரோல் மற்றும்""டெலிட்""எண்டர்""ஃபங்ஷன் மற்றும்""மெட்டா மற்றும்""ஷிஃப்ட் மற்றும்""ஸ்பேஸ்""சிம்பல் மற்றும்""மெனு மற்றும்""தேடு...""வினவலை அழி""தேடல் வினவல்""தேடு""வினவலைச் சமர்ப்பி""குரல் தேடல்""இதனுடன் பகிர்""%s மூலம் பகிர்""சுருக்கு""தேடு""นำทางไปหน้าแรก""นำทางขึ้น""ตัวเลือกอื่น""เสร็จสิ้น""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างข้อความค้นหา""ข้อความค้นหา""ค้นหา""ส่งข้อความค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""پیمایش به بالا""گزینههای بیشتر""تمام""مشاهده همه""انتخاب برنامه""خاموش""روشن""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""کلید فاصله""Sym+""منو+""جستجو…""پاک کردن عبارت جستجو""عبارت جستجو""جستجو""ارسال عبارت جستجو""جستجوی گفتاری""اشتراکگذاری با""اشتراکگذاری با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Eiti į viršų""Daugiau parinkčių""Atlikta""Peržiūrėti viską""Pasirinkti programą""IŠJUNGTA""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„Delete“""„Enter“""„Function“ +""„Meta“ +""„Shift“ +""tarpo klavišas""„Sym“ +""„Menu“ +""Ieškoti...""Išvalyti užklausą""Paieškos užklausa""Paieška""Pateikti užklausą""Paieška balsu""Bendrinti naudojant""Bendrinti naudojant programą „%s“""Sutraukti""Paieška""ହୋମ୍ ପେଜ୍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍ ବାଛନ୍ତୁ""ଅଫ୍""ଅନ୍""Alt+""Ctrl+""ଡିଲିଟ୍""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସର୍ଚ୍ଚ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ଶେୟାର୍ କରନ୍ତୁ""%s ସହ ଶେୟାର୍ କରନ୍ତୁ""ଛୋଟ କରନ୍ତୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATUTA""AKTIBATUTA""Alt +""Ktrl +""Ezabatu""Sartu""Funtzioa +""Meta +""Maius +""Zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu hauekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ຂຶ້ນເທິງ""ໂຕເລືອກອື່ນ""ແລ້ວໆ""ເບິ່ງທັງຫມົດ""ເລືອກແອັບຯ""ປິດ""ເປີດ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ຊອກຫາ""ລຶບຂໍ້ຄວາມຊອກຫາ""ຊອກຫາ""ຊອກຫາ""ສົ່ງການຊອກຫາ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້""ຊອກຫາ""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכל""בחר אפליקציה""כבוי""פועל""Alt+""Ctrl+""delete""Enter""Function+""Meta+""Shift+""מקש רווח""Sym+""תפריט+""חיפוש…""מחק שאילתה""שאילתת חיפוש""חיפוש""שלח שאילתה""חיפוש קולי""שתף עם""שתף עם %s""כווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisää""Valmis""Näytä kaikki""Valitse sovellus""POIS KÄYTÖSTÄ""KÄYTÖSSÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakulauseke""Haku""Lähetä kysely""Puhehaku""Jakaminen:""Jaa sovelluksessa %s""Kutista""Haku""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search"false"Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""OK""Tout afficher""Sélectionner une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Rechercher…""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager avec""Partager avec %s""Réduire""Rechercher""Ir a la pantalla de inicio""Desplazarse hacia arriba""Más opciones""Listo""Ver todo""Seleccionar una aplicación""DESACTIVADO""ACTIVADO""Alt +""Ctrl +""Eliminar""Intro""Función +""Meta +""Mayús +""Espacio""Sym +""Menú +""Buscar…""Borrar consulta""Consulta""Buscar""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Contraer""Buscar""Navigeerimine avaekraanile""Navigeerimine üles""Rohkem valikuid""Valmis""Kuva kõik""Valige rakendus""VÄLJAS""SEES""Alt +""Ctrl +""kustutamisklahv""sisestusklahv""Funktsiooniklahv +""Meta +""Tõstuklahv +""tühik""Sym +""Menüü +""Otsige …""Päringu tühistamine""Otsingupäring""Otsing""Päringu esitamine""Häälotsing""Jagamine:""Jagamine rakendusega %s""Ahendamine""Otsing""Idi na početnu""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmaknica""Sym+""Menu+""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeli putem aplikacije %s""Sažmi""Pretraživanje""Ugrás a főoldalra""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következő alkalmazással: %s""Összecsukás""Keresés""Navigeren naar startpositie""Omhoog navigeren""Meer opties""Gereed""Alles weergeven""Een app selecteren""UIT""AAN""Alt +""Ctrl +""verwijderen""enter""Functie +""Meta +""Shift +""spatie""Sym +""Menu +""Zoeken…""Zoekopdracht wissen""Zoekopdracht""Zoeken""Zoekopdracht verzenden""Gesproken zoekopdracht""Delen met""Delen met %s""Samenvouwen""Zoeken""Придвижване към „Начало“""Придвижване нагоре""Още опции""Готово""Вижте всички""Изберете приложение""ИЗКЛ.""ВКЛ.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""клавиша за интервал""Sym+""Menu+""Търсете…""Изчистване на заявката""Заявка за търсене""Търсене""Изпращане на заявката""Гласово търсене""Споделяне със:""Споделяне със: %s""Свиване""Търсене""হোম এ নেভিগেট করুন""উপরের দিকে নেভিগেট করুন""আরও বিকল্প""সম্পন্ন হয়েছে""সবগুলো দেখুন""একটি অ্যাপ্লিকেশান বেছে নিন""বন্ধ""চালু""Alt+""Ctrl+""মুছুন""enter""Function+""Meta+""Shift+""স্পেস""Sym+""মেনু+""অনুসন্ধান...""ক্যোয়ারী সাফ করুন""ক্যোয়ারী খুঁজুন""খুঁজুন""ক্যোয়ারী জমা দিন""ভয়েস অনুসন্ধান""এর সাথে শেয়ার করুন""%s এর সাথে শেয়ার করুন""সঙ্কুচিত করুন""খুঁজুন""गृह खोज्नुहोस्""माथि खोज्नुहोस्""थप विकल्पहरू""सम्पन्न भयो""सबै हेर्नुहोस्""एउटा अनुप्रयोग छान्नुहोस्""निष्क्रिय पार्नुहोस्""सक्रिय गर्नुहोस्""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोज्नुहोस्...""प्रश्न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""खोज्नुहोस्""जिज्ञासा पेस गर्नुहोस्""भ्वाइस खोजी""साझेदारी गर्नुहोस्...""%s सँग आदान प्रदान गर्नुहोस्""संक्षिप्त पार्नुहोस्""खोज्नुहोस्""Navigeer tuis""Navigeer op""Nog opsies""Klaar""Sien alles""Kies \'n program""AF""AAN""Alt+""Ctrl+""delete""enter""Funksie+""Meta+""Shift+""spasiebalk""Simbool+""Kieslys+""Soek …""Vee navraag uit""Soeknavraag""Soek""Dien navraag in""Stemsoektog""Deel met""Deel met %s""Vou in""Soek""Gå til startsiden""Gå opp""Flere alternativer""Ferdig""Se alle""Velg en app""AV""PÅ""Alt+""Ctrl+""delete""enter""Funksjon+""Meta+""Shift+""mellomrom""Sym+""Meny+""Søk …""Slett søket""Søkeord""Søk""Utfør søket""Talesøk""Del med""Del med %s""Skjul""Søk""होम पेज पर जाएं""ऊपर जाएं""ज़्यादा विकल्प""हो गया""सभी देखें""कोई एप्लिकेशन चुनें""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजा जा रहा है…""क्वेरी साफ़ करें""सर्च क्वेरी""सर्च करें""क्वेरी सबमिट करें""आवाज़ सर्च""इसके साथ शेयर करें""%s के साथ शेयर करें""छोटा करें""सर्च""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""გამორთულია""ჩართულია""Alt+""Ctrl+""წაშლა""შეყვანა""Function+""Meta+""Shift+""space""Sym+""Menu+""ძიება...""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""გაუზიარეთ %s-ს""აკეცვა""ძიება""Zur Startseite""Nach oben""Weitere Optionen""Fertig""Alle ansehen""App auswählen""Aus""An""Alt +""Strg +""Löschen""Eingabetaste""Funktionstaste +""Meta-Taste +""Umschalttaste +""Leertaste +""Sym-Taste +""Menütaste +""Suchen…""Suchanfrage löschen""Suchanfrage""Suchen""Suchanfrage senden""Sprachsuche""Freigeben für""Mit %s teilen""Minimieren""Suchen""গৃহ পৃষ্ঠালৈ যাওক""ওপৰলৈ যাওক""অধিক বিকল্প""সম্পন্ন কৰা হ\'ল""সকলো চাওক""এটা এপ্ বাছনি কৰক""অফ কৰক""অন কৰক""Alt+""CTRL+""মচক""এণ্টাৰ""ফাংশ্বন+""মেটা+""শ্বিফ্ট+""স্পেচ""Sym+""মেনু+""অনুসন্ধান কৰক…""প্ৰশ্ন মচক""সন্ধান কৰিব খোজা প্ৰশ্ন""সন্ধান কৰক""প্ৰশ্ন দাখিল কৰক""কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক""ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক""%sৰ জৰিয়তে শ্বেয়াৰ কৰক""সংকুচিত কৰক""অনুসন্ধান কৰক""Evə naviqasiya et""Yuxarı get""Digər variantlar""Hazırdır""Hamısına baxın""Tətbiq seçin""DEAKTİV""AKTİV""Alt+""Ctrl+""silin""daxil olun""Funksiya+""Meta+""Shift+""kosmos""Sym+""Menyu+""Axtarış...""Sorğunu təmizlə""Axtarış sorğusu""Axtarış""Sorğunu göndərin""Səsli axtarış""Bununla paylaşın""%s ilə paylaşın""Yığışdırın""Axtarış""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""사용 안함""사용""Alt+""Ctrl+""삭제""입력""Function+""Meta+""Shift+""스페이스바""Sym+""Menu+""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""접기""검색""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""കൂടുതൽ ഓപ്ഷനുകള്""പൂർത്തിയാക്കി""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""ഓഫ്""ഓൺ""Alt+""Ctrl+""ഇല്ലാതാക്കുക""enter""ഫംഗ്ഷന്+""മെറ്റ+""Shift+""സ്പെയ്സ്""Sym+""മെനു+""തിരയുക…""അന്വേഷണം മായ്ക്കുക""തിരയൽ അന്വേഷണം""തിരയൽ""അന്വേഷണം സമർപ്പിക്കുക""ശബ്ദതിരയൽ""ഇവരുമായി പങ്കിടുക""%s-മായി പങ്കിടുക""ചുരുക്കുക""തിരയുക""Движи се кон дома""Движи се нагоре""Повеќе опции""Готово""Види ги сите""Избери апликација""ИСКЛУЧЕНО""ВКЛУЧЕНО""копче Alt+""копче Ctrl+""избриши""копче enter""копче Function+""копче Meta+""копче Shift+""вселена""копче Sym+""Мени+""Пребарување…""Исчисти барање""Пребарај барање""Пребарај""Поднеси барање""Гласовно пребарување""Сподели со""Сподели со %s""Собери""Пребарај""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಸಂಕುಚಿಸು""ಹುಡುಕಿ""Vrati se na početnu stranicu""Navigiraj prema gore""Više opcija""Gotovo""Prikaži sve""Odaberite aplikaciju""ISKLJUČI""UKLJUČI""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmaknica""Sym+""Menu+""Pretraži...""Obriši upit""Pretraži upit""Traži""Pošalji upit""Glasovno pretraživanje""Dijeli sa""Dijeli koristeći aplikaciju %s""Skupi""Pretraži""မူလနေရာကို သွားရန်""အပေါ်သို့သွားရန်""ပိုမိုရွေးချယ်စရာများ""ပြီးဆုံးပါပြီ""အားလုံးကို ကြည့်ရန်""အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ""ပိတ်""ဖွင့်""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ရှာဖွေပါ...""ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်""ရှာစရာ အချက်အလက်နေရာ""ရှာဖွေရန်""ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်""အသံဖြင့် ရှာဖွေခြင်း""မျှဝေဖို့ ရွေးပါ""%s ဖြင့် မျှဝေရန်""ခေါက်ရန်""ရှာဖွေပါ""التنقل إلى الشاشة الرئيسية""التنقل إلى أعلى""خيارات إضافية""تم""عرض الكل""اختيار تطبيق""إيقاف""تشغيل""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""القائمة+""بحث…""محو طلب البحث""طلب البحث""بحث""إرسال طلب البحث""البحث الصوتي""مشاركة مع""مشاركة مع %s""تصغير""البحث""Navegar a la página principal""Navegar hacia arriba""Más opciones""Listo""Ver todo""Elige una aplicación.""DESACTIVADO""ACTIVADO""Alt+""Ctrl+""borrar""intro""Función+""Meta+""Mayúscula+""espacio""Sym+""Menú+""Buscar…""Eliminar la consulta""Búsqueda""Búsqueda""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Contraer""Buscar""Ir á páxina de inicio""Desprazarse cara arriba""Máis opcións""Feito""Ver todas""Escoller unha aplicación""DESACTIVAR""ACTIVAR""Alt +""Ctrl +""eliminar""Intro""Función +""Meta +""Maiús +""espazo""Sim +""Menú +""Buscar…""Borrar consulta""Consulta de busca""Buscar""Enviar consulta""Busca por voz""Compartir con""Compartir con %s""Contraer""Buscar""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Selecione um app""DESATIVAR""ATIVAR""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar""Перейти на головний""Перейти вгору""Інші опції""Готово""Переглянути всі""Вибрати програму""ВИМК.""УВІМК.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""пробіл""Sym+""Menu+""Пошук…""Очистити запит""Пошуковий запит""Пошук""Надіслати запит""Голосовий пошук""Надіслати через""Поділитися через додаток %s""Згорнути""Пошук""Одлазак на Почетну""Кретање нагоре""Још опција""Готово""Прикажи све""Избор апликације""ИСКЉУЧИ""УКЉУЧИ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""тастер за размак""Sym+""Menu+""Претражите...""Брисање упита""Упит за претрагу""Претрага""Слање упита""Гласовна претрага""Дели са""Дељење са апликацијом %s""Скупи""Претражи""ਹੋਮ \'ਤੇ ਜਾਓ""ਉੱਪਰ ਜਾਓ""ਹੋਰ ਚੋਣਾਂ""ਹੋ ਗਿਆ""ਸਭ ਦੇਖੋ""ਇੱਕ ਐਪ ਚੁਣੋ""ਬੰਦ""ਤੇ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ਖੋਜ…""ਸਵਾਲ ਹਟਾਓ""ਖੋਜ ਪੁੱਛਗਿੱਛ""ਖੋਜੋ""ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ""ਵੌਇਸ ਖੋਜ""ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ""%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ""ਨਸ਼ਟ ਕਰੋ""ਖੋਜੋ""ගෙදරට සංචාලනය කරන්න""ඉහලට සංචාලනය කරන්න""තවත් විකල්ප""අවසාන වූ""සියල්ල බලන්න""යෙදුමක් තෝරන්න""ක්රියාවිරහිතයි""ක්රියාත්මකයි""Alt+""Ctrl+""මකන්න""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""සොයන්න...""විමසුම හිස් කරන්න""සෙවුම් විමසුම""සෙවීම""විමසුම යොමු කරන්න""හඬ සෙවීම""සමඟ බෙදාගන්න""%s සමඟ බෙදා ගන්න""හකුළන්න""සොයන්න""Odlazak na Početnu""Kretanje nagore""Još opcija""Gotovo""Prikaži sve""Izbor aplikacije""ISKLJUČI""UKLJUČI""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""taster za razmak""Sym+""Menu+""Pretražite...""Brisanje upita""Upit za pretragu""Pretraga""Slanje upita""Glasovna pretraga""Deli sa""Deljenje sa aplikacijom %s""Skupi""Pretraži""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""VALIWE""VULIWE""Alt+""Ctrl+""susa""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Iyasesha...""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana ne-%s""Goqa""Sesha"MarkdownView320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical
+ 160dp1true#14000000#3F51B5#303F9F@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#1F000000#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#DE000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4dp168dp96dp14sp8dp56dp24dp96dp56dp8dp1dp12sp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp280dp8dp8dp128dp0dp6dp0dp-1px-1px12dp14dp24dp14sp264dp72dp14sp12sp5dp60dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp0.074dp16dp16dp4dp6dp1dp4dp8dp8dp14sp0dp1dp8dp3dp14sp6dp2dp6dp0dp22dp14dp4dp8dp3dp4dp0dp4dp12dp1dp2dp16dp56dp1501502300320100100100250200android.support.design.widget.AppBarLayout$ScrollingViewBehaviorandroid.support.design.widget.BottomSheetBehaviorCharacter limit exceeded %1$d of %2$d%1$d / %2$dandroid.support.design.transformation.FabTransformationScrimBehaviorandroid.support.design.transformation.FabTransformationSheetBehaviorandroid.support.design.behavior.HideBottomViewOnScrollBehaviorRemove %1$sShow passwordM12,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.74Debug JSInspeccionar elementoUnable to download JS bundleFetching JS bundleEspera...Reload JSDev SettingsCatalyst Dev SettingsDebug JSShow InspectorUnable to download JS bundleFetching JS bundlePlease wait...Reload JSDev SettingsCatalyst Dev SettingsDebug JSПроверить элементUnable to download JS bundleFetching JS bundleПодождите...Reload JSDev SettingsCatalyst Dev SettingsDebug JS檢查元素Unable to download JS bundleFetching JS bundle請稍候……Reload JSDev SettingsCatalyst Dev SettingsDebug JSEsamina elementoUnable to download JS bundleFetching JS bundleAttendi...Reload JSDev SettingsCatalyst Dev SettingsDebug JSProzkoumat prvekUnable to download JS bundleFetching JS bundleČekejte prosím...Reload JSDev SettingsCatalyst Dev Settings[Debug JS#2010fa256bd28603b686da2713bb843a:1][Show Inspector#c1b106c92869437ebd88f326d632b973:1][Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1][Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1][Please wait...#71bad104a80f916d3bfb1ffa23a487af:1][Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1][Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1][Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]Debug JS检查元素Unable to download JS bundleFetching JS bundle请稍等...Reload JSDev SettingsCatalyst Dev SettingsDebug JSPeriksa ElemenUnable to download JS bundleFetching JS bundleHarap tunggu...Reload JSDev SettingsCatalyst Dev SettingsDebug JS要素を確認Unable to download JS bundleFetching JS bundleしばらくお待ちくださいReload JSDev SettingsCatalyst Dev SettingsDebug JSΕξέταση στοιχείουUnable to download JS bundleFetching JS bundleΠεριμένετε...Reload JSDev SettingsCatalyst Dev SettingsDebug JSInspicer elementUnable to download JS bundleFetching JS bundleVent venligst...Reload JSDev SettingsCatalyst Dev SettingsDebug JS(तत्व निरीक्षण गर्नुहोस्)Unable to download JS bundleFetching JS bundle(অনুগ্রহ করে অপেক্ষা করুন….)Reload JSDev SettingsCatalyst Dev SettingsDebug JS檢查項目Unable to download JS bundleFetching JS bundle請稍候……Reload JSDev SettingsCatalyst Dev Settings#eecc0000Debug in ChromeStop Chrome DebuggingShow InspectorHide InspectorEnable Hot Module ReplacementDisable Hot Module ReplacementUnable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081Fetching JS bundlePlease wait…Enable Live ReloadDisable Live ReloadEnable Perf MonitorDisable Perf MonitorReload JSUnable to connect with remote debuggerConnecting to remote debuggerDev SettingsCatalyst Dev SettingsStart ProfileStop ProfileDebug JSZbadaj elementUnable to download JS bundleFetching JS bundleZaczekaj...Reload JSDev SettingsCatalyst Dev SettingsDebug JSKiểm tra phần tửUnable to download JS bundleFetching JS bundleVui lòng đợi...Reload JSDev SettingsCatalyst Dev SettingsDebug JSInspektionselementUnable to download JS bundleFetching JS bundleVänta ...Reload JSDev SettingsCatalyst Dev SettingsDebug JSShow InspectorUnable to download JS bundleFetching JS bundleAguarda...Reload JSDev SettingsCatalyst Dev SettingsDebug JSÖğeyi DenetleUnable to download JS bundleFetching JS bundleLütfen bekleyin...Reload JSDev SettingsCatalyst Dev SettingsDebug JSตรวจสอบอิลิเมนต์Unable to download JS bundleFetching JS bundleโปรดรอ...Reload JSDev SettingsCatalyst Dev SettingsDebug JSShow InspectorUnable to download JS bundleFetching JS bundlePlease wait...Reload JSDev SettingsCatalyst Dev SettingsDebug JSTarkista elementtiUnable to download JS bundleFetching JS bundleOdota…Reload JSDev SettingsCatalyst Dev SettingsDebug JSInspecter l’élémentUnable to download JS bundleFetching JS bundleVeuillez patienter...Reload JSDev SettingsCatalyst Dev SettingsDebug JSInspeccionar elementoUnable to download JS bundleFetching JS bundleEspera...Reload JSDev SettingsCatalyst Dev SettingsDebug JSElem megtekintéseUnable to download JS bundleFetching JS bundleKérjük, várj...Reload JSDev SettingsCatalyst Dev SettingsDebug JSElement inspecterenUnable to download JS bundleFetching JS bundleEven geduld...Reload JSDev SettingsCatalyst Dev SettingsDebug JSInspiser elementUnable to download JS bundleFetching JS bundleVent litt ...Reload JSDev SettingsCatalyst Dev SettingsDebug JSElement untersuchenUnable to download JS bundleFetching JS bundleBitte warten Sie ...Reload JSDev SettingsCatalyst Dev SettingsDebug JS요소 검사Unable to download JS bundleFetching JS bundle기다려주세요...Reload JSDev SettingsCatalyst Dev SettingsDebug JSShow InspectorUnable to download JS bundleFetching JS bundleAguarde...Reload JSDev SettingsCatalyst Dev Settings
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml
new file mode 100644
index 000000000..9a3885e17
--- /dev/null
+++ b/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/android/build/intermediates/incremental/packageDebugAssets/merger.xml
new file mode 100644
index 000000000..d92df2f5a
--- /dev/null
+++ b/android/build/intermediates/incremental/packageDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
new file mode 100644
index 000000000..3e3a1b418
--- /dev/null
+++ b/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
@@ -0,0 +1,182 @@
+#Thu Feb 06 12:24:45 CET 2020
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_manage.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/gallery_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/gallery_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_share.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_done_all_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_done_all_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_launcher_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_star.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_star.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_find_in_page.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_find_in_page.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_flash_on_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/xml/settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/xml/settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_fullscreen_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_fullscreen_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_main.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_main.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_gift.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_gift.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-mdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_menu_tag.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_menu_tag.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_camera.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_camera_green.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_camera_green.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_imagepager.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_tv.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_tv.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_game.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_game.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/about_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/about_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/round_button.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/round_button.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/button_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/button_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/angle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/side_nav_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/packaged_res/debug/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-hdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_send.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_bell.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_bell.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_rocket.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_rocket.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/anim/blink.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/packaged_res/debug/anim/blink.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/layout_fullscreen_image.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/layout_fullscreen_image.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/tageditor_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/tageditor_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v24/ic_launcher_foreground.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_tag_magnet.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_magnet.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_slideshow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png
diff --git a/android/build/intermediates/incremental/packageDebugResources/merger.xml b/android/build/intermediates/incremental/packageDebugResources/merger.xml
new file mode 100644
index 000000000..6a3012b4e
--- /dev/null
+++ b/android/build/intermediates/incremental/packageDebugResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/packageReleaseAssets/merger.xml b/android/build/intermediates/incremental/packageReleaseAssets/merger.xml
new file mode 100644
index 000000000..d6e7b9129
--- /dev/null
+++ b/android/build/intermediates/incremental/packageReleaseAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties b/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
new file mode 100644
index 000000000..e6f57033a
--- /dev/null
+++ b/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
@@ -0,0 +1,182 @@
+#Thu Feb 06 12:24:58 CET 2020
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/activity_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_manage.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_manage.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xxxhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/gallery_item.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/gallery_item.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_share.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_share.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_bell.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_bell.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_tv.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_tv.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_flash_on_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_flash_on_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_arrow_back_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/menu/menu_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_gallery.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/activity_gallery.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/xml/settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/xml/settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_star.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_star.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_fullscreen_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/activity_fullscreen_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_find_in_page.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_find_in_page.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_main.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/activity_main.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-mdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_camera.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_camera.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_imagepager.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/menu/menu_imagepager.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_done_all_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_done_all_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/about_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/about_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/round_button.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable/round_button.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_menu_tag.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_menu_tag.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_photo_filter_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_gift.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_gift.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/button_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable/button_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_rocket.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_rocket.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher_round.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher_round.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/angle.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/side_nav_bar.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable/side_nav_bar.xml
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/packaged_res/release/layout/activity_open_note_scanner.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_game.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_game.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_info_outline_white_24px.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_info_outline_white_24px.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_launcher_background.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_launcher_background.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_find_in_page.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_find_in_page.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_magnet.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_magnet.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-hdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-anydpi-v26/ic_launcher_round.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_arrow_back_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_arrow_back_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_info_outline_white_24px.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_camera_green.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_camera_green.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_send.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_send.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_settings.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_settings.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_menu_tag.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_menu_tag.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/angle.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/angle.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/angle.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/angle.png
+/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/anim/blink.xml=/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/packaged_res/release/anim/blink.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_rocket.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_rocket.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_camera_green.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_camera_green.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_tag_magnet.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_tag_magnet.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_palette.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_palette.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/layout_fullscreen_image.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/layout_fullscreen_image.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_tag_gift.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_tag_gift.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_bell.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_bell.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_delete_white_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_settings.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_settings.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_monochrome.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_monochrome.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-ldpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-ldpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_tag_star.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_tag_star.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/tageditor_view.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/layout/tageditor_view.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-mdpi/ic_palette.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-mdpi-v4/ic_palette.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v24/ic_launcher_foreground.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v24/ic_launcher_foreground.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-hdpi/ic_tag_tv.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-hdpi-v4/ic_tag_tv.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_launcher_background.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_launcher_background.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xxhdpi/ic_monochrome.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/ic_monochrome.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_done_all_24dp.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_done_all_24dp.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_slideshow.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-v21/ic_menu_slideshow.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-xhdpi/ic_flash_on_24dp.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-xhdpi-v4/ic_flash_on_24dp.png
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/release/drawable-anydpi-v21/ic_tag_game.xml=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/drawable-anydpi-v21/ic_tag_game.xml
+/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png
diff --git a/android/build/intermediates/incremental/packageReleaseResources/merger.xml b/android/build/intermediates/incremental/packageReleaseResources/merger.xml
new file mode 100644
index 000000000..374998b3c
--- /dev/null
+++ b/android/build/intermediates/incremental/packageReleaseResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/incremental/release-mergeJavaRes/merge-state b/android/build/intermediates/incremental/release-mergeJavaRes/merge-state
new file mode 100644
index 000000000..7be9ea6d2
Binary files /dev/null and b/android/build/intermediates/incremental/release-mergeJavaRes/merge-state differ
diff --git a/android/build/intermediates/incremental/release-mergeJniLibs/merge-state b/android/build/intermediates/incremental/release-mergeJniLibs/merge-state
new file mode 100644
index 000000000..2af76eb4e
Binary files /dev/null and b/android/build/intermediates/incremental/release-mergeJniLibs/merge-state differ
diff --git a/android/build/intermediates/intermediate-jars/debug/classes.jar b/android/build/intermediates/intermediate-jars/debug/classes.jar
new file mode 100644
index 000000000..73027b810
Binary files /dev/null and b/android/build/intermediates/intermediate-jars/debug/classes.jar differ
diff --git a/android/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libopencv_java3.so b/android/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libopencv_java3.so
new file mode 100644
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/intermediate-jars/debug/jni/x86_64/libopencv_java3.so b/android/build/intermediates/intermediate-jars/debug/jni/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/intermediate-jars/debug/jni/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/intermediate-jars/debug/res.jar b/android/build/intermediates/intermediate-jars/debug/res.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/build/intermediates/intermediate-jars/debug/res.jar differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/BuildConfig.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/BuildConfig.class
new file mode 100644
index 000000000..68f3fda4a
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/BuildConfig.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class
new file mode 100644
index 000000000..37988eb5a
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class
new file mode 100644
index 000000000..8d62ba1b0
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class
new file mode 100644
index 000000000..8e2b0b8b1
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class
new file mode 100644
index 000000000..78484ffbf
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class
new file mode 100644
index 000000000..44a3610fd
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class
new file mode 100644
index 000000000..eb736d2fe
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class
new file mode 100644
index 000000000..1684106ae
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class
new file mode 100644
index 000000000..b2f04142f
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor.class
new file mode 100644
index 000000000..2073a1d45
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/ImageProcessor.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class
new file mode 100644
index 000000000..e2e9f2b6a
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class
new file mode 100644
index 000000000..58e3af020
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class
new file mode 100644
index 000000000..5478bfd54
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class
new file mode 100644
index 000000000..2a93a8e47
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class
new file mode 100644
index 000000000..a54809f88
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class
new file mode 100644
index 000000000..29f01794d
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class
new file mode 100644
index 000000000..dc9d012a4
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class
new file mode 100644
index 000000000..b854a1c58
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class
new file mode 100644
index 000000000..e0edd897d
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils.class
new file mode 100644
index 000000000..84170a70b
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/helpers/Utils.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class
new file mode 100644
index 000000000..6aa0d76df
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class
new file mode 100644
index 000000000..a702d3f83
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/MainView.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/MainView.class
new file mode 100644
index 000000000..94d6695af
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/MainView.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class
new file mode 100644
index 000000000..0a67baaca
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class
new file mode 100644
index 000000000..fdc778891
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class
new file mode 100644
index 000000000..f4f56eb01
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class
new file mode 100644
index 000000000..cb9fbfb6e
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class
new file mode 100644
index 000000000..18d9a3ce9
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class
new file mode 100644
index 000000000..72d192388
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class
new file mode 100644
index 000000000..190820974
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class
new file mode 100644
index 000000000..45ae94aee
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class
new file mode 100644
index 000000000..c44a435f3
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class
new file mode 100644
index 000000000..c9343d704
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class
new file mode 100644
index 000000000..f2d3a498d
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class
new file mode 100644
index 000000000..666f9ed57
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class differ
diff --git a/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class
new file mode 100644
index 000000000..b076a468b
Binary files /dev/null and b/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/BuildConfig.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/BuildConfig.class
new file mode 100644
index 000000000..4b652b50f
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/BuildConfig.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class
new file mode 100644
index 000000000..37988eb5a
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerModule.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class
new file mode 100644
index 000000000..8d62ba1b0
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerPackage.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class
new file mode 100644
index 000000000..8e2b0b8b1
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class
new file mode 100644
index 000000000..78484ffbf
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager$2.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class
new file mode 100644
index 000000000..44a3610fd
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/DocumentScannerViewManager.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class
new file mode 100644
index 000000000..eb736d2fe
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class
new file mode 100644
index 000000000..1684106ae
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$2.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class
new file mode 100644
index 000000000..b2f04142f
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor$3.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor.class
new file mode 100644
index 000000000..2073a1d45
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/ImageProcessor.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class
new file mode 100644
index 000000000..e2e9f2b6a
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/AppConstant.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class
new file mode 100644
index 000000000..58e3af020
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class
new file mode 100644
index 000000000..5478bfd54
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader$MyBroadcastReceiver.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class
new file mode 100644
index 000000000..2a93a8e47
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/CustomOpenCVLoader.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class
new file mode 100644
index 000000000..a54809f88
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/OpenNoteMessage.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class
new file mode 100644
index 000000000..29f01794d
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/PreviewFrame.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class
new file mode 100644
index 000000000..dc9d012a4
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Quadrilateral.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class
new file mode 100644
index 000000000..b854a1c58
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/ScannedDocument.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class
new file mode 100644
index 000000000..e0edd897d
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils.class
new file mode 100644
index 000000000..84170a70b
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/helpers/Utils.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class
new file mode 100644
index 000000000..6aa0d76df
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView$HUDShape.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class
new file mode 100644
index 000000000..a702d3f83
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/HUDCanvasView.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/MainView.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/MainView.class
new file mode 100644
index 000000000..94d6695af
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/MainView.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class
new file mode 100644
index 000000000..0a67baaca
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class
new file mode 100644
index 000000000..fdc778891
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$2.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class
new file mode 100644
index 000000000..f4f56eb01
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$3.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class
new file mode 100644
index 000000000..cb9fbfb6e
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$4.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class
new file mode 100644
index 000000000..18d9a3ce9
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$5.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class
new file mode 100644
index 000000000..72d192388
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$6.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class
new file mode 100644
index 000000000..190820974
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$7.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class
new file mode 100644
index 000000000..45ae94aee
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$8.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class
new file mode 100644
index 000000000..c44a435f3
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable$1.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class
new file mode 100644
index 000000000..c9343d704
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$AnimationRunnable.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class
new file mode 100644
index 000000000..f2d3a498d
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnProcessingListener.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class
new file mode 100644
index 000000000..666f9ed57
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView$OnScannerListener.class differ
diff --git a/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class
new file mode 100644
index 000000000..b076a468b
Binary files /dev/null and b/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/documentscanner/views/OpenNoteCameraView.class differ
diff --git a/android/build/intermediates/jniLibs/debug/Android.mk b/android/build/intermediates/jniLibs/debug/Android.mk
new file mode 100644
index 000000000..8a39c4664
--- /dev/null
+++ b/android/build/intermediates/jniLibs/debug/Android.mk
@@ -0,0 +1,22 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+OPENCV_LIB_TYPE:=SHARED
+OPENCV_CAMERA_MODULES:=on
+OPENCV_INSTALL_MODULES:=on
+
+include {OpenCV.mk_DIR}
+
+LOCAL_SRC_FILES := native-lib.cpp
+LOCAL_C_INCLUDES += {INCLUDE_DIR}
+LOCAL_LDLIBS += -llog -ldl
+LOCAL_CFLAGS += -DOPENCV_OLDER_VISION
+
+LOCAL_CPP_FEATURES += exceptions (Recommended)
+LOCAL_CPPFLAGS += -fexceptions
+
+
+LOCAL_MODULE := native-lib
+
+include $(BUILD_SHARED_LIBRARY)
\ No newline at end of file
diff --git a/android/build/intermediates/jniLibs/debug/arm64-v8a/libopencv_java3.so b/android/build/intermediates/jniLibs/debug/arm64-v8a/libopencv_java3.so
new file mode 100755
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/jniLibs/debug/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/jniLibs/debug/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/jniLibs/debug/armeabi-v7a/libopencv_java3.so
new file mode 100755
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/jniLibs/debug/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/jniLibs/debug/x86_64/libopencv_java3.so b/android/build/intermediates/jniLibs/debug/x86_64/libopencv_java3.so
new file mode 100755
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/jniLibs/debug/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/jniLibs/release/Android.mk b/android/build/intermediates/jniLibs/release/Android.mk
new file mode 100644
index 000000000..8a39c4664
--- /dev/null
+++ b/android/build/intermediates/jniLibs/release/Android.mk
@@ -0,0 +1,22 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+OPENCV_LIB_TYPE:=SHARED
+OPENCV_CAMERA_MODULES:=on
+OPENCV_INSTALL_MODULES:=on
+
+include {OpenCV.mk_DIR}
+
+LOCAL_SRC_FILES := native-lib.cpp
+LOCAL_C_INCLUDES += {INCLUDE_DIR}
+LOCAL_LDLIBS += -llog -ldl
+LOCAL_CFLAGS += -DOPENCV_OLDER_VISION
+
+LOCAL_CPP_FEATURES += exceptions (Recommended)
+LOCAL_CPPFLAGS += -fexceptions
+
+
+LOCAL_MODULE := native-lib
+
+include $(BUILD_SHARED_LIBRARY)
\ No newline at end of file
diff --git a/android/build/intermediates/jniLibs/release/arm64-v8a/libopencv_java3.so b/android/build/intermediates/jniLibs/release/arm64-v8a/libopencv_java3.so
new file mode 100755
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/jniLibs/release/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/jniLibs/release/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/jniLibs/release/armeabi-v7a/libopencv_java3.so
new file mode 100755
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/jniLibs/release/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/jniLibs/release/x86_64/libopencv_java3.so b/android/build/intermediates/jniLibs/release/x86_64/libopencv_java3.so
new file mode 100755
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/jniLibs/release/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libopencv_java3.so
new file mode 100644
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/debug/x86_64/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/debug/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/debug/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/release/arm64-v8a/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/release/arm64-v8a/libopencv_java3.so
new file mode 100644
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/release/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/release/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/release/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/release/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_and_local_jars_jni/release/x86_64/libopencv_java3.so b/android/build/intermediates/library_and_local_jars_jni/release/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/library_and_local_jars_jni/release/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/library_manifest/debug/AndroidManifest.xml b/android/build/intermediates/library_manifest/debug/AndroidManifest.xml
new file mode 100644
index 000000000..66db04333
--- /dev/null
+++ b/android/build/intermediates/library_manifest/debug/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/library_manifest/release/AndroidManifest.xml b/android/build/intermediates/library_manifest/release/AndroidManifest.xml
new file mode 100644
index 000000000..66db04333
--- /dev/null
+++ b/android/build/intermediates/library_manifest/release/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/android/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
new file mode 100644
index 000000000..312c8741a
--- /dev/null
+++ b/android/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/manifests/aapt/debug/AndroidManifest.xml b/android/build/intermediates/manifests/aapt/debug/AndroidManifest.xml
new file mode 100644
index 000000000..bc9dc2863
--- /dev/null
+++ b/android/build/intermediates/manifests/aapt/debug/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/manifests/aapt/release/AndroidManifest.xml b/android/build/intermediates/manifests/aapt/release/AndroidManifest.xml
new file mode 100644
index 000000000..bc9dc2863
--- /dev/null
+++ b/android/build/intermediates/manifests/aapt/release/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/merged_manifests/debug/output.json b/android/build/intermediates/merged_manifests/debug/output.json
new file mode 100644
index 000000000..1961b26a8
--- /dev/null
+++ b/android/build/intermediates/merged_manifests/debug/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-documentscanner-android-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.documentscanner","split":""}}]
\ No newline at end of file
diff --git a/android/build/intermediates/merged_manifests/release/output.json b/android/build/intermediates/merged_manifests/release/output.json
new file mode 100644
index 000000000..64ae5c77e
--- /dev/null
+++ b/android/build/intermediates/merged_manifests/release/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-documentscanner-android-release.aar","fullName":"release","baseName":"release"},"path":"../../library_manifest/release/AndroidManifest.xml","properties":{"packageId":"com.documentscanner","split":""}}]
\ No newline at end of file
diff --git a/android/build/intermediates/packaged-classes/debug/classes.jar b/android/build/intermediates/packaged-classes/debug/classes.jar
new file mode 100644
index 000000000..73027b810
Binary files /dev/null and b/android/build/intermediates/packaged-classes/debug/classes.jar differ
diff --git a/android/build/intermediates/packaged-classes/release/classes.jar b/android/build/intermediates/packaged-classes/release/classes.jar
new file mode 100644
index 000000000..96242085e
Binary files /dev/null and b/android/build/intermediates/packaged-classes/release/classes.jar differ
diff --git a/android/build/intermediates/packaged_res/debug/anim/blink.xml b/android/build/intermediates/packaged_res/debug/anim/blink.xml
new file mode 100644
index 000000000..a176e1fd1
--- /dev/null
+++ b/android/build/intermediates/packaged_res/debug/anim/blink.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/packaged_res/debug/layout/activity_open_note_scanner.xml b/android/build/intermediates/packaged_res/debug/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..ebc2da322
--- /dev/null
+++ b/android/build/intermediates/packaged_res/debug/layout/activity_open_note_scanner.xml
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/packaged_res/release/anim/blink.xml b/android/build/intermediates/packaged_res/release/anim/blink.xml
new file mode 100644
index 000000000..a176e1fd1
--- /dev/null
+++ b/android/build/intermediates/packaged_res/release/anim/blink.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/packaged_res/release/layout/activity_open_note_scanner.xml b/android/build/intermediates/packaged_res/release/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..ebc2da322
--- /dev/null
+++ b/android/build/intermediates/packaged_res/release/layout/activity_open_note_scanner.xml
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_in.xml.flat b/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_in.xml.flat
new file mode 100644
index 000000000..281f5fe8a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_out.xml.flat b/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_out.xml.flat
new file mode 100644
index 000000000..10e32ab19
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim-v21_design_bottom_sheet_slide_out.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat
new file mode 100644
index 000000000..4c35e4d13
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat
new file mode 100644
index 000000000..e9ea39767
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat
new file mode 100644
index 000000000..f9437c37e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat
new file mode 100644
index 000000000..bb511ceab
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat
new file mode 100644
index 000000000..9db1ebc86
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat
new file mode 100644
index 000000000..4f9b32be7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat
new file mode 100644
index 000000000..afa5e7665
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat
new file mode 100644
index 000000000..67806c6f9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat
new file mode 100644
index 000000000..7e563e08b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat
new file mode 100644
index 000000000..957c2670b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat
new file mode 100644
index 000000000..298d8c584
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat b/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat
new file mode 100644
index 000000000..55d5a61ee
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_blink.xml.flat b/android/build/intermediates/res/compiled/release/anim_blink.xml.flat
new file mode 100644
index 000000000..cc90284a8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_blink.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat b/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat
new file mode 100644
index 000000000..4c6292a9b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat b/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat
new file mode 100644
index 000000000..72f37372e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_in.xml.flat b/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_in.xml.flat
new file mode 100644
index 000000000..69b774cba
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_out.xml.flat b/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_out.xml.flat
new file mode 100644
index 000000000..f32f1259f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_design_bottom_sheet_slide_out.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_design_snackbar_in.xml.flat b/android/build/intermediates/res/compiled/release/anim_design_snackbar_in.xml.flat
new file mode 100644
index 000000000..bfb16213b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_design_snackbar_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/anim_design_snackbar_out.xml.flat b/android/build/intermediates/res/compiled/release/anim_design_snackbar_out.xml.flat
new file mode 100644
index 000000000..6006f64e7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/anim_design_snackbar_out.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator-v21_design_appbar_state_list_animator.xml.flat b/android/build/intermediates/res/compiled/release/animator-v21_design_appbar_state_list_animator.xml.flat
new file mode 100644
index 000000000..dd45f3804
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator-v21_design_appbar_state_list_animator.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_design_fab_hide_motion_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_design_fab_hide_motion_spec.xml.flat
new file mode 100644
index 000000000..703536e49
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_design_fab_hide_motion_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_design_fab_show_motion_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_design_fab_show_motion_spec.xml.flat
new file mode 100644
index 000000000..726c1b4ed
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_design_fab_show_motion_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_btn_state_list_anim.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_btn_state_list_anim.xml.flat
new file mode 100644
index 000000000..77fa538ad
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_btn_state_list_anim.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat
new file mode 100644
index 000000000..a6ddc57b2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_chip_state_list_anim.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_chip_state_list_anim.xml.flat
new file mode 100644
index 000000000..6afbc2912
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_chip_state_list_anim.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_fab_hide_motion_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_hide_motion_spec.xml.flat
new file mode 100644
index 000000000..0c0ae64d3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_hide_motion_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_fab_show_motion_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_show_motion_spec.xml.flat
new file mode 100644
index 000000000..82307b7d0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_show_motion_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat
new file mode 100644
index 000000000..b27d556b7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat
new file mode 100644
index 000000000..ca63c27bc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat
new file mode 100644
index 000000000..7d3a7c17a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat
new file mode 100644
index 000000000..82ff9a677
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat
new file mode 100644
index 000000000..ad8971829
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat
new file mode 100644
index 000000000..672924a63
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat
new file mode 100644
index 000000000..2e18ddb09
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat
new file mode 100644
index 000000000..14053e1c1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat
new file mode 100644
index 000000000..711c10498
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat
new file mode 100644
index 000000000..9f9f03147
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat
new file mode 100644
index 000000000..ea822df30
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat
new file mode 100644
index 000000000..b590d4bb8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color-v23_design_tint_password_toggle.xml.flat b/android/build/intermediates/res/compiled/release/color-v23_design_tint_password_toggle.xml.flat
new file mode 100644
index 000000000..18b03771c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color-v23_design_tint_password_toggle.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat
new file mode 100644
index 000000000..03e0a5390
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat
new file mode 100644
index 000000000..017ded977
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_btn_colored_borderless_text_material.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_btn_colored_borderless_text_material.xml.flat
new file mode 100644
index 000000000..0be35550b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_btn_colored_borderless_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat
new file mode 100644
index 000000000..73d0928f0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat
new file mode 100644
index 000000000..684d4e515
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat
new file mode 100644
index 000000000..5a9874741
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat
new file mode 100644
index 000000000..fd3633ffa
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat
new file mode 100644
index 000000000..0009a549d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat
new file mode 100644
index 000000000..53ed90434
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat
new file mode 100644
index 000000000..74cc5749f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat
new file mode 100644
index 000000000..a07f278eb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat
new file mode 100644
index 000000000..be07e6d2d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat
new file mode 100644
index 000000000..cb3205a05
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat
new file mode 100644
index 000000000..6df4f76eb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat
new file mode 100644
index 000000000..a413fc128
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat
new file mode 100644
index 000000000..37112325e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat
new file mode 100644
index 000000000..f0cd3d52b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat
new file mode 100644
index 000000000..1359cb58a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat b/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat
new file mode 100644
index 000000000..4b21bd07b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_design_error.xml.flat b/android/build/intermediates/res/compiled/release/color_design_error.xml.flat
new file mode 100644
index 000000000..964118d50
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_design_error.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_design_tint_password_toggle.xml.flat b/android/build/intermediates/res/compiled/release/color_design_tint_password_toggle.xml.flat
new file mode 100644
index 000000000..1c54d6757
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_design_tint_password_toggle.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat
new file mode 100644
index 000000000..425647868
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_item_tint.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_item_tint.xml.flat
new file mode 100644
index 000000000..2dd96f0e8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_bottom_nav_item_tint.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_btn_bg_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_btn_bg_color_selector.xml.flat
new file mode 100644
index 000000000..b7130ca09
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_btn_bg_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_btn_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_btn_ripple_color.xml.flat
new file mode 100644
index 000000000..f5ee6f3b3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_btn_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_btn_stroke_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_btn_stroke_color_selector.xml.flat
new file mode 100644
index 000000000..5d495c49b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_btn_stroke_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_btn_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_btn_ripple_color.xml.flat
new file mode 100644
index 000000000..77444908d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_btn_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_color_selector.xml.flat
new file mode 100644
index 000000000..bacf160b1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_btn_text_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_chip_background_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_chip_background_color.xml.flat
new file mode 100644
index 000000000..1a7ad5e85
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_chip_background_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_chip_close_icon_tint.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_chip_close_icon_tint.xml.flat
new file mode 100644
index 000000000..b8b2ab038
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_chip_close_icon_tint.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_chip_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_chip_ripple_color.xml.flat
new file mode 100644
index 000000000..5cbace18a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_chip_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_chip_text_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_chip_text_color.xml.flat
new file mode 100644
index 000000000..24b976eed
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_chip_text_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_fab_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_fab_ripple_color.xml.flat
new file mode 100644
index 000000000..91e37d4fa
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_fab_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_tabs_colored_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_colored_ripple_color.xml.flat
new file mode 100644
index 000000000..f6c885d84
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_colored_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector.xml.flat
new file mode 100644
index 000000000..4273b757a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat
new file mode 100644
index 000000000..522e43b7f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat
new file mode 100644
index 000000000..c20966c9a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_tabs_ripple_color.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_ripple_color.xml.flat
new file mode 100644
index 000000000..d1061ba91
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_tabs_ripple_color.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_mtrl_text_btn_text_color_selector.xml.flat b/android/build/intermediates/res/compiled/release/color_mtrl_text_btn_text_color_selector.xml.flat
new file mode 100644
index 000000000..e3a963ef3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_mtrl_text_btn_text_color_selector.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat b/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat
new file mode 100644
index 000000000..42cf40243
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat b/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat
new file mode 100644
index 000000000..9e4fab8b5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility.xml.flat b/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility.xml.flat
new file mode 100644
index 000000000..2ebabf809
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat b/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat
new file mode 100644
index 000000000..cae1407eb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..2ac2ed1cd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..024fa7060
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..baee27457
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..341c5bb88
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..57415a4c5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
new file mode 100644
index 000000000..69211e73f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
new file mode 100644
index 000000000..9cb672f70
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..202c29d49
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
new file mode 100644
index 000000000..e5b1abcca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..40ed278fe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..9ea5becd0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..924958d58
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
new file mode 100644
index 000000000..bcb3b15df
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
new file mode 100644
index 000000000..3f1b06361
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat
new file mode 100644
index 000000000..61fab8e1d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat
new file mode 100644
index 000000000..96740c767
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat
new file mode 100644
index 000000000..e7014d927
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat
new file mode 100644
index 000000000..a48325072
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat
new file mode 100644
index 000000000..2850a779c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat
new file mode 100644
index 000000000..f7b2b07ea
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..4b1978548
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat
new file mode 100644
index 000000000..b7c97fc84
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat
new file mode 100644
index 000000000..af24b99cc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat
new file mode 100644
index 000000000..b4c7b6b8b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat
new file mode 100644
index 000000000..5cc2ed738
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
new file mode 100644
index 000000000..345538670
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
new file mode 100644
index 000000000..dc1b9366d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..bf4efa88d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..447ede2c3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
new file mode 100644
index 000000000..469cd5f47
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
new file mode 100644
index 000000000..f66f62215
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
new file mode 100644
index 000000000..13dad2046
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..920917d57
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..96c718596
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..06ec28268
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..ec6ab1aca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..e3b2da34d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
new file mode 100644
index 000000000..b31b66dbc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
new file mode 100644
index 000000000..bf298aba3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
new file mode 100644
index 000000000..5b2dea403
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
new file mode 100644
index 000000000..69f79c5ca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
new file mode 100644
index 000000000..1e70e5df0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
new file mode 100644
index 000000000..f013abf94
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..80200576a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..7b0915b17
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..410f161cd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..07b0fd228
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility.png.flat
new file mode 100644
index 000000000..6a268aae6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat
new file mode 100644
index 000000000..e4468af20
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat
new file mode 100644
index 000000000..441d78990
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat
new file mode 100644
index 000000000..411d027fd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat
new file mode 100644
index 000000000..bbbabd5ce
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat
new file mode 100644
index 000000000..ef657b328
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat
new file mode 100644
index 000000000..11074336b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..e846cf28a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..f38cde89e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..1ec3f46cd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..50ce7cd73
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..7f105edb6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..7d5ea0b5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..5f61f1728
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..e1ff9b64f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..478b2cc02
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..f87c2cd81
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..9868469fe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..65992715b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..463c63dfe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..7811fa1a7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..8c246ec61
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..ceeb8d408
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..bee31fc09
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..ef6ad333e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..2fa559c47
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..86cdff197
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
new file mode 100644
index 000000000..f23882382
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
new file mode 100644
index 000000000..4f6ac5a1c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..9d033e6dd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
new file mode 100644
index 000000000..4b232a16e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..d0474a053
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..f64c7eb02
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..e26f91efd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
new file mode 100644
index 000000000..fd0a29bb6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
new file mode 100644
index 000000000..ef9d96053
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat
new file mode 100644
index 000000000..ae56c7964
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat
new file mode 100644
index 000000000..5f9d71be2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat
new file mode 100644
index 000000000..63027672c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat
new file mode 100644
index 000000000..58163ce21
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat
new file mode 100644
index 000000000..c024ae011
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat
new file mode 100644
index 000000000..4164741d7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..ee7b8a807
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat
new file mode 100644
index 000000000..b097f20c5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat
new file mode 100644
index 000000000..47370ec0f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat
new file mode 100644
index 000000000..743713145
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat
new file mode 100644
index 000000000..dbecf6cef
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
new file mode 100644
index 000000000..d19d83634
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
new file mode 100644
index 000000000..5d752484f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..663a7b6b0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..6b5474739
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
new file mode 100644
index 000000000..7b512b1d7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
new file mode 100644
index 000000000..e42f7015a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
new file mode 100644
index 000000000..f6e0ad149
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..d622d2fdd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..d7e8a507e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..686548973
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..b9b76a7ee
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..69b499068
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
new file mode 100644
index 000000000..60a09739a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
new file mode 100644
index 000000000..a6b256064
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
new file mode 100644
index 000000000..10ceaaba1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
new file mode 100644
index 000000000..c84f70e99
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
new file mode 100644
index 000000000..62a3ba6b8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
new file mode 100644
index 000000000..660644214
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..240a6c1d8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..fe7996548
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..6c75f48dc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..224f733c3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility.png.flat
new file mode 100644
index 000000000..12f4014c8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat
new file mode 100644
index 000000000..859a759bd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat
new file mode 100644
index 000000000..6a36c94f0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat
new file mode 100644
index 000000000..8dbd28165
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat
new file mode 100644
index 000000000..72a75e3d1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat
new file mode 100644
index 000000000..e1c3b3bef
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat
new file mode 100644
index 000000000..107b15304
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat
new file mode 100644
index 000000000..c0bd45e07
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat
new file mode 100644
index 000000000..a5d62211a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat
new file mode 100644
index 000000000..93a94ef07
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat
new file mode 100644
index 000000000..36d608e3f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat
new file mode 100644
index 000000000..1561e541b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_avd_hide_password.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_avd_hide_password.xml.flat
new file mode 100644
index 000000000..c580060d4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_avd_hide_password.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_avd_show_password.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_avd_show_password.xml.flat
new file mode 100644
index 000000000..71a7b1575
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_avd_show_password.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_design_bottom_navigation_item_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_design_bottom_navigation_item_background.xml.flat
new file mode 100644
index 000000000..814ce3e29
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_design_bottom_navigation_item_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_design_password_eye.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_design_password_eye.xml.flat
new file mode 100644
index 000000000..f36579f87
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_design_password_eye.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat
new file mode 100644
index 000000000..eafa62bbd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat
new file mode 100644
index 000000000..1239a8c95
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat
new file mode 100644
index 000000000..303e43fd1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..8b2091525
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..1eafb01af
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..f792a6815
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..aa5afafdc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..f31481b0f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
new file mode 100644
index 000000000..6e65dbfa2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
new file mode 100644
index 000000000..c60b17d73
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..6e6cc2692
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
new file mode 100644
index 000000000..ceb8e0a5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..f51aa9da9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..3a73b903c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..c9cd1829d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
new file mode 100644
index 000000000..727186f12
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
new file mode 100644
index 000000000..7e37feba6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat
new file mode 100644
index 000000000..e897f465f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat
new file mode 100644
index 000000000..4e35f27d3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat
new file mode 100644
index 000000000..5193e6296
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat
new file mode 100644
index 000000000..98e97e3c1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat
new file mode 100644
index 000000000..ccbc56e45
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat
new file mode 100644
index 000000000..02e395bf1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..17f8cb4ba
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat
new file mode 100644
index 000000000..47f1d8b75
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat
new file mode 100644
index 000000000..e49ea967b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
new file mode 100644
index 000000000..d0da1aff0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat
new file mode 100644
index 000000000..bca1f164c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
new file mode 100644
index 000000000..70ec1190c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
new file mode 100644
index 000000000..f1205456c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..8f9d5d86a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..765200841
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
new file mode 100644
index 000000000..af68f82cd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
new file mode 100644
index 000000000..ac503d9a4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
new file mode 100644
index 000000000..a1ac753fe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..daf14a982
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..4683e2c20
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..344c2a007
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..49cf41b46
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..9aa74d6b3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
new file mode 100644
index 000000000..6b98eec83
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
new file mode 100644
index 000000000..a99e5805e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
new file mode 100644
index 000000000..9c2674213
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
new file mode 100644
index 000000000..d2c295fd3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
new file mode 100644
index 000000000..cdf8dcf5d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
new file mode 100644
index 000000000..4eb834c04
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..e271f8209
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..25040bffd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..fded50bf3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..70a15d1b2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility.png.flat
new file mode 100644
index 000000000..cfe806e98
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat
new file mode 100644
index 000000000..f779388b9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat
new file mode 100644
index 000000000..2dad185fc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat
new file mode 100644
index 000000000..04219a5fc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat
new file mode 100644
index 000000000..fa2aacb57
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat
new file mode 100644
index 000000000..b5f8edc31
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat
new file mode 100644
index 000000000..3482f5f82
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..671d59b45
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..715418e8c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..c6288fa5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..d0fa76eb2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..11c912db3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
new file mode 100644
index 000000000..9dfbb8d5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
new file mode 100644
index 000000000..d8fd9d063
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..ca1becbc4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
new file mode 100644
index 000000000..61a9bdf49
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..4f5d691ca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..90f57ca1d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..e55c6c7bc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
new file mode 100644
index 000000000..a86b98b77
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
new file mode 100644
index 000000000..244dfa17c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat
new file mode 100644
index 000000000..893b0138b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat
new file mode 100644
index 000000000..b812f2da8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat
new file mode 100644
index 000000000..67d81f06f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
new file mode 100644
index 000000000..23723b1fb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
new file mode 100644
index 000000000..4c00956f7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
new file mode 100644
index 000000000..63f1f20be
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..5b502428a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat
new file mode 100644
index 000000000..0d1183c0b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat
new file mode 100644
index 000000000..9a3f42fd8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
new file mode 100644
index 000000000..b7f8f0d11
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat
new file mode 100644
index 000000000..0235f8774
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
new file mode 100644
index 000000000..6e8c1b12c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
new file mode 100644
index 000000000..3c4401cd8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..b174353d1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
new file mode 100644
index 000000000..6b8a336f8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
new file mode 100644
index 000000000..0e894e1da
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
new file mode 100644
index 000000000..6f81c0554
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
new file mode 100644
index 000000000..209f70667
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..1c530fe62
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..bc2458f7c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..3daff2c17
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..8176d858c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..49f4b7652
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
new file mode 100644
index 000000000..87903f6f4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
new file mode 100644
index 000000000..1bcc7fe6c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
new file mode 100644
index 000000000..67c094e2e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
new file mode 100644
index 000000000..d2c3fb1e8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
new file mode 100644
index 000000000..d6390da19
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
new file mode 100644
index 000000000..cf287a830
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..093d21f80
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..ea499d7c1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..0214aa44d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..7eda87892
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat
new file mode 100644
index 000000000..983ffb165
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat
new file mode 100644
index 000000000..4b4c5645f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..99df8167e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..ae2429253
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
new file mode 100644
index 000000000..3efe09ac0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
new file mode 100644
index 000000000..bfd095aa1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
new file mode 100644
index 000000000..8079da8a6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
new file mode 100644
index 000000000..8d95c53be
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..fb345419b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
new file mode 100644
index 000000000..8570dcfa9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
new file mode 100644
index 000000000..fc2c61b19
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
new file mode 100644
index 000000000..4be998086
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
new file mode 100644
index 000000000..4dfcb0d3a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat
new file mode 100644
index 000000000..3ea50735c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat
new file mode 100644
index 000000000..ec8db4d4f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat
new file mode 100644
index 000000000..7c43080ca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
new file mode 100644
index 000000000..86bcacea0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
new file mode 100644
index 000000000..dc78e3217
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
new file mode 100644
index 000000000..ef652d517
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
new file mode 100644
index 000000000..93455b646
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
new file mode 100644
index 000000000..157228b69
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
new file mode 100644
index 000000000..46823bdc0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..0d9c1fef3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
new file mode 100644
index 000000000..56ac6e388
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
new file mode 100644
index 000000000..e6fef5324
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
new file mode 100644
index 000000000..fd8ead2c7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
new file mode 100644
index 000000000..f8f676d1f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
new file mode 100644
index 000000000..399e0efb4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat
new file mode 100644
index 000000000..80d0a8568
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat
new file mode 100644
index 000000000..8bb41ccc1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat
new file mode 100644
index 000000000..f0c94c17e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat
new file mode 100644
index 000000000..467e63280
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_btn_colored_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_btn_colored_material.xml.flat
new file mode 100644
index 000000000..4824f024b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_btn_colored_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat
new file mode 100644
index 000000000..a033e1080
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat
new file mode 100644
index 000000000..70d91d9b1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat
new file mode 100644
index 000000000..d2a029bd5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat
new file mode 100644
index 000000000..487b287a3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_dialog_material_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_dialog_material_background.xml.flat
new file mode 100644
index 000000000..f4ca510fe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_dialog_material_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_edit_text_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_edit_text_material.xml.flat
new file mode 100644
index 000000000..5d00922cf
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_edit_text_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat
new file mode 100644
index 000000000..837212cf5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat
new file mode 100644
index 000000000..9baca0160
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat
new file mode 100644
index 000000000..a9a616f3c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat
new file mode 100644
index 000000000..eac0bb8dc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat
new file mode 100644
index 000000000..a69933170
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat
new file mode 100644
index 000000000..d66f302ae
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat
new file mode 100644
index 000000000..f67894ba8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat
new file mode 100644
index 000000000..1493f73d0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat
new file mode 100644
index 000000000..4fd68a394
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_list_divider_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_list_divider_material.xml.flat
new file mode 100644
index 000000000..8d191bf98
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_list_divider_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat
new file mode 100644
index 000000000..dd997518b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat
new file mode 100644
index 000000000..5a17713ea
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat
new file mode 100644
index 000000000..076ed64c3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat
new file mode 100644
index 000000000..10c897b03
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat
new file mode 100644
index 000000000..c82534ca2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat
new file mode 100644
index 000000000..8f981785a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat
new file mode 100644
index 000000000..a05d2aba9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat
new file mode 100644
index 000000000..58e4fd462
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat
new file mode 100644
index 000000000..f95f7f927
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat
new file mode 100644
index 000000000..5cbb1c9d5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat
new file mode 100644
index 000000000..c9207573f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat
new file mode 100644
index 000000000..ade9fb29d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat
new file mode 100644
index 000000000..bd108080d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat
new file mode 100644
index 000000000..cb57172b3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat
new file mode 100644
index 000000000..7b59920ec
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat b/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat
new file mode 100644
index 000000000..b81d254d6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_design_bottom_navigation_item_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_design_bottom_navigation_item_background.xml.flat
new file mode 100644
index 000000000..a98a1fafd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_design_bottom_navigation_item_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_design_fab_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_design_fab_background.xml.flat
new file mode 100644
index 000000000..b9c90af7b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_design_fab_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_design_password_eye.xml.flat b/android/build/intermediates/res/compiled/release/drawable_design_password_eye.xml.flat
new file mode 100644
index 000000000..f1a9f525a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_design_password_eye.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_design_snackbar_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_design_snackbar_background.xml.flat
new file mode 100644
index 000000000..b0b38cb4e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_design_snackbar_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_black.xml.flat b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_black.xml.flat
new file mode 100644
index 000000000..52f85d5ca
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_black.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_circle.xml.flat b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_circle.xml.flat
new file mode 100644
index 000000000..ea4f42842
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_checked_circle.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_close_circle.xml.flat b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_close_circle.xml.flat
new file mode 100644
index 000000000..7bfd8a32e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_ic_mtrl_chip_close_circle.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_mtrl_snackbar_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_mtrl_snackbar_background.xml.flat
new file mode 100644
index 000000000..3a7ccefde
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_mtrl_snackbar_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_mtrl_tabs_default_indicator.xml.flat b/android/build/intermediates/res/compiled/release/drawable_mtrl_tabs_default_indicator.xml.flat
new file mode 100644
index 000000000..35b40bf0f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_mtrl_tabs_default_indicator.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_navigation_empty_icon.xml.flat b/android/build/intermediates/res/compiled/release/drawable_navigation_empty_icon.xml.flat
new file mode 100644
index 000000000..34081a41c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_navigation_empty_icon.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat b/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat
new file mode 100644
index 000000000..d17476692
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat b/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat
new file mode 100644
index 000000000..8130b053f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat b/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat
new file mode 100644
index 000000000..0505842fe
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat b/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat
new file mode 100644
index 000000000..f3b427795
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat b/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat
new file mode 100644
index 000000000..41a7fdf1b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat b/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat
new file mode 100644
index 000000000..8d203f5de
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat
new file mode 100644
index 000000000..4dededca1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat
new file mode 100644
index 000000000..7be42e339
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat
new file mode 100644
index 000000000..5566665a3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_linear_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_linear_in.xml.flat
new file mode 100644
index 000000000..dc52e8308
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_linear_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_slow_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_slow_in.xml.flat
new file mode 100644
index 000000000..c2bcd5364
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator_mtrl_fast_out_slow_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear.xml.flat b/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear.xml.flat
new file mode 100644
index 000000000..9dcc2e04a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear_out_slow_in.xml.flat b/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear_out_slow_in.xml.flat
new file mode 100644
index 000000000..d42d604ed
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/interpolator_mtrl_linear_out_slow_in.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat b/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat
new file mode 100644
index 000000000..3e551d8da
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat b/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat
new file mode 100644
index 000000000..41ddcb9d6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v16_notification_template_custom_big.xml.flat b/android/build/intermediates/res/compiled/release/layout-v16_notification_template_custom_big.xml.flat
new file mode 100644
index 000000000..f3f3c1a44
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v16_notification_template_custom_big.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat b/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat
new file mode 100644
index 000000000..58454c1eb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat b/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat
new file mode 100644
index 000000000..f8f1ca41c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat b/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat
new file mode 100644
index 000000000..22b78631f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat b/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat
new file mode 100644
index 000000000..4a4c3efa5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat b/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat
new file mode 100644
index 000000000..d53dd5b81
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat
new file mode 100644
index 000000000..8eae48a43
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat
new file mode 100644
index 000000000..845c8e1d6
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat
new file mode 100644
index 000000000..a09d0e9b1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat
new file mode 100644
index 000000000..4a3a5bd93
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat
new file mode 100644
index 000000000..d176e80cd
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat
new file mode 100644
index 000000000..d73b0d8f8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat
new file mode 100644
index 000000000..71ed83d5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat
new file mode 100644
index 000000000..919e1e1c3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat
new file mode 100644
index 000000000..a879b3862
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat
new file mode 100644
index 000000000..ea1061e62
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat
new file mode 100644
index 000000000..4b9c56869
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat
new file mode 100644
index 000000000..32bdd3fec
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat
new file mode 100644
index 000000000..a0d3877ee
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat
new file mode 100644
index 000000000..4fa1b87b9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat
new file mode 100644
index 000000000..a01bf3888
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat
new file mode 100644
index 000000000..ed954e7ec
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat
new file mode 100644
index 000000000..9fc3a1591
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat
new file mode 100644
index 000000000..b8ce4a46b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat
new file mode 100644
index 000000000..131ad6ef5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat
new file mode 100644
index 000000000..6c1a7cd46
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat
new file mode 100644
index 000000000..d8a72ad14
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat
new file mode 100644
index 000000000..ed723849c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat
new file mode 100644
index 000000000..22ef82812
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat
new file mode 100644
index 000000000..580870b88
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat
new file mode 100644
index 000000000..e1750ca30
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat
new file mode 100644
index 000000000..3de1bfd1c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat
new file mode 100644
index 000000000..214560878
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat
new file mode 100644
index 000000000..b7a37d468
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat
new file mode 100644
index 000000000..f03371fef
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat b/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat
new file mode 100644
index 000000000..6c0324fcc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_activity_open_note_scanner.xml.flat b/android/build/intermediates/res/compiled/release/layout_activity_open_note_scanner.xml.flat
new file mode 100644
index 000000000..5be4d5e3a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_activity_open_note_scanner.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_bottom_navigation_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_bottom_navigation_item.xml.flat
new file mode 100644
index 000000000..a4cce451b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_bottom_navigation_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_bottom_sheet_dialog.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_bottom_sheet_dialog.xml.flat
new file mode 100644
index 000000000..31db8013a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_bottom_sheet_dialog.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar.xml.flat
new file mode 100644
index 000000000..e89052eba
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar_include.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar_include.xml.flat
new file mode 100644
index 000000000..baa122b2b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_layout_snackbar_include.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_layout_tab_icon.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_layout_tab_icon.xml.flat
new file mode 100644
index 000000000..f33855b2c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_layout_tab_icon.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_layout_tab_text.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_layout_tab_text.xml.flat
new file mode 100644
index 000000000..ad5ad8234
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_layout_tab_text.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_menu_item_action_area.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_menu_item_action_area.xml.flat
new file mode 100644
index 000000000..355d380e3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_menu_item_action_area.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_item.xml.flat
new file mode 100644
index 000000000..8d0d30ee9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_item_header.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_header.xml.flat
new file mode 100644
index 000000000..07f1ed2d9
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_header.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_item_separator.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_separator.xml.flat
new file mode 100644
index 000000000..0b6d24650
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_separator.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_item_subheader.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_subheader.xml.flat
new file mode 100644
index 000000000..be1802a94
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_item_subheader.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_menu.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_menu.xml.flat
new file mode 100644
index 000000000..70b443989
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_menu.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_navigation_menu_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_navigation_menu_item.xml.flat
new file mode 100644
index 000000000..f792312c0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_navigation_menu_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_design_text_input_password_icon.xml.flat b/android/build/intermediates/res/compiled/release/layout_design_text_input_password_icon.xml.flat
new file mode 100644
index 000000000..409d37753
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_design_text_input_password_icon.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat b/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat
new file mode 100644
index 000000000..d33bb3629
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar.xml.flat b/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar.xml.flat
new file mode 100644
index 000000000..da9be779c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar_include.xml.flat b/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar_include.xml.flat
new file mode 100644
index 000000000..437d81969
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_mtrl_layout_snackbar_include.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_notification_action.xml.flat b/android/build/intermediates/res/compiled/release/layout_notification_action.xml.flat
new file mode 100644
index 000000000..2358c7345
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_notification_action.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_notification_action_tombstone.xml.flat b/android/build/intermediates/res/compiled/release/layout_notification_action_tombstone.xml.flat
new file mode 100644
index 000000000..9e5dd62be
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_notification_action_tombstone.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_notification_template_icon_group.xml.flat b/android/build/intermediates/res/compiled/release/layout_notification_template_icon_group.xml.flat
new file mode 100644
index 000000000..351d9f96a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_notification_template_icon_group.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat b/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat
new file mode 100644
index 000000000..59d74db65
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat b/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat
new file mode 100644
index 000000000..65ca2a7be
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat b/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat
new file mode 100644
index 000000000..4513cab23
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat b/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat
new file mode 100644
index 000000000..61771f61f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat b/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat
new file mode 100644
index 000000000..8ac84aaaf
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat
new file mode 100644
index 000000000..b83ddf416
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat
new file mode 100644
index 000000000..ade18945b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat b/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat
new file mode 100644
index 000000000..8fba0bf8f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat b/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat
new file mode 100644
index 000000000..136b5fcf5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat b/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat
new file mode 100644
index 000000000..67c30a922
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat b/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat
new file mode 100644
index 000000000..0ee42e34a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat b/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat
new file mode 100644
index 000000000..591d6bb07
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat b/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat
new file mode 100644
index 000000000..5dd6c8c5a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat b/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat
new file mode 100644
index 000000000..e6c17cf75
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat
new file mode 100644
index 000000000..205de36ec
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat b/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat
new file mode 100644
index 000000000..4802c8d22
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat b/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat
new file mode 100644
index 000000000..0884ecb44
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat b/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat
new file mode 100644
index 000000000..7bfdeb8c3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat b/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat
new file mode 100644
index 000000000..006888284
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat b/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat
new file mode 100644
index 000000000..2017b3fe0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat b/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat
new file mode 100644
index 000000000..c4f7ec8da
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat b/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat
new file mode 100644
index 000000000..6725a1097
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat b/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat
new file mode 100644
index 000000000..225d007bc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat b/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat
new file mode 100644
index 000000000..eaf903f82
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat b/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat
new file mode 100644
index 000000000..1287fae6d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat b/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat
new file mode 100644
index 000000000..e2c6c37ab
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat b/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat
new file mode 100644
index 000000000..4bc029119
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat b/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat
new file mode 100644
index 000000000..3397cabc1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat b/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat
new file mode 100644
index 000000000..fb0b4099c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-es-rES_values-es-rES.arsc.flat b/android/build/intermediates/res/compiled/release/values-es-rES_values-es-rES.arsc.flat
new file mode 100644
index 000000000..409194ca3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-es-rES_values-es-rES.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat b/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat
new file mode 100644
index 000000000..91989163c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat b/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat
new file mode 100644
index 000000000..b419b6bf8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat b/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat
new file mode 100644
index 000000000..68d16b6fa
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat b/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat
new file mode 100644
index 000000000..420a3922d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat b/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat
new file mode 100644
index 000000000..110958984
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fb-rLL_values-fb-rLL.arsc.flat b/android/build/intermediates/res/compiled/release/values-fb-rLL_values-fb-rLL.arsc.flat
new file mode 100644
index 000000000..5db5ca5da
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fb-rLL_values-fb-rLL.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fb_values-fb.arsc.flat b/android/build/intermediates/res/compiled/release/values-fb_values-fb.arsc.flat
new file mode 100644
index 000000000..206142316
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fb_values-fb.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat b/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat
new file mode 100644
index 000000000..1314d329b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat b/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat
new file mode 100644
index 000000000..b537ea475
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat b/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat
new file mode 100644
index 000000000..b105811a4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat b/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat
new file mode 100644
index 000000000..994de14e7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat b/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat
new file mode 100644
index 000000000..3d04d7b0b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat b/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat
new file mode 100644
index 000000000..38955ed5f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat b/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat
new file mode 100644
index 000000000..bf11127ba
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat b/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat
new file mode 100644
index 000000000..d3d8a8911
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat b/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat
new file mode 100644
index 000000000..6d892eb17
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat b/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat
new file mode 100644
index 000000000..68aa04ca7
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat b/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat
new file mode 100644
index 000000000..19ce2aa43
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat b/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat
new file mode 100644
index 000000000..aa6791d54
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat b/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat
new file mode 100644
index 000000000..5420174c8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat b/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat
new file mode 100644
index 000000000..3226b7b79
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat b/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat
new file mode 100644
index 000000000..71a723e28
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat b/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat
new file mode 100644
index 000000000..3aa4b05ab
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat b/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat
new file mode 100644
index 000000000..21682ae56
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat b/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat
new file mode 100644
index 000000000..ddc60d681
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat b/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat
new file mode 100644
index 000000000..50babb08e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat b/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat
new file mode 100644
index 000000000..dd9bc98c8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat b/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat
new file mode 100644
index 000000000..672e9d147
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat b/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat
new file mode 100644
index 000000000..9d9894a7e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat b/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat
new file mode 100644
index 000000000..7bcda5b7b
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat b/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat
new file mode 100644
index 000000000..bdc6ccb39
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat b/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat
new file mode 100644
index 000000000..a9a3f1ddc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat b/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat
new file mode 100644
index 000000000..c88380520
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat b/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat
new file mode 100644
index 000000000..a57ed4098
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat b/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat
new file mode 100644
index 000000000..162cbf60c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat b/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat
new file mode 100644
index 000000000..cac237cb1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat b/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat
new file mode 100644
index 000000000..02e66cea2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat b/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat
new file mode 100644
index 000000000..b8986f504
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat b/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat
new file mode 100644
index 000000000..a41f3a931
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat b/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat
new file mode 100644
index 000000000..43a5a9946
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat b/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat
new file mode 100644
index 000000000..5d436634d
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat b/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat
new file mode 100644
index 000000000..b5974c83a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat b/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat
new file mode 100644
index 000000000..fbc82efd3
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat b/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat
new file mode 100644
index 000000000..d68d43397
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat b/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat
new file mode 100644
index 000000000..b32ec4455
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat b/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat
new file mode 100644
index 000000000..8a596d268
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat b/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat
new file mode 100644
index 000000000..4c0f79762
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat b/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat
new file mode 100644
index 000000000..b533da0b1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat b/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat
new file mode 100644
index 000000000..21b01531e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat b/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat
new file mode 100644
index 000000000..32df5f5cb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat b/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat
new file mode 100644
index 000000000..f55c33bde
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat b/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat
new file mode 100644
index 000000000..19573a671
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat b/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat
new file mode 100644
index 000000000..4e7042749
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat b/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat
new file mode 100644
index 000000000..3535c20d4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat b/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat
new file mode 100644
index 000000000..57edb0488
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat b/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat
new file mode 100644
index 000000000..af1dd50f8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat b/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat
new file mode 100644
index 000000000..ea14c6919
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat b/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat
new file mode 100644
index 000000000..25a126bed
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat b/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat
new file mode 100644
index 000000000..efb0e2943
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat b/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat
new file mode 100644
index 000000000..31f2442d0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat
new file mode 100644
index 000000000..4e3a145ac
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat b/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat
new file mode 100644
index 000000000..cc08ad5d5
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat b/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat
new file mode 100644
index 000000000..331372dd8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat b/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat
new file mode 100644
index 000000000..51d3f09b2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat b/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat
new file mode 100644
index 000000000..0d7fbcda0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat b/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat
new file mode 100644
index 000000000..a12c86cf1
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat b/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat
new file mode 100644
index 000000000..9f0a079a4
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat b/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat
new file mode 100644
index 000000000..295b8480c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat b/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat
new file mode 100644
index 000000000..0164b34e2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat b/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat
new file mode 100644
index 000000000..3fd4179f0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat b/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat
new file mode 100644
index 000000000..352ad17af
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat b/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat
new file mode 100644
index 000000000..f2a5226f8
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat b/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat
new file mode 100644
index 000000000..663600817
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat b/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat
new file mode 100644
index 000000000..5dbf3ceed
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat b/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat
new file mode 100644
index 000000000..8ff141c2f
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat b/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat
new file mode 100644
index 000000000..5fcd1d409
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat b/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat
new file mode 100644
index 000000000..4d64be04a
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat b/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat
new file mode 100644
index 000000000..8a31d50d2
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat b/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat
new file mode 100644
index 000000000..4b8bb518c
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat b/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat
new file mode 100644
index 000000000..4b6a5b3bb
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat b/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat
new file mode 100644
index 000000000..a0d218aa0
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat b/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat
new file mode 100644
index 000000000..6b0486e17
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat b/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat
new file mode 100644
index 000000000..1f125b925
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat b/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat
new file mode 100644
index 000000000..47066d229
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat b/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat
new file mode 100644
index 000000000..a19646f88
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat b/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat
new file mode 100644
index 000000000..28a3e467e
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat b/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat
new file mode 100644
index 000000000..e48460fdc
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat b/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat
new file mode 100644
index 000000000..0dc1e8a64
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/values_values.arsc.flat b/android/build/intermediates/res/compiled/release/values_values.arsc.flat
new file mode 100644
index 000000000..5d69a2654
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/values_values.arsc.flat differ
diff --git a/android/build/intermediates/res/compiled/release/xml_preferences.xml.flat b/android/build/intermediates/res/compiled/release/xml_preferences.xml.flat
new file mode 100644
index 000000000..8a2d63dec
Binary files /dev/null and b/android/build/intermediates/res/compiled/release/xml_preferences.xml.flat differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..b5960a3a2
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..d680abe80
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim-v21/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml
new file mode 100644
index 000000000..da7ee295c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml
new file mode 100644
index 000000000..c81b39a9b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 000000000..79d02d44c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml
new file mode 100644
index 000000000..91664da17
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml
new file mode 100644
index 000000000..db7e8073a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 000000000..9a23cd202
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml
new file mode 100644
index 000000000..1afa8febc
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml
new file mode 100644
index 000000000..ab824f2e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml
new file mode 100644
index 000000000..b309fe89c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml
new file mode 100644
index 000000000..e84d1c7fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_in.xml
new file mode 100644
index 000000000..aef91bc52
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_out.xml
new file mode 100644
index 000000000..790e27589
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..7cbae08bf
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..2e30963d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_in.xml
new file mode 100644
index 000000000..294050f54
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_in.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_out.xml
new file mode 100644
index 000000000..0f80a9ab0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_out.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_in.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_in.xml
new file mode 100644
index 000000000..a40524c2b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_out.xml b/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_out.xml
new file mode 100644
index 000000000..eb55cc0e5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 000000000..e0160766e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 000000000..290faf1a0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color-v23/abc_color_highlight_material.xml b/android/build/intermediates/res/merged/androidTest/debug/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 000000000..8d5361189
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 000000000..724c2557d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 000000000..7395e680c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml
new file mode 100644
index 000000000..7d66d02d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml
new file mode 100644
index 000000000..105b643dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml
new file mode 100644
index 000000000..0631d5d4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 000000000..6399b1d02
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml b/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml
new file mode 100644
index 000000000..87c015a4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml
new file mode 100644
index 000000000..6153382c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml b/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml
new file mode 100644
index 000000000..94d711482
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/angle.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/angle.xml
new file mode 100644
index 000000000..4709b71b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/angle.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
new file mode 100644
index 000000000..38fbc261b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_camera_green.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_camera_green.xml
new file mode 100644
index 000000000..f168c5131
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_camera_green.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
new file mode 100644
index 000000000..07de58256
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_find_in_page.xml
new file mode 100644
index 000000000..d2ac3ac62
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_find_in_page.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
new file mode 100644
index 000000000..a3c81cc38
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
new file mode 100644
index 000000000..0234f6551
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_launcher_background.xml
new file mode 100644
index 000000000..d5fccc538
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_menu_tag.xml
new file mode 100644
index 000000000..0fc39f435
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_menu_tag.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_monochrome.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_monochrome.xml
new file mode 100644
index 000000000..b7abf9780
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_monochrome.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_palette.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_palette.xml
new file mode 100644
index 000000000..c0bccf28f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_palette.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
new file mode 100644
index 000000000..1de4266fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_settings.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_settings.xml
new file mode 100644
index 000000000..ca2916e55
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_settings.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_bell.xml
new file mode 100644
index 000000000..4e8870e8e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_bell.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_game.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_game.xml
new file mode 100644
index 000000000..4a8c8fc8d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_game.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_gift.xml
new file mode 100644
index 000000000..9267e7036
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_gift.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_magnet.xml
new file mode 100644
index 000000000..32c78e9c4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_magnet.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_rocket.xml
new file mode 100644
index 000000000..6acc86aec
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_rocket.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_star.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_star.xml
new file mode 100644
index 000000000..692f1fd53
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_star.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_tv.xml
new file mode 100644
index 000000000..13a82b0a1
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/ic_tag_tv.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..f534f58a1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..99110085f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..69ff9dde3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..9218981b4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..a58857635
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..1b12adf09
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..30c8c997e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..38a55f93c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..50a350f48
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e0d4c348
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..46ccacc5a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..ce6433457
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..65ccd8f41
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..f39c1534f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..706fc1fa3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..e78bcaf57
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..00e189b85
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..8610c5015
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..e631df7f6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..cd1f57c5b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..cc6d5da86
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..a728afe60
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..64b2aa7f2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..cf270fe1b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..49ad6cd74
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a6dbc2a88
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..3becd3ac3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..7ffeb1d0a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..658b69453
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..c10a7bfb1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..d290ccb9c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..e66354dd0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..dc1616c65
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..e7c999ec8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..2db7619ba
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..208def6c1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..c9c203e5d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..253e906fa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..a171b9e24
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..b937eaa5f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..c5ef71029
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..1a399634f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..43fd9eeb1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..2cb0180f1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..21f9b795f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..42e291e05
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..18dc90c55
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/angle.png
new file mode 100644
index 000000000..5433efae0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..ac90addd1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..7b8e7f0d3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..4a9f76947
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..379119cc9
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..a1c2d2c67
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..589602aaf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..6d0a4ff7f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..8c162de16
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..37462f473
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..9fdc78541
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_palette.png
new file mode 100644
index 000000000..653306eb8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..cef861ced
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_settings.png
new file mode 100644
index 000000000..befb03bd0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..6fd1885b9
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..c5a80bc59
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..bc4ce02f9
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..d6c97a5eb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..24a0aa2f6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..7c1da37c6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..8ac4c7761
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/angle.png
new file mode 100644
index 000000000..2bc26f68f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..51a52c68e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..cb5d4d53c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..6ae7378c1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..92aaea9e2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..c79e82a4b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0210836ec
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..12759f4a5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..6a3e242e2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..627d0be43
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_palette.png
new file mode 100644
index 000000000..b85e842b4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9c18c4761
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_settings.png
new file mode 100644
index 000000000..3cba81fa4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..9c7da82a0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..48f25c250
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..25bcca44e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..d57f9dafb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..56a52cd85
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..b1e67a634
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..cb78d2acf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..57211b528
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..a262b0c87
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..d8eaf0761
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..8e188de66
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..b872414ba
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..254f80615
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..efe4446d6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..44670d1f2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..ffa165417
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..88e34c4a0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..87bf8d36b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..eaf546db5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..33b4f0fe7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb542158a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..3cdb6cf5c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..1a6aa9b15
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..a91425a7e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb91811b7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..90fe333ac
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..b18cdf2c2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..b7d0119c8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..7a9fcbcbf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..3b052e577
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..96a86931c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..6e18d40d7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..27a75a7fa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..14e9e098a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..32cae2463
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..8ea96f46a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..d81b5267f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..90fbc56bb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..dde307e41
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..6086f9c38
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0084c1204
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..559b83539
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..1c0a1e99d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..234a95893
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1492ab62a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..7c011af4c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..36f664cca
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..faefc59c8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..3f5d25e01
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..2ddcdd985
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..077f9b05d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..ac6ad111b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a216da173
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..3becd3ac3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..0678971d3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..918050252
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..f7aa67553
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..f16bf97e7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..4a3adf3f4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..b2b9f2785
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..81256eea8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..4b6a6680c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..ddd6d0ab5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..9280f8296
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..f60817c60
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..9ef8a4e89
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..e129e3e2d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..a354a15f2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..7a4c52595
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..d9b318621
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..be107a9bd
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..231140592
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..b9ce196cf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..0cb1ce81d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/angle.png
new file mode 100644
index 000000000..0ef8547a0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..4214c25d1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..6b2f061a4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..e2f5f3555
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..d00da71dc
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..6f76def11
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..3717dcd22
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0f551225a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..7d22ca5ad
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..d292d9cf4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..b596690f5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_palette.png
new file mode 100644
index 000000000..ce5190cdb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..b41371693
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_settings.png
new file mode 100644
index 000000000..c166d6834
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..7be0dce10
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..1efaa4eb2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..14d873f2f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..7af83edd5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..836cb2187
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..3ccfcc417
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..d46d1674f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_action_bar_item_background_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 000000000..595c56c6a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 000000000..10251aadc
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_edit_text_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_edit_text_material.xml
new file mode 100644
index 000000000..d98b0085b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/abc_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_camera.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_camera.xml
new file mode 100644
index 000000000..0d9ea104b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_camera.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_gallery.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_gallery.xml
new file mode 100644
index 000000000..f6872c409
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_gallery.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_manage.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_manage.xml
new file mode 100644
index 000000000..c1be60b36
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_manage.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_send.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_send.xml
new file mode 100644
index 000000000..00c668c60
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_send.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_share.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_share.xml
new file mode 100644
index 000000000..c5027c659
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_share.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_slideshow.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_slideshow.xml
new file mode 100644
index 000000000..209aa6430
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v21/ic_menu_slideshow.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v23/abc_control_background_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 000000000..0b540390a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-v24/ic_launcher_foreground.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 000000000..89c01cbfd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..fdec4e7fc
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..49025208b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..59a683ab6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..03bf49cc5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..342323b4b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..05e6afeca
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..7116604a5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..365c467b1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..061990d8b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..a07ebea9a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..154babda6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..6d90d0ce7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..ca303fd6e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..19e000ac7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..64485495f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..cd38901c4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..e76c83e0b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..9aabc43ce
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..6a7161f2f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..6be7e097c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..4510e52e6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..35fe96563
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..45887c13d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..ea6033adb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..2f4818b29
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7329c15b5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..3becd3ac3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..8965f3e5e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..d1bffd0dc
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..defab445a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..6a609c545
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..d4678b546
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..5b84092f7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..b46727854
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..f4a52e93b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..1627f211a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..0486af199
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..0b15d9611
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..0f339ae7f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..81e2402c3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..4fbd9073e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..dd0a96477
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..c5a2319e1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..1b69efe95
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..fd13b7902
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..96a583252
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..8053d167c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/angle.png
new file mode 100644
index 000000000..3e2fe209b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..f09bce589
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..7b6420e46
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..388b5b060
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..161817679
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..41bd4bbf5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..5b352ef2c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..c1cc5225f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..382269236
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..5f84b6bfa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..5102eca6b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..e51b11c6f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9029fa88e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..ffb6c4cfa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..ac132447f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..6f8534347
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..9d2f3af66
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..8d44365df
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..ee42f2d76
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..9c58b9afd
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..c75e3e0b7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..e0411c025
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..accf80e4a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..8c82ec3d7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..8fc0a9b87
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..3038d70fc
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..37b858316
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..4a3bd1438
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..2d2015060
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..ca9237cdf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..b9c2101db
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..f99802f01
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..b85e87f04
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7d9dfa4db
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d04162373
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..90d6ba3c6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..63e541f4b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..c382aa61e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..f71485c2d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..162ab9847
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..d95a3774a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0ada3a39f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..e5509b034
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..72685abe7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..8e985b46d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..19bbc1202
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..dacf4072c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..8065ce2d2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..195b9b4af
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..83e741b34
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..e8cf10a62
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..2fc23a0e0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..b643f2ffb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..ec173003e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..650b49039
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..6d4ab340b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..eb6e91b0a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..dd0031cf5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..9955cdfe8
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..5195bbe3c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..75e54e799
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..5ed15a801
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..8434a33f1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..39ee874e3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..e806d4214
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..c72f1a245
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..8ee3d7cf6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..24a2d7b98
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/angle.png
new file mode 100644
index 000000000..a2bb6a244
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..7c227907a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..c9bef326d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..3fcdfdb55
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..5cafd1c72
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..b97a1bd2e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..cb240876a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0c758f0cf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..b364ee3c0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..ee1f3a046
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..9432d22d4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..333dbabc0
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..092a88818
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..e8e6c2961
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..4d1ad65f7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..be379e7e2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..9e6182bb7
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..b19b72624
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..cf01c0faa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..b44b09d7d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..19bca9489
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..d44bbae5e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..4e18de21a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..5fa326654
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..c11cb2ec6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..893d3b54b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..b8c9cfa6c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..41d6d6bb4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..da2b57715
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..715db8adf
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..397fd91c6
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..bb074a65f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1891b3d06
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..591a1c918
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..ba16aac56
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..5430b2cd4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..cc8109732
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..dc312c14a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..1c7f66eaa
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..82e729387
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d1916422b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..7dfaf7cf3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..fe8f2e40e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..b5900e91e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..6ef2c21b9
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..cbfcb0bcd
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/angle.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/angle.png
new file mode 100644
index 000000000..2cdef2db1
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..440c98cba
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..572292e8f
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..8d322aa9b
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..d7a66cfab
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..19d12b07e
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..95584d084
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..c91b55b94
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..85b5fa304
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..b73903865
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..d32a14ffc
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..0d6c41499
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..e484cfade
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..94fd2a555
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..1ea1bf938
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..dc5a55dcb
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..cc1b3e696
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..992f425e5
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..5b4d833d3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..37cfb0c22
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..692b1a048
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 000000000..f3894600b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml
new file mode 100644
index 000000000..f6e938fe4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_colored_material.xml
new file mode 100644
index 000000000..ec93b8b6b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 000000000..c50d4b10f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml
new file mode 100644
index 000000000..6e9f9cf37
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 000000000..9faf60ac6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 000000000..f20add7e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 000000000..41c4a6f84
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 000000000..248b13af9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml
new file mode 100644
index 000000000..46c4e9120
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 000000000..72162c222
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 000000000..1c180b2ee
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 000000000..0add58c86
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 000000000..0c1d3e678
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 000000000..1fb5fc451
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 000000000..8d2404722
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 000000000..535e2da25
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_indicator_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_indicator_material.xml
new file mode 100644
index 000000000..207991c2e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_indicator_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_small_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_small_material.xml
new file mode 100644
index 000000000..6daff8bcc
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_small_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_thumb_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_thumb_material.xml
new file mode 100644
index 000000000..7fea83bc8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_thumb_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_track_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_track_material.xml
new file mode 100644
index 000000000..e68ac03e9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_seekbar_track_material.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 000000000..d0f46a809
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 000000000..ee96ec2e7
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 000000000..1a8de1b69
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_text_cursor_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_text_cursor_material.xml
new file mode 100644
index 000000000..885670c99
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml
new file mode 100644
index 000000000..08873966e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/button_background.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/button_background.xml
new file mode 100644
index 000000000..3c394bd48
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/button_background.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/design_fab_background.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/design_fab_background.xml
new file mode 100644
index 000000000..43afd5c9a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/design_fab_background.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/design_snackbar_background.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/design_snackbar_background.xml
new file mode 100644
index 000000000..e82441c24
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/design_snackbar_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/round_button.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/round_button.xml
new file mode 100644
index 000000000..0a5d98e5d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/round_button.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/drawable/side_nav_bar.xml b/android/build/intermediates/res/merged/androidTest/debug/drawable/side_nav_bar.xml
new file mode 100644
index 000000000..458b4b07d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/drawable/side_nav_bar.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout-sw600dp-v13/design_layout_snackbar.xml b/android/build/intermediates/res/merged/androidTest/debug/layout-sw600dp-v13/design_layout_snackbar.xml
new file mode 100644
index 000000000..b68395ab6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout-sw600dp-v13/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml
new file mode 100644
index 000000000..194afb74c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml
new file mode 100644
index 000000000..f46550a55
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 000000000..5c105ab55
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 000000000..283358a5d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,30 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml
new file mode 100644
index 000000000..4918d2fba
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml
new file mode 100644
index 000000000..dc1f1ba23
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 000000000..2944d9838
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml
new file mode 100644
index 000000000..0100c235a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 000000000..887427d80
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_button_bar_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_button_bar_material.xml
new file mode 100644
index 000000000..d32ad1091
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_button_bar_material.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml
new file mode 100644
index 000000000..323753398
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml
new file mode 100644
index 000000000..1ea20c5e1
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 000000000..560ada6fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 000000000..d9c3f0681
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 000000000..acd005a13
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 000000000..c85469dd6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 000000000..0ca8d7a2a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 000000000..47125fe4e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_content_include.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_content_include.xml
new file mode 100644
index 000000000..1c30338f9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_content_include.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml
new file mode 100644
index 000000000..2783187d0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 000000000..c02c2aa9c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml
new file mode 100644
index 000000000..96412c15b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 000000000..b81d5d8ca
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml
new file mode 100644
index 000000000..a7446e364
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml
new file mode 100644
index 000000000..12bcbf1f3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/about_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/about_view.xml
new file mode 100644
index 000000000..d1d6f07c5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/about_view.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/activity_fullscreen_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_fullscreen_view.xml
new file mode 100644
index 000000000..c2ff07ec5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_fullscreen_view.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/activity_gallery.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_gallery.xml
new file mode 100644
index 000000000..827ddb2d8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_gallery.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml
new file mode 100644
index 000000000..f2f3ca7e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/activity_open_note_scanner.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..169245743
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_open_note_scanner.xml
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/activity_settings.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_settings.xml
new file mode 100644
index 000000000..3509b8411
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/activity_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_bottom_sheet_dialog.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_bottom_sheet_dialog.xml
new file mode 100644
index 000000000..27bb8065c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_bottom_sheet_dialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar.xml
new file mode 100644
index 000000000..604aafc03
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar_include.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar_include.xml
new file mode 100644
index 000000000..1aab24b87
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar_include.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_icon.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_icon.xml
new file mode 100644
index 000000000..5dcfa117f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_icon.xml
@@ -0,0 +1,21 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_text.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_text.xml
new file mode 100644
index 000000000..a83bb3d10
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_tab_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_menu_item_action_area.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_menu_item_action_area.xml
new file mode 100644
index 000000000..ba8141d14
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_menu_item_action_area.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item.xml
new file mode 100644
index 000000000..ccd42de9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_header.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_header.xml
new file mode 100644
index 000000000..8d03f695f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_header.xml
@@ -0,0 +1,22 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_separator.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_separator.xml
new file mode 100644
index 000000000..938a3fbdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_separator.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_subheader.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_subheader.xml
new file mode 100644
index 000000000..707ec6aea
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item_subheader.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu.xml
new file mode 100644
index 000000000..b6a0ad5f1
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu_item.xml
new file mode 100644
index 000000000..91104bb17
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu_item.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml
new file mode 100644
index 000000000..468caa9f3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/gallery_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/gallery_item.xml
new file mode 100644
index 000000000..92f55043e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/gallery_item.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/layout_fullscreen_image.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/layout_fullscreen_image.xml
new file mode 100644
index 000000000..a2cf6d12f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/layout_fullscreen_image.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_action.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_action.xml
new file mode 100644
index 000000000..d54679292
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_cancel_action.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_cancel_action.xml
new file mode 100644
index 000000000..e9b5fb078
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_cancel_action.xml
@@ -0,0 +1,29 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media.xml
new file mode 100644
index 000000000..2e40b6939
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media_narrow.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 000000000..cf6406154
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_lines.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_lines.xml
new file mode 100644
index 000000000..42ba776e6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_media.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_media.xml
new file mode 100644
index 000000000..90daa8852
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_media.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_chronometer.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_chronometer.xml
new file mode 100644
index 000000000..6f5f3ac50
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_time.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_time.xml
new file mode 100644
index 000000000..72d216e77
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_part_time.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_frame.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_frame.xml
new file mode 100644
index 000000000..ad23cbf47
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_title.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_title.xml
new file mode 100644
index 000000000..8091fb4d3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_view.xml
new file mode 100644
index 000000000..02c07ba8c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_view.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml
new file mode 100644
index 000000000..677b178d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 000000000..60f3576a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 000000000..4d10fc720
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 000000000..d2f177ac8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/layout/tageditor_view.xml b/android/build/intermediates/res/merged/androidTest/debug/layout/tageditor_view.xml
new file mode 100644
index 000000000..bd102f0c3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/layout/tageditor_view.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/menu/menu_gallery.xml b/android/build/intermediates/res/merged/androidTest/debug/menu/menu_gallery.xml
new file mode 100644
index 000000000..21cf59995
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/menu/menu_gallery.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/menu/menu_imagepager.xml b/android/build/intermediates/res/merged/androidTest/debug/menu/menu_imagepager.xml
new file mode 100644
index 000000000..b21bfd6c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/menu/menu_imagepager.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher.xml b/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher_round.xml b/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..7611d57f4
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a43f87963
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..ef365e062
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..9752997b3
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..c8926e73c
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/android/build/intermediates/res/merged/androidTest/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-af/values-af.xml b/android/build/intermediates/res/merged/androidTest/debug/values-af/values-af.xml
new file mode 100644
index 000000000..8143ae04e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-am/values-am.xml b/android/build/intermediates/res/merged/androidTest/debug/values-am/values-am.xml
new file mode 100644
index 000000000..b81f93f78
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml
new file mode 100644
index 000000000..ef26d8550
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-az-rAZ/values-az-rAZ.xml b/android/build/intermediates/res/merged/androidTest/debug/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 000000000..15769e10c
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-bg/values-bg.xml b/android/build/intermediates/res/merged/androidTest/debug/values-bg/values-bg.xml
new file mode 100644
index 000000000..05f19e4a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-bn-rBD/values-bn-rBD.xml b/android/build/intermediates/res/merged/androidTest/debug/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 000000000..db63cf3e9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "বন্ধ"
+ "চালু"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ca/values-ca.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ca/values-ca.xml
new file mode 100644
index 000000000..0aa3366e5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-cs/values-cs.xml b/android/build/intermediates/res/merged/androidTest/debug/values-cs/values-cs.xml
new file mode 100644
index 000000000..5787e5936
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-cs/values-cs.xml
@@ -0,0 +1,93 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ "999+"
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-da/values-da.xml b/android/build/intermediates/res/merged/androidTest/debug/values-da/values-da.xml
new file mode 100644
index 000000000..19786b8b9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-da/values-da.xml
@@ -0,0 +1,31 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml b/android/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml
new file mode 100644
index 000000000..e2b383555
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml
@@ -0,0 +1,93 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-el/values-el.xml b/android/build/intermediates/res/merged/androidTest/debug/values-el/values-el.xml
new file mode 100644
index 000000000..9980eb59a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-el/values-el.xml
@@ -0,0 +1,31 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..c5538c280
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-es-rES/values-es-rES.xml b/android/build/intermediates/res/merged/androidTest/debug/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..843ce164b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml b/android/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml
new file mode 100644
index 000000000..6f7ea5434
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml
@@ -0,0 +1,93 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "NO"
+ "SÍ"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ "+999"
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-et-rEE/values-et-rEE.xml b/android/build/intermediates/res/merged/androidTest/debug/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 000000000..fa9bc45ec
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-eu-rES/values-eu-rES.xml b/android/build/intermediates/res/merged/androidTest/debug/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 000000000..66d5f977d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fa/values-fa.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fa/values-fa.xml
new file mode 100644
index 000000000..87ade66dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fb/values-fb.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fi/values-fi.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fi/values-fi.xml
new file mode 100644
index 000000000..1749ce012
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fi/values-fi.xml
@@ -0,0 +1,31 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..a47b18eba
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-fr/values-fr.xml b/android/build/intermediates/res/merged/androidTest/debug/values-fr/values-fr.xml
new file mode 100644
index 000000000..623dbae15
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-fr/values-fr.xml
@@ -0,0 +1,93 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ ">999"
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-gl-rES/values-gl-rES.xml b/android/build/intermediates/res/merged/androidTest/debug/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 000000000..1ca55a9a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-gu-rIN/values-gu-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 000000000..ed6f52ca4
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-h320dp-v13/values-h320dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-h320dp-v13/values-h320dp-v13.xml
new file mode 100644
index 000000000..2a6b31c51
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-h320dp-v13/values-h320dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-hi/values-hi.xml b/android/build/intermediates/res/merged/androidTest/debug/values-hi/values-hi.xml
new file mode 100644
index 000000000..630e22c1f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-hr/values-hr.xml b/android/build/intermediates/res/merged/androidTest/debug/values-hr/values-hr.xml
new file mode 100644
index 000000000..496e87dec
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-hu/values-hu.xml b/android/build/intermediates/res/merged/androidTest/debug/values-hu/values-hu.xml
new file mode 100644
index 000000000..75eb357ec
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-hu/values-hu.xml
@@ -0,0 +1,31 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-hy-rAM/values-hy-rAM.xml b/android/build/intermediates/res/merged/androidTest/debug/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 000000000..302b221d7
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-in/values-in.xml b/android/build/intermediates/res/merged/androidTest/debug/values-in/values-in.xml
new file mode 100644
index 000000000..fae86bef9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-in/values-in.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-is-rIS/values-is-rIS.xml b/android/build/intermediates/res/merged/androidTest/debug/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 000000000..51ffbca07
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-it/values-it.xml b/android/build/intermediates/res/merged/androidTest/debug/values-it/values-it.xml
new file mode 100644
index 000000000..33d15d7e0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-it/values-it.xml
@@ -0,0 +1,93 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ "999+"
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-iw/values-iw.xml b/android/build/intermediates/res/merged/androidTest/debug/values-iw/values-iw.xml
new file mode 100644
index 000000000..d73f472cf
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml
new file mode 100644
index 000000000..a729bcdb9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml
@@ -0,0 +1,93 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ "999+"
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ka-rGE/values-ka-rGE.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 000000000..a76c00f3d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-kk-rKZ/values-kk-rKZ.xml b/android/build/intermediates/res/merged/androidTest/debug/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 000000000..f95ae29bf
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-km-rKH/values-km-rKH.xml b/android/build/intermediates/res/merged/androidTest/debug/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 000000000..c3fee7678
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-kn-rIN/values-kn-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 000000000..cb0acab12
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ko/values-ko.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ko/values-ko.xml
new file mode 100644
index 000000000..288cd5ecb
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ko/values-ko.xml
@@ -0,0 +1,31 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ky-rKG/values-ky-rKG.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 000000000..0b8150f04
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-land/values-land.xml b/android/build/intermediates/res/merged/androidTest/debug/values-land/values-land.xml
new file mode 100644
index 000000000..aed434736
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-land/values-land.xml
@@ -0,0 +1,13 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-large-v4/values-large-v4.xml b/android/build/intermediates/res/merged/androidTest/debug/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..7c97842e6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ true
+ true
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+ 192dip
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-lo-rLA/values-lo-rLA.xml b/android/build/intermediates/res/merged/androidTest/debug/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 000000000..12501615e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-lt/values-lt.xml b/android/build/intermediates/res/merged/androidTest/debug/values-lt/values-lt.xml
new file mode 100644
index 000000000..17a7c53c5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTI"
+ "ĮJUNGTI"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-lv/values-lv.xml b/android/build/intermediates/res/merged/androidTest/debug/values-lv/values-lv.xml
new file mode 100644
index 000000000..df0fd7357
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-mk-rMK/values-mk-rMK.xml b/android/build/intermediates/res/merged/androidTest/debug/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 000000000..09742b98b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ml-rIN/values-ml-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 000000000..49ecfc886
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-mn-rMN/values-mn-rMN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 000000000..997e79bc0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-mr-rIN/values-mr-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 000000000..7c3fe3632
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ms-rMY/values-ms-rMY.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 000000000..5a84cf4b9
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-my-rMM/values-my-rMM.xml b/android/build/intermediates/res/merged/androidTest/debug/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 000000000..c05fc1857
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-nb/values-nb.xml b/android/build/intermediates/res/merged/androidTest/debug/values-nb/values-nb.xml
new file mode 100644
index 000000000..9d7bdd897
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-nb/values-nb.xml
@@ -0,0 +1,31 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ne-rNP/values-ne-rNP.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 000000000..a134235a5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-night-v8/values-night-v8.xml b/android/build/intermediates/res/merged/androidTest/debug/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-nl/values-nl.xml b/android/build/intermediates/res/merged/androidTest/debug/values-nl/values-nl.xml
new file mode 100644
index 000000000..10e0f86ff
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-nl/values-nl.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-pa-rIN/values-pa-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 000000000..c768d547a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-pl/values-pl.xml b/android/build/intermediates/res/merged/androidTest/debug/values-pl/values-pl.xml
new file mode 100644
index 000000000..126bdb482
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-pl/values-pl.xml
@@ -0,0 +1,31 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-port/values-port.xml b/android/build/intermediates/res/merged/androidTest/debug/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..880875cb5
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,31 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml b/android/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml
new file mode 100644
index 000000000..0f4b71c46
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml
@@ -0,0 +1,93 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ "999+"
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ro/values-ro.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ro/values-ro.xml
new file mode 100644
index 000000000..5e9e27fc8
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ro/values-ro.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAȚI"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "˃999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml
new file mode 100644
index 000000000..54c5dc57f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml
@@ -0,0 +1,31 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-si-rLK/values-si-rLK.xml b/android/build/intermediates/res/merged/androidTest/debug/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 000000000..38729f97a
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sk/values-sk.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sk/values-sk.xml
new file mode 100644
index 000000000..a0e5aa0da
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYP."
+ "ZAP."
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sl/values-sl.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sl/values-sl.xml
new file mode 100644
index 000000000..19eb9b77d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sq-rAL/values-sq-rAL.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 000000000..38cfb1a9d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sr/values-sr.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sr/values-sr.xml
new file mode 100644
index 000000000..c674e1fe2
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sv/values-sv.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sv/values-sv.xml
new file mode 100644
index 000000000..9da1a65f1
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sv/values-sv.xml
@@ -0,0 +1,31 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sw/values-sw.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sw/values-sw.xml
new file mode 100644
index 000000000..b80b09a00
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..6fd509602
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,24 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+ 160dp
+ 5
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ta-rIN/values-ta-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 000000000..0b33d7c69
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "முடக்கு"
+ "இயக்கு"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-te-rIN/values-te-rIN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 000000000..e0f4a9e2e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-th/values-th.xml b/android/build/intermediates/res/merged/androidTest/debug/values-th/values-th.xml
new file mode 100644
index 000000000..723086e62
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-th/values-th.xml
@@ -0,0 +1,31 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-tl/values-tl.xml b/android/build/intermediates/res/merged/androidTest/debug/values-tl/values-tl.xml
new file mode 100644
index 000000000..870d8ce82
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-tr/values-tr.xml b/android/build/intermediates/res/merged/androidTest/debug/values-tr/values-tr.xml
new file mode 100644
index 000000000..1458694c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-tr/values-tr.xml
@@ -0,0 +1,31 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-uk/values-uk.xml b/android/build/intermediates/res/merged/androidTest/debug/values-uk/values-uk.xml
new file mode 100644
index 000000000..409e11bdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-ur-rPK/values-ur-rPK.xml b/android/build/intermediates/res/merged/androidTest/debug/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 000000000..0d597a067
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-uz-rUZ/values-uz-rUZ.xml b/android/build/intermediates/res/merged/androidTest/debug/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 000000000..22c32f98d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v11/values-v11.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v11/values-v11.xml
new file mode 100644
index 000000000..d074ce996
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v12/values-v12.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v12/values-v12.xml
new file mode 100644
index 000000000..85e241664
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v13/values-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v13/values-v13.xml
new file mode 100644
index 000000000..74d14088e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v13/values-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v14/values-v14.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v14/values-v14.xml
new file mode 100644
index 000000000..7239a2c83
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v17/values-v17.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v17/values-v17.xml
new file mode 100644
index 000000000..f9f23d137
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v17/values-v17.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v18/values-v18.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v21/values-v21.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v21/values-v21.xml
new file mode 100644
index 000000000..4ac3595dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v21/values-v21.xml
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v22/values-v22.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-v23/values-v23.xml b/android/build/intermediates/res/merged/androidTest/debug/values-v23/values-v23.xml
new file mode 100644
index 000000000..7a225c9cc
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-v23/values-v23.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-vi/values-vi.xml b/android/build/intermediates/res/merged/androidTest/debug/values-vi/values-vi.xml
new file mode 100644
index 000000000..9d99f2d66
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-vi/values-vi.xml
@@ -0,0 +1,31 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w360dp-v13/values-w360dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 000000000..fd9dac9ba
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w480dp-v13/values-w480dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 000000000..5b7dcf655
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w500dp-v13/values-w500dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 000000000..dcd19ee3b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w600dp-v13/values-w600dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 000000000..4c058c26f
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w720dp-v13/values-w720dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 000000000..966aafb2b
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/res/merged/androidTest/debug/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 000000000..98b3f8c26
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..3dcad8bdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,12 @@
+
+
+ false
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..544f893f7
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,31 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..2cb83ac26
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,31 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999 +"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f253d7f71
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,93 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values-zu/values-zu.xml b/android/build/intermediates/res/merged/androidTest/debug/values-zu/values-zu.xml
new file mode 100644
index 000000000..d17fcf1da
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/values/values.xml b/android/build/intermediates/res/merged/androidTest/debug/values/values.xml
new file mode 100644
index 000000000..aca27f91d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/values/values.xml
@@ -0,0 +1,1837 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #66000000
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #00E676
+ #00E676
+ #00C853
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #FFFF6E6E
+ #FFD50000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 16dp
+ 16dp
+ 4dp
+ 16dp
+ 256dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 0.30
+ 0.26
+ 16dp
+ 0.26
+ 0.20
+ 0.12
+ 20dp
+ 800dp
+ 120dp
+ 160dp
+ 16dp
+ 64dp
+ 64dp
+ 12dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 150
+ 127
+ 2
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ android.support.design.widget.BottomSheetBehavior
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ %1$d / %2$d
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ 999+
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml b/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml
new file mode 100644
index 000000000..99f5408c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/androidTest/debug/xml/settings.xml b/android/build/intermediates/res/merged/androidTest/debug/xml/settings.xml
new file mode 100644
index 000000000..d23cb4f7d
--- /dev/null
+++ b/android/build/intermediates/res/merged/androidTest/debug/xml/settings.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..b5960a3a2
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..d680abe80
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml b/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
new file mode 100644
index 000000000..da7ee295c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml b/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
new file mode 100644
index 000000000..c81b39a9b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml b/android/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 000000000..79d02d44c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml b/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
new file mode 100644
index 000000000..91664da17
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml b/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
new file mode 100644
index 000000000..db7e8073a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml b/android/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 000000000..9a23cd202
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml b/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
new file mode 100644
index 000000000..1afa8febc
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml b/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
new file mode 100644
index 000000000..ab824f2e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml b/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
new file mode 100644
index 000000000..b309fe89c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml b/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
new file mode 100644
index 000000000..e84d1c7fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml b/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
new file mode 100644
index 000000000..aef91bc52
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml b/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
new file mode 100644
index 000000000..790e27589
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..7cbae08bf
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..2e30963d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_fab_in.xml b/android/build/intermediates/res/merged/debug/anim/design_fab_in.xml
new file mode 100644
index 000000000..294050f54
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_fab_in.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_fab_out.xml b/android/build/intermediates/res/merged/debug/anim/design_fab_out.xml
new file mode 100644
index 000000000..0f80a9ab0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_fab_out.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml b/android/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml
new file mode 100644
index 000000000..a40524c2b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml b/android/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml
new file mode 100644
index 000000000..eb55cc0e5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 000000000..e0160766e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 000000000..290faf1a0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml b/android/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 000000000..8d5361189
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml b/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 000000000..724c2557d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml b/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 000000000..7395e680c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml b/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
new file mode 100644
index 000000000..7d66d02d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml b/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
new file mode 100644
index 000000000..105b643dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml b/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
new file mode 100644
index 000000000..0631d5d4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml b/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 000000000..6399b1d02
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml b/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
new file mode 100644
index 000000000..87c015a4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml b/android/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
new file mode 100644
index 000000000..6153382c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml b/android/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
new file mode 100644
index 000000000..94d711482
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/angle.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/angle.xml
new file mode 100644
index 000000000..4709b71b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/angle.xml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
new file mode 100644
index 000000000..38fbc261b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_arrow_back_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_camera_green.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_camera_green.xml
new file mode 100644
index 000000000..f168c5131
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_camera_green.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
new file mode 100644
index 000000000..07de58256
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_done_all_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_find_in_page.xml
new file mode 100644
index 000000000..d2ac3ac62
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_find_in_page.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
new file mode 100644
index 000000000..a3c81cc38
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_flash_on_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
new file mode 100644
index 000000000..0234f6551
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_info_outline_white_24px.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_launcher_background.xml
new file mode 100644
index 000000000..d5fccc538
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_menu_tag.xml
new file mode 100644
index 000000000..0fc39f435
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_menu_tag.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_monochrome.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_monochrome.xml
new file mode 100644
index 000000000..b7abf9780
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_monochrome.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_palette.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_palette.xml
new file mode 100644
index 000000000..c0bccf28f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_palette.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
new file mode 100644
index 000000000..1de4266fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_settings.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_settings.xml
new file mode 100644
index 000000000..ca2916e55
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_settings.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_bell.xml
new file mode 100644
index 000000000..4e8870e8e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_bell.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_game.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_game.xml
new file mode 100644
index 000000000..4a8c8fc8d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_game.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_gift.xml
new file mode 100644
index 000000000..9267e7036
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_gift.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_magnet.xml
new file mode 100644
index 000000000..32c78e9c4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_magnet.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_rocket.xml
new file mode 100644
index 000000000..6acc86aec
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_rocket.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_star.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_star.xml
new file mode 100644
index 000000000..692f1fd53
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_star.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_tv.xml
new file mode 100644
index 000000000..13a82b0a1
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_tag_tv.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d9f861f8
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..99110085f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..69ff9dde3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..9218981b4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..a58857635
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..1b12adf09
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..30c8c997e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..4657a25ff
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3fd617bf9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..226439823
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..46ccacc5a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..ce6433457
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..65ccd8f41
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..f39c1534f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..706fc1fa3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..e78bcaf57
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..00e189b85
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..8610c5015
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..e631df7f6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..cd1f57c5b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..cc6d5da86
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..a728afe60
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..64b2aa7f2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..cf270fe1b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..49ad6cd74
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a6dbc2a88
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..c09ec90e0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..62fbd2cb5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..2f6ef9160
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..863ce95f6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..b6d467774
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..e01c7392a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..d077a25cb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..9d8451aab
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..208def6c1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..c9c203e5d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..253e906fa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..ffb0096fd
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..e54950e9d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..0da5b1d1e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..54df9613c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..4b0b10a7a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..5b13bc17a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..5440b1a4d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..a74ab260c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..6282df4e6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/angle.png
new file mode 100644
index 000000000..5433efae0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..ac90addd1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..7b8e7f0d3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..4a9f76947
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..379119cc9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..a1c2d2c67
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..589602aaf
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..6d0a4ff7f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..b7e37ae94
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..37462f473
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..9fdc78541
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_palette.png
new file mode 100644
index 000000000..653306eb8
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..cef861ced
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_settings.png
new file mode 100644
index 000000000..befb03bd0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..6fd1885b9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..c5a80bc59
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..bc4ce02f9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..d6c97a5eb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..24a0aa2f6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..7c1da37c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..8ac4c7761
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/angle.png
new file mode 100644
index 000000000..2bc26f68f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..51a52c68e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..cb5d4d53c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..6ae7378c1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..92aaea9e2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..c79e82a4b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0210836ec
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..0ddbe1c5f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..6a3e242e2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..627d0be43
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_palette.png
new file mode 100644
index 000000000..b85e842b4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9c18c4761
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_settings.png
new file mode 100644
index 000000000..3cba81fa4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..9c7da82a0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..48f25c250
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..25bcca44e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..d57f9dafb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..56a52cd85
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..b1e67a634
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..cb78d2acf
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..57211b528
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..a262b0c87
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..d8eaf0761
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ddbec8b18
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..b872414ba
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..254f80615
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..efe4446d6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..c888ee057
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..ffa165417
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..88e34c4a0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..87bf8d36b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..09dadcc6f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..33b4f0fe7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb542158a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..3cdb6cf5c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..a58daf654
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..a91425a7e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..fb91811b7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..90fe333ac
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..6ccac6004
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..fa0ed8fe9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..7a9fcbcbf
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..3b052e577
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..96a86931c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..6e18d40d7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..27a75a7fa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..14e9e098a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..d0a41a51e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..bebb1e211
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..038e00086
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..90fbc56bb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..dde307e41
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..6086f9c38
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0084c1204
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..559b83539
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..1c0a1e99d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..234a95893
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1492ab62a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..7c011af4c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..36f664cca
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..faefc59c8
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..3f5d25e01
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..2ddcdd985
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..077f9b05d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..ac6ad111b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..a216da173
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..addb54a22
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..5fcd5b207
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..251b98913
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..01efec045
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..f1d1b6170
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..10851f6c8
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..3924664fc
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..5f55cd553
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..ddd6d0ab5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..9280f8296
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..f60817c60
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..88781298a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..869c8b088
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ed75cb812
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..ab8460f58
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..12b0a79c5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..3ffa25193
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..0eb61f152
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..0c766f30d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4f66d7adc
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/angle.png
new file mode 100644
index 000000000..0ef8547a0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..4214c25d1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..6b2f061a4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..e2f5f3555
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..d00da71dc
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..6f76def11
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..3717dcd22
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..0f551225a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..366e2de53
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..d292d9cf4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..b596690f5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_palette.png
new file mode 100644
index 000000000..ce5190cdb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..b41371693
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_settings.png
new file mode 100644
index 000000000..c166d6834
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..7be0dce10
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..1efaa4eb2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..14d873f2f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..7af83edd5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..836cb2187
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..3ccfcc417
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..d46d1674f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml b/android/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 000000000..595c56c6a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 000000000..10251aadc
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml b/android/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
new file mode 100644
index 000000000..d98b0085b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_camera.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_camera.xml
new file mode 100644
index 000000000..0d9ea104b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_camera.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_gallery.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_gallery.xml
new file mode 100644
index 000000000..f6872c409
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_gallery.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_manage.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_manage.xml
new file mode 100644
index 000000000..c1be60b36
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_manage.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_send.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_send.xml
new file mode 100644
index 000000000..00c668c60
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_send.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_share.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_share.xml
new file mode 100644
index 000000000..c5027c659
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_share.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_slideshow.xml b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_slideshow.xml
new file mode 100644
index 000000000..209aa6430
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_slideshow.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml b/android/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 000000000..0b540390a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable-v24/ic_launcher_foreground.xml b/android/build/intermediates/res/merged/debug/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 000000000..89c01cbfd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..6284eaaa1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..49025208b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..59a683ab6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..03bf49cc5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..342323b4b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..05e6afeca
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..7116604a5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..4feb8a3dc
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..2bf92083c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..600178a98
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..154babda6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..6d90d0ce7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..ca303fd6e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..19e000ac7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..64485495f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..cd38901c4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..e76c83e0b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..9aabc43ce
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..6a7161f2f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..6be7e097c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..4510e52e6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..35fe96563
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..45887c13d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..ea6033adb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..2f4818b29
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7329c15b5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..1e571f5c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..67c25aeff
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..17c34a1a9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..988548a10
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..15fcf6a32
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..65275b38c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..5b58e7605
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..99cf6de8b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..b5dd854b2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..1627f211a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..0486af199
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..0b15d9611
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..fb4e42aaa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..44b9a147b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..bcf6b7f05
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..7c56175a1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..2242d2f94
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..8ff3a8304
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..e7e693a7b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..819171ad6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4def8c8fa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/angle.png
new file mode 100644
index 000000000..3e2fe209b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..f09bce589
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..7b6420e46
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..388b5b060
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..161817679
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..41bd4bbf5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..5b352ef2c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..c1cc5225f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..c771e70e9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..5f84b6bfa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..5102eca6b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..e51b11c6f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..9029fa88e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..ffb6c4cfa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..ac132447f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..6f8534347
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..9d2f3af66
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..8d44365df
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..ee42f2d76
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..9c58b9afd
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..c75e3e0b7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4eae28fde
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..accf80e4a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..8c82ec3d7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..8fc0a9b87
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..3038d70fc
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 000000000..37b858316
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 000000000..4a3bd1438
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..c079867b3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3b9dc7c11
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..f6d2f3294
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..f99802f01
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..b85e87f04
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..7d9dfa4db
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d04162373
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..90d6ba3c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..63e541f4b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..c382aa61e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..f71485c2d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..162ab9847
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..d95a3774a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..0ada3a39f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..e5509b034
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..72685abe7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..8e985b46d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..19bbc1202
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..dacf4072c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..987b2bc25
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..8b050e855
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..00e370a1a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..719c7b5eb
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..75bd5803f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..4f3b147a6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..224a08157
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..b5ceeac06
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..4727a7d6c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..eb6e91b0a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..dd0031cf5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..9955cdfe8
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..3d9b96107
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..56a69df15
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..24938586e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..d2fc99a4d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..eeb74c869
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d3d3a4d0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..c5acb84f0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..30328ae1d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..bc21142c1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/angle.png
new file mode 100644
index 000000000..9b241b603
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..7c227907a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..c9bef326d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..3fcdfdb55
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..66055fa27
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..b97a1bd2e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..cb240876a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..9d49a4ede
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..2692be602
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..ee1f3a046
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..9432d22d4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..333dbabc0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..092a88818
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..e8e6c2961
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..32754ea08
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..be379e7e2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..9e6182bb7
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..b19b72624
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..cf01c0faa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..1cb7e1891
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..19bca9489
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..d44bbae5e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..4e18de21a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..5fa326654
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..c11cb2ec6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..8043c0bd4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..355d5b775
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 000000000..41d6d6bb4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 000000000..da2b57715
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..715db8adf
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..397fd91c6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 000000000..bb074a65f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1891b3d06
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..591a1c918
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..ba16aac56
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..5430b2cd4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..cc8109732
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..dc312c14a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..1c7f66eaa
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..82e729387
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..d1916422b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..7dfaf7cf3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..fe8f2e40e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..761e8de7c
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..5651d24b5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..929be19b0
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/angle.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/angle.png
new file mode 100644
index 000000000..c30c4dd9b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/angle.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png
new file mode 100644
index 000000000..d8fc03389
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_camera_green.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_camera_green.png
new file mode 100644
index 000000000..572292e8f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_camera_green.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png
new file mode 100644
index 000000000..8d322aa9b
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_delete_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png
new file mode 100644
index 000000000..73a97fbf9
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_done_all_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_find_in_page.png
new file mode 100644
index 000000000..4bba353c2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_find_in_page.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png
new file mode 100644
index 000000000..95584d084
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_flash_on_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png
new file mode 100644
index 000000000..53afb5597
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_launcher_background.png
new file mode 100644
index 000000000..21bead54f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_launcher_background.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_menu_tag.png
new file mode 100644
index 000000000..b73903865
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_menu_tag.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_monochrome.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_monochrome.png
new file mode 100644
index 000000000..d4457bd8f
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_monochrome.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_palette.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_palette.png
new file mode 100644
index 000000000..b25619ccf
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_palette.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png
new file mode 100644
index 000000000..92492c391
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_settings.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_settings.png
new file mode 100644
index 000000000..d2cea43b4
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_settings.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_bell.png
new file mode 100644
index 000000000..0c865eaea
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_bell.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_game.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_game.png
new file mode 100644
index 000000000..507e2d426
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_game.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_gift.png
new file mode 100644
index 000000000..e8c1b71d3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_gift.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png
new file mode 100644
index 000000000..6c48b7601
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_magnet.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png
new file mode 100644
index 000000000..5b4d833d3
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_rocket.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_star.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_star.png
new file mode 100644
index 000000000..b341c0e16
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_star.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_tv.png
new file mode 100644
index 000000000..d28fbe4b5
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_tag_tv.png differ
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 000000000..f3894600b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
new file mode 100644
index 000000000..f6e938fe4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
new file mode 100644
index 000000000..ec93b8b6b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml b/android/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 000000000..c50d4b10f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
new file mode 100644
index 000000000..6e9f9cf37
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml b/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 000000000..9faf60ac6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 000000000..f20add7e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml b/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 000000000..41c4a6f84
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml b/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 000000000..248b13af9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
new file mode 100644
index 000000000..46c4e9120
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml b/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 000000000..72162c222
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml b/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 000000000..1c180b2ee
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 000000000..0add58c86
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 000000000..0c1d3e678
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 000000000..1fb5fc451
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 000000000..8d2404722
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 000000000..535e2da25
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
new file mode 100644
index 000000000..207991c2e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
new file mode 100644
index 000000000..6daff8bcc
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
new file mode 100644
index 000000000..7fea83bc8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
new file mode 100644
index 000000000..e68ac03e9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 000000000..d0f46a809
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 000000000..ee96ec2e7
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 000000000..1a8de1b69
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
new file mode 100644
index 000000000..885670c99
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml b/android/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
new file mode 100644
index 000000000..08873966e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/button_background.xml b/android/build/intermediates/res/merged/debug/drawable/button_background.xml
new file mode 100644
index 000000000..3c394bd48
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/button_background.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/design_fab_background.xml b/android/build/intermediates/res/merged/debug/drawable/design_fab_background.xml
new file mode 100644
index 000000000..43afd5c9a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/design_fab_background.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml b/android/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml
new file mode 100644
index 000000000..e82441c24
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/drawable/round_button.xml b/android/build/intermediates/res/merged/debug/drawable/round_button.xml
new file mode 100644
index 000000000..0a5d98e5d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/round_button.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/drawable/side_nav_bar.xml b/android/build/intermediates/res/merged/debug/drawable/side_nav_bar.xml
new file mode 100644
index 000000000..458b4b07d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/drawable/side_nav_bar.xml
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml b/android/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml
new file mode 100644
index 000000000..b68395ab6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
new file mode 100644
index 000000000..194afb74c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
new file mode 100644
index 000000000..f46550a55
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 000000000..5c105ab55
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 000000000..283358a5d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,30 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
new file mode 100644
index 000000000..4918d2fba
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
new file mode 100644
index 000000000..dc1f1ba23
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml b/android/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 000000000..2944d9838
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml b/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
new file mode 100644
index 000000000..0100c235a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml b/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 000000000..887427d80
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml b/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
new file mode 100644
index 000000000..d32ad1091
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml b/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
new file mode 100644
index 000000000..323753398
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml b/android/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
new file mode 100644
index 000000000..1ea20c5e1
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 000000000..560ada6fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 000000000..d9c3f0681
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 000000000..acd005a13
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 000000000..c85469dd6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 000000000..0ca8d7a2a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml b/android/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 000000000..47125fe4e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml b/android/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
new file mode 100644
index 000000000..1c30338f9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml b/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
new file mode 100644
index 000000000..2783187d0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml b/android/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 000000000..c02c2aa9c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml b/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
new file mode 100644
index 000000000..96412c15b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml b/android/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 000000000..b81d5d8ca
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml b/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml
new file mode 100644
index 000000000..a7446e364
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml b/android/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
new file mode 100644
index 000000000..12bcbf1f3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/about_view.xml b/android/build/intermediates/res/merged/debug/layout/about_view.xml
new file mode 100644
index 000000000..d1d6f07c5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/about_view.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/activity_fullscreen_view.xml b/android/build/intermediates/res/merged/debug/layout/activity_fullscreen_view.xml
new file mode 100644
index 000000000..c2ff07ec5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/activity_fullscreen_view.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/activity_gallery.xml b/android/build/intermediates/res/merged/debug/layout/activity_gallery.xml
new file mode 100644
index 000000000..827ddb2d8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/activity_gallery.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/activity_main.xml b/android/build/intermediates/res/merged/debug/layout/activity_main.xml
new file mode 100644
index 000000000..f2f3ca7e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/activity_main.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/activity_open_note_scanner.xml b/android/build/intermediates/res/merged/debug/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..169245743
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/activity_open_note_scanner.xml
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/activity_settings.xml b/android/build/intermediates/res/merged/debug/layout/activity_settings.xml
new file mode 100644
index 000000000..3509b8411
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/activity_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml b/android/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml
new file mode 100644
index 000000000..27bb8065c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml b/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml
new file mode 100644
index 000000000..604aafc03
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml b/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml
new file mode 100644
index 000000000..1aab24b87
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml b/android/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml
new file mode 100644
index 000000000..5dcfa117f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml
@@ -0,0 +1,21 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml b/android/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml
new file mode 100644
index 000000000..a83bb3d10
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml b/android/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml
new file mode 100644
index 000000000..ba8141d14
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_item.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_item.xml
new file mode 100644
index 000000000..ccd42de9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_item.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml
new file mode 100644
index 000000000..8d03f695f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml
@@ -0,0 +1,22 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml
new file mode 100644
index 000000000..938a3fbdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml
new file mode 100644
index 000000000..707ec6aea
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml
new file mode 100644
index 000000000..b6a0ad5f1
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml b/android/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml
new file mode 100644
index 000000000..91104bb17
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/fps_view.xml b/android/build/intermediates/res/merged/debug/layout/fps_view.xml
new file mode 100644
index 000000000..468caa9f3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/gallery_item.xml b/android/build/intermediates/res/merged/debug/layout/gallery_item.xml
new file mode 100644
index 000000000..92f55043e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/gallery_item.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/layout_fullscreen_image.xml b/android/build/intermediates/res/merged/debug/layout/layout_fullscreen_image.xml
new file mode 100644
index 000000000..a2cf6d12f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/layout_fullscreen_image.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_media_action.xml b/android/build/intermediates/res/merged/debug/layout/notification_media_action.xml
new file mode 100644
index 000000000..d54679292
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml b/android/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
new file mode 100644
index 000000000..e9b5fb078
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
@@ -0,0 +1,29 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
new file mode 100644
index 000000000..2e40b6939
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 000000000..cf6406154
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_lines.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
new file mode 100644
index 000000000..42ba776e6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_media.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_media.xml
new file mode 100644
index 000000000..90daa8852
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_media.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
new file mode 100644
index 000000000..6f5f3ac50
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml b/android/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
new file mode 100644
index 000000000..72d216e77
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml b/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
new file mode 100644
index 000000000..ad23cbf47
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml b/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
new file mode 100644
index 000000000..8091fb4d3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/build/intermediates/res/merged/debug/layout/redbox_view.xml b/android/build/intermediates/res/merged/debug/layout/redbox_view.xml
new file mode 100644
index 000000000..02c07ba8c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/redbox_view.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml b/android/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
new file mode 100644
index 000000000..677b178d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml b/android/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 000000000..60f3576a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml b/android/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 000000000..4d10fc720
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml b/android/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 000000000..d2f177ac8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/layout/tageditor_view.xml b/android/build/intermediates/res/merged/debug/layout/tageditor_view.xml
new file mode 100644
index 000000000..bd102f0c3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/layout/tageditor_view.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/menu/menu_gallery.xml b/android/build/intermediates/res/merged/debug/menu/menu_gallery.xml
new file mode 100644
index 000000000..21cf59995
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/menu/menu_gallery.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/res/merged/debug/menu/menu_imagepager.xml b/android/build/intermediates/res/merged/debug/menu/menu_imagepager.xml
new file mode 100644
index 000000000..b21bfd6c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/menu/menu_imagepager.xml
@@ -0,0 +1,33 @@
+
diff --git a/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher.xml b/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher_round.xml b/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..2d09dc293
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..15e996471
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a9e3b9ae1
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..5b55321a6
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher.png b/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher.png
new file mode 100644
index 000000000..a4c69b95e
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher.png differ
diff --git a/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png b/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher_round.png differ
diff --git a/android/build/intermediates/res/merged/debug/values-af/values-af.xml b/android/build/intermediates/res/merged/debug/values-af/values-af.xml
new file mode 100644
index 000000000..8143ae04e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-am/values-am.xml b/android/build/intermediates/res/merged/debug/values-am/values-am.xml
new file mode 100644
index 000000000..b81f93f78
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ar/values-ar.xml b/android/build/intermediates/res/merged/debug/values-ar/values-ar.xml
new file mode 100644
index 000000000..ef26d8550
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml b/android/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 000000000..15769e10c
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-bg/values-bg.xml b/android/build/intermediates/res/merged/debug/values-bg/values-bg.xml
new file mode 100644
index 000000000..05f19e4a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml b/android/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 000000000..db63cf3e9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "বন্ধ"
+ "চালু"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ca/values-ca.xml b/android/build/intermediates/res/merged/debug/values-ca/values-ca.xml
new file mode 100644
index 000000000..0aa3366e5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-cs/values-cs.xml b/android/build/intermediates/res/merged/debug/values-cs/values-cs.xml
new file mode 100644
index 000000000..5787e5936
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-cs/values-cs.xml
@@ -0,0 +1,93 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ about-cs.md
+ O aplikaci
+ Smazat
+ Sdílet
+ Štítek
+ Jít do nastavení
+ Zrušit
+ Později
+ Ne
+ Ano
+ Open Note Scanner
+ Z důvodu funkčnosti, Open Note Scanner potřebuje služby OpenCV Manager, která ještě není nainstalována.
+ Automaticky
+ Automatické značení
+ Definuje automatické značky, které mají být aplikované na označené skeny pomocí speciálního stránkového vzoru
+ Základní nastavení
+ Přispěj pomocí kryptoměny Bitcoin
+ Otočit obraz o 180º
+ Některá zařízení mají fotoaparát vzhůru nohama. Toto nastavení nastaví vše, aby to dávalo smysl.
+ Černobílé
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Barevně
+ Přejete si smazat vybrané obrázky?
+ Přejete si smazat tento obrázek?
+ Přejete si stáhnout OpenCV Manager z GitHub?
+ Potvrdit
+ Kup mi kafe
+ Pokud se ti aplikace líbí a myslíš si, že je užitečná, můžeš zvážit přispění
+ Stahování
+ Stahování OpenCV Manager
+ Zpětná vazba a příspěvky
+ Zpracování obrázku Vypnout
+ Zpracování obrázku Zapnout
+ Projekt na GitHub
+ Tato aplikace je Open Source, můžete ji pomoct vylepšit zpětnou vazbou, hlášením problémů, kódováním a překládáním přes GitHub projektovou stránku
+ Přímé stáhnutí
+ Google Play
+ Oskenované obrázky
+ Instalovat OpenCV Manager
+ Manuálně
+ Srovnat poměr stran náhledu
+ Většina zařízení má poměr stran nejvyššího rozlišení jiný než u náhledu. Tato možnost vybere nejvyšší možné rozlišení, které se shoduje s poměrem stran náhledu
+ Google Play není dostupné a instalace z neznámých zdrojů je zakázána. Prosím, jděte do nastavení a aktivujte ji.
+ Přijímáno mnoho druhů kreditních karet
+ Hledání dokumentu\nStiskněte znovu pro vyfocení celé oblasti
+ Poslat zprávu
+ Poslat zprávu vývojáři
+ Nastavení
+ Sdílet aplikaci
+ "Podívejte se na tuto skvělou aplikací, která oskenuje poznámky, kresby a dokumenty pomocí fotoaparátu: "
+ Skvělá aplikace pro skenování poznámek a dokumentů
+ Sdílet odkaz přes
+ Sdílet obrázky přes
+ Chcete umožnit Open Note Scanner zasílat anonymní data o používání vývojáři?\n\n Své rozhodnutí můžete kdykoli změnit v nabídce nastavení.
+ Statistiky používání
+ "999+"
+ Složka uložiště
+ Určuje, kde budou naskenované soubory uloženy
+ Skupina Telegram
+ Mluv o projektu na Telegramu
+ Prohlížeč oskenovaných obrázků
+ Galerie
+ Statistiky používání
+ Zasílat různé data o používání vývojáři. Žádný obsah nebude zaslán.
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-da/values-da.xml b/android/build/intermediates/res/merged/debug/values-da/values-da.xml
new file mode 100644
index 000000000..19786b8b9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-da/values-da.xml
@@ -0,0 +1,31 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-de/values-de.xml b/android/build/intermediates/res/merged/debug/values-de/values-de.xml
new file mode 100644
index 000000000..e2b383555
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-de/values-de.xml
@@ -0,0 +1,93 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ about-de.md
+ Über
+ Löschen
+ Teilen
+ Tag
+ Zu den Einstellungen
+ Abbrechen
+ Später
+ Nein
+ Ja
+ Open Note Scanner
+ Um zu funktionieren benötigt Open Note Scanner die Hilfe von OpenCV Manager, welcher derzeit noch nicht installiert ist.
+ Automatischer Modus
+ Automatisches Tagging
+ Definieren Sie automatische Tags, die auf durch die spezielle Seitenvorlage markierte Scans angewendet werden
+ Grundeinstellungen
+ Spenden Sie mit der Kryptowährung Bitcoin
+ Bild um 180º drehen
+ Manche Geräte haben eine auf den Kopf gestellte Kamera. Diese Einstellung korrigiert alles, damit es Sinn ergibt
+ S/W-Modus
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Farb-Modus
+ Wollen Sie die ausgewählten Bilder löschen?
+ Wollen Sie dieses Bild löschen?
+ Wollen Sie OpenCV Manager von GitHub herunterladen?
+ Bestätigen
+ Spendieren Sie mir einen Kaffee
+ Wenn Ihnen diese App gefällt und sie für Sie nützlich ist, spenden Sie doch bitte für die Weiterentwicklung
+ Herunterladen
+ Lade OpenCV Manager herunter
+ Feedback und Beiträge
+ Bildnachbearbeitung Aus
+ Bildnachbearbeitung Ein
+ Projekt auf GitHub
+ Diese Anwendung ist Freie Software. Sie können mithelfen sie zu verbesseren, indem Sie über die GitHub Projektseite Feedback geben, Fehler melden, und Code und Übersetzungen beisteuern
+ Direkter Download
+ Google Play
+ Gescannte Bilder
+ OpenCV Manager installieren
+ Manueller Modus
+ An Seitenverhältnis der Vorschau angleichen
+ Die meisten Geräte haben ein anderes Seitenverhältnis für die höchste Auflösung als für die Vorschau. Diese Einstellung wählt die höchste Bildauflösung, deren Seitenverhältnis mit dem Seitenverhältnis der Vorschau übereinstimmt
+ Google Play ist nicht verfügbar und die Installation von Quellen unbekannter Herkunft ist deaktiviert. Bitte gehen Sie zu den Einstallungen und aktivieren Sie diese Option.
+ Viele verschiedene Kreditkarten werden akzeptiert
+ Dokument wird gesucht\nTippen Sie noch einmal, um das ganze Bild zu scannen
+ Nachricht senden
+ Nachricht an den Entwickler senden
+ Einstellungen
+ Diese App teilen
+ "Sieh dir mal diese super App an. Sie scannt Notizen, Zeichnungen und Dokumente über die Kamera: "
+ Super App zum Scannen von Notizen und Dokumenten
+ Link teilen über
+ Bilder teilen über
+ Möchten Sie, dass Open Note Scanner anonyme Nutzungsstatistiken an den Entwickler sendet?\n\nSie können dies jederzeit in den Einstellungen ändern.
+ Nutzungsstatistiken
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Gruppe
+ Chatten Sie über das Projekt auf Telegram
+ Betrachter für gescannte Bilder
+ Galerie
+ Nutzungsstatistiken
+ Sende verschiedene Nutzungsstatistiken zum Entwickler. Keinerlei Inhaltsdaten werden versendet
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-el/values-el.xml b/android/build/intermediates/res/merged/debug/values-el/values-el.xml
new file mode 100644
index 000000000..9980eb59a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-el/values-el.xml
@@ -0,0 +1,31 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..c5538c280
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..6a703b64a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml b/android/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..843ce164b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-es/values-es.xml b/android/build/intermediates/res/merged/debug/values-es/values-es.xml
new file mode 100644
index 000000000..6f7ea5434
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-es/values-es.xml
@@ -0,0 +1,93 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "NO"
+ "SÍ"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ about-es.md
+ Acerca de
+ Eliminar
+ Compartir
+ Etiqueta
+ Ir a las configuraciones
+ Cancelar
+ Después
+ No
+ Si
+ Open Note Scanner
+ Con el fin de funcionar, Open Note Scanner necesita los servicios de OpenCV Manager, el cual no está instalado aún.
+ Modo Automático
+ Etiquetado Automático
+ Definir etiquetas automáticamente que se aplicarán en las imágenes marcadas utilizando la plantilla especial
+ Configuración Básica
+ Donar usando la criptomoneda Bitcoin
+ Rotar imagen 180º
+ Algunos dispositivos tienen la camara bocabajo, esta configuración ajusta para que todo esté correcto
+ Modo Blanco y negro
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo Color
+ ¿Quieres eliminar las imágenes seleccionadas?
+ ¿Quieres eliminar esta imagen?
+ ¿Quieres descargar OpenCV Manager desde GitHub?
+ Confirmar
+ Págame un café
+ Si te gustó esta aplicación y piensas que te es útil, quizás podrías considerar la posibilidad de hacer una dionación
+ Descargando
+ Descargando OpenCV Manager
+ Comentarios y contribuciones
+ Procesador de imagen desactivado
+ Procesador de imagen activado
+ Proyecto en GitHub
+ Esta aplicación es código abierto, puedes ayudar a mejorarlo con comentarios, reportes de errores, código y traducciones a traves de la página del proyecto en Github
+ Descarga directa
+ Google Play
+ Imágenes escaneadas
+ Instalar OpenCV Manager
+ Modo Manual
+ Mantener relacción de aspecto
+ Muchos dispositivos tienen una relación de aspecto diferente del previo, esta configuración elige la más alta resolución de imagen que tiene la misma relación con el previo.
+ Google Play no está disponible e instalar desde origenes desconocidos está desactivado, por favor ve a la configuración y activalo.
+ Acepta diversas tarjetas de crédito
+ Buscando documento\nPulsa de nuevo para escanear la imagen completa
+ Enviar mensaje
+ Enviar un mensaje a un desarrollador
+ Configuración
+ Compartir esta aplicación
+ "Echa un vistazo a esta gran aplicación que escanea notas, dibujos y documentos a través de tu cámara: "
+ Gran aplicación para escanear notas y documentos
+ Compartir enlace con
+ Compartir imágenes con
+ ¿Quieres permitir que Open Note Scanner envie estadísticas de uso anónimas a los desarrolladores?\n\nPuedes cambiar esto en cualquier momento en la pantalla de configuración.
+ Estadísticas de uso
+ "+999"
+ Carpeta de almacenamiento
+ Establecer dónde se deben almacenar los archivos escaneados
+ Grupo en Telegram
+ Chat sobre el proyecto en Telegram
+ Visor de imagen escaneada
+ Galería
+ Estadísticas de uso
+ Enviar diversas estadísticas de uso al desarrollador. No se enviarán datos con contenido
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml b/android/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 000000000..fa9bc45ec
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml b/android/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 000000000..66d5f977d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fa/values-fa.xml b/android/build/intermediates/res/merged/debug/values-fa/values-fa.xml
new file mode 100644
index 000000000..87ade66dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fb/values-fb.xml b/android/build/intermediates/res/merged/debug/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fi/values-fi.xml b/android/build/intermediates/res/merged/debug/values-fi/values-fi.xml
new file mode 100644
index 000000000..1749ce012
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fi/values-fi.xml
@@ -0,0 +1,31 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..a47b18eba
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-fr/values-fr.xml b/android/build/intermediates/res/merged/debug/values-fr/values-fr.xml
new file mode 100644
index 000000000..623dbae15
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-fr/values-fr.xml
@@ -0,0 +1,93 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ about-fr.md
+ A propos
+ Supprimer
+ Partager
+ Étiquette
+ Aller aux paramètres
+ Annuler
+ Plus tard
+ Non
+ Oui
+ Open Note Scanner
+ Pour son fonctionnement, Open Note Scanner a besoin des services d\'OpenCV Manager, qui n\'est pas encore installé.
+ Mode automatique
+ Étiquetage automatique
+ Définir automatiquement les étiquettes en utilisant des modèles de page spéciaux
+ Paramètres principaux
+ Faire un don en crypto-monnaie Bitcoin
+ Rotation de 180º de l\'image
+ Certains terminaux ont leur appareil photo à l\'envers, ce paramètre permet de prendre cela en compte
+ Mode noir&blanc
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Mode couleur
+ Voulez-vous supprimer les images sélectionnées ?
+ Voulez-vous supprimer cette image ?
+ Voulez-vous télécharger OpenCV Manager depuis GitHub?
+ Confirmer
+ Offrez moi un café
+ Si vous aimez cette application et que vous la trouvez utile, vous pouvez faire un don
+ Téléchargement en cours
+ Téléchargement d\'OpenCV Manager en cours
+ Retours d\'utilisation et contributions
+ Traitement d\'image désactivé
+ Traitement d\'image activé
+ Voir le projet sur GitHub
+ Cette application est libre, vous pouvez aider à son amélioration au travers vos retours d\'utilisation, rapports de bug, contributions au code source et aux traductions via la page GitHub du projet
+ Téléchargement en direct
+ Google Play
+ Images numérisées
+ Installer OpenCV Manager
+ Mode manuel
+ Utiliser le ratio d\'aspect de la prévisualisation
+ La plupart des terminaux ont un ratio d\'aspect différent entre la résolution de capture la plus élevée et la prévisualisation, ce paramètre va sélectionner la résolution la plus élevée qui corresponde au ratio d\'aspect de la prévisualisation
+ Google Play n\'est pas disponible et l\'installation d\'application depuis une source inconnue n\'est pas activée, merci d\'aller dans les paramètres du téléphone et de l\'activer.
+ La majorité des cartes de crédit sont acceptées
+ Recherche du document\nAppuyer à nouveau pour numériser l\'image entière
+ Envoyer un message
+ Envoyer un message au développeur
+ Paramètres
+ Partager cette application
+ "Regarde cette superbe application pour numériser des notes, des dessins ou des documents en utilisant ton appareil photo : "
+ Superbe application pour numériser des notes et des documents
+ Partager l\'application via
+ Partager les images via
+ Voulez-vous activer l\'envoi de statistiques d\'utilisation anonymes d\'Open Note Scanner au développeur ?\n\nVous pouvez changer d\'avis à n\'importe quel moment sur cette fenêtre de configuration.
+ Stats d\'utilisation
+ ">999"
+ Dossier d\'enregistrement
+ Définir où seront enregistrées les images numérisées
+ Groupe Telegram
+ Discutez à propos de ce projet sur Telegram
+ Visionneuse d\'image numérisée
+ Galerie
+ Statistiques d\'utilisation
+ Envoyer différentes statistiques d\'utilisation au développeur. Aucune donnée relative aux images numérisées ne sera transmise
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml b/android/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 000000000..1ca55a9a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml b/android/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 000000000..ed6f52ca4
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml b/android/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml
new file mode 100644
index 000000000..2a6b31c51
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-hi/values-hi.xml b/android/build/intermediates/res/merged/debug/values-hi/values-hi.xml
new file mode 100644
index 000000000..630e22c1f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-hr/values-hr.xml b/android/build/intermediates/res/merged/debug/values-hr/values-hr.xml
new file mode 100644
index 000000000..496e87dec
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-hu/values-hu.xml b/android/build/intermediates/res/merged/debug/values-hu/values-hu.xml
new file mode 100644
index 000000000..75eb357ec
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-hu/values-hu.xml
@@ -0,0 +1,31 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml b/android/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 000000000..302b221d7
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-in/values-in.xml b/android/build/intermediates/res/merged/debug/values-in/values-in.xml
new file mode 100644
index 000000000..fae86bef9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-in/values-in.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml b/android/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 000000000..51ffbca07
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-it/values-it.xml b/android/build/intermediates/res/merged/debug/values-it/values-it.xml
new file mode 100644
index 000000000..33d15d7e0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-it/values-it.xml
@@ -0,0 +1,93 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ about-it.md
+ Informazioni
+ Elimina
+ Condividi
+ Etichetta
+ Vai alle impostazioni
+ Annulla
+ Più tardi
+ No
+ Sì
+ Open Note Scanner
+ Per funzionare, Open Note Scanner necessita dei servizi di OpenCV Manager, che non è installata.
+ Modalità automatica
+ Etichette automatiche
+ Imposta etichette automatiche da applicare durante l\'acquisizione usando il modello di pagina speciale
+ Impostazioni di base
+ Dona usando la cripto-valuta Bitcoin
+ Ruota immagine di 180º
+ Alcuni dispositivi hanno la fotocamera al contrario, questa impostazione regola tutto in modo da avere l\'immagine corretta
+ Modalità bianco e nero
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modalità colore
+ Eliminare le immagini selezionate?
+ Eliminare questa immagine?
+ Scaricare OpenCV Manager da GitHub?
+ Conferma
+ Offrimi un caffè
+ Se ti piace questa applicazione e ritieni che sia utile, potresti considerare l\'idea di una donazione
+ Scaricamento in corso
+ Scaricamento di OpenCV Manager
+ Feedback e contributi
+ Elaboratore immagine non attivo
+ Elaboratore immagine attivo
+ Progetto su GitHub
+ Questa applicazione è open source, è possibile contribuire per migliorarla con i feedback, le segnalazioni di errori, la modifica del codice e con le traduzioni attraverso la pagina del progetto su GitHub
+ Download diretto
+ Google Play
+ Immagini acquisite
+ Installare OpenCV Manager
+ Modalità manuale
+ Confronta risoluzione anteprima
+ La maggior parte dei dispositivi ha la risoluzione delle immagini maggiore diversa da quella delle anteprime, questa impostazione selezionerà la maggiore risoluzione dell\'immagine in modo che corrisponda con quella dell\'anteprima
+ Google Play non è disponibile e l\'installazione da sorgenti sconosciute è disabilitata. Attivare la funzione nelle impostazioni.
+ Molte carte di credito sono accettate
+ Ricerca del documento\nToccare di nuovo per acquisire l\'intera immagine
+ Invia messaggio
+ Invia un messaggio allo sviluppatore
+ Impostazioni
+ Condividi questa app
+ "Dai un\'occhiata a questa meravigliosa applicazione per acquisire note, disegni e documenti attraverso la videocamera: "
+ Splendida applicazione per acquisire note e documenti
+ Condividi il link attraverso
+ Condividi immagini attraverso
+ Abilitare Open Note Scanner all\'invio di statistiche anonime allo sviluppatore sull\'utilizzo?\n\nQuesta opzione può essere modificata in qualsiasi momento dalle impostazioni.
+ Statistiche di utilizzo
+ "999+"
+ Cartella di archiviazione
+ Imposta dove verranno archiviati i file acquisiti
+ Gruppo Telegram
+ Chiacchiera su Telegram dell\'applicazione
+ Visualizzatore immagini acquisite
+ Galleria
+ Statistiche di utilizzo
+ Invia alcune statistiche di utilizzo allo sviluppatore. I contenuti non verranno trasmessi
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-iw/values-iw.xml b/android/build/intermediates/res/merged/debug/values-iw/values-iw.xml
new file mode 100644
index 000000000..d73f472cf
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ja/values-ja.xml b/android/build/intermediates/res/merged/debug/values-ja/values-ja.xml
new file mode 100644
index 000000000..a729bcdb9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ja/values-ja.xml
@@ -0,0 +1,93 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ about-ja.md
+ アプリについて
+ 削除
+ 共有
+ タグ
+ 設定に移動
+ キャンセル
+ 後で
+ いいえ
+ はい
+ Open Note Scanner
+ Open Note Manager の動作には OpenCV Manager のサービスが必要です。OpenCV Manager はまだインストールされていません。
+ 自動モード
+ 自動タグ付け
+ 特別なページテンプレートを使用して、マークされたスキャンに適用される自動タグを定義します
+ 基本設定
+ Bitcoin 暗号通貨を使用して寄付します
+ 画像を 180º 回転
+ 一部のデバイスでは、カメラが上下逆さまになっています。この設定で調整します
+ 白黒モード
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ カラーモード
+ スキャンした画像を削除しますか?
+ この画像を削除しますか?
+ GitHub から OpenCV Manager をダウンロードしますか?
+ 確認
+ Buy me a coffee
+ このアプリケーションを気に入って、役に立つと思うときは、寄付をご検討ください
+ ダウンロード中
+ OpenCV Manager のダウンロード中
+ フィードバックと貢献
+ イメージプロセッサ オフ
+ イメージプロセッサ オン
+ GitHub 上のプロジェクト
+ このアプリケーションはオープンソースです。GitHub プロジェクトのページからフィードバック、問題の報告、コード、翻訳で、改善を支援することができます
+ ダイレクトダウンロード
+ Google Play
+ 画像をスキャンしました
+ OpenCV Manager をインストール
+ 手動モード
+ プレビューのアスペクト比に一致
+ ほとんどのデバイスでは、最高の解像度の画像アスペクト比はプレビューとは異なります。この設定は、プレビューのアスペクト比に一致する最高の画像解像度を選択します
+ Google Play は利用できません。不明なソースからのインストールは無効になっています。設定に移動して有効にしてください。
+ 多くのクレジットカードを受け付けます
+ 文書の検索中\nもう一度タップすると画像全体をスキャンします
+ メッセージを送信
+ 開発者にメッセージを送信します
+ 設定
+ このアプリを共有
+ "メモ、図面、文書をカメラでスキャンするこの素晴らしいアプリを見てください: "
+ メモや文書をスキャンする素晴らしいアプリ
+ リンクを共有...
+ 画像を共有...
+ Open Note Scanner が匿名の使用統計情報を開発者に送信できるようにしますか?\n\nこれは設定画面でいつでも変更できます
+ 使用統計
+ "999+"
+ ストレージ フォルダー
+ スキャンしたファイルを保存する場所を設定します
+ Telegram グループ
+ Telegram でプロジェクトについてチャット
+ スキャンした画像のビューアー
+ ギャラリー
+ 使用統計情報
+ 開発者にさまざまな使用統計情報を送信します。 コンテンツデータは送信されません
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml b/android/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 000000000..a76c00f3d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml b/android/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 000000000..f95ae29bf
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml b/android/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 000000000..c3fee7678
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml b/android/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 000000000..cb0acab12
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ko/values-ko.xml b/android/build/intermediates/res/merged/debug/values-ko/values-ko.xml
new file mode 100644
index 000000000..288cd5ecb
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ko/values-ko.xml
@@ -0,0 +1,31 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml b/android/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 000000000..0b8150f04
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-land/values-land.xml b/android/build/intermediates/res/merged/debug/values-land/values-land.xml
new file mode 100644
index 000000000..aed434736
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-land/values-land.xml
@@ -0,0 +1,13 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml b/android/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..7c97842e6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ true
+ true
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+ 192dip
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml b/android/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 000000000..12501615e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-lt/values-lt.xml b/android/build/intermediates/res/merged/debug/values-lt/values-lt.xml
new file mode 100644
index 000000000..17a7c53c5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTI"
+ "ĮJUNGTI"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-lv/values-lv.xml b/android/build/intermediates/res/merged/debug/values-lv/values-lv.xml
new file mode 100644
index 000000000..df0fd7357
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml b/android/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 000000000..09742b98b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml b/android/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 000000000..49ecfc886
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml b/android/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 000000000..997e79bc0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml b/android/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 000000000..7c3fe3632
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml b/android/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 000000000..5a84cf4b9
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml b/android/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 000000000..c05fc1857
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-nb/values-nb.xml b/android/build/intermediates/res/merged/debug/values-nb/values-nb.xml
new file mode 100644
index 000000000..9d7bdd897
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-nb/values-nb.xml
@@ -0,0 +1,31 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml b/android/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 000000000..a134235a5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml b/android/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-nl/values-nl.xml b/android/build/intermediates/res/merged/debug/values-nl/values-nl.xml
new file mode 100644
index 000000000..10e0f86ff
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-nl/values-nl.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml b/android/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 000000000..c768d547a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-pl/values-pl.xml b/android/build/intermediates/res/merged/debug/values-pl/values-pl.xml
new file mode 100644
index 000000000..126bdb482
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-pl/values-pl.xml
@@ -0,0 +1,31 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-port/values-port.xml b/android/build/intermediates/res/merged/debug/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..61bd5a5e2
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,23 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..880875cb5
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,31 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-pt/values-pt.xml b/android/build/intermediates/res/merged/debug/values-pt/values-pt.xml
new file mode 100644
index 000000000..0f4b71c46
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-pt/values-pt.xml
@@ -0,0 +1,93 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ about-pt.md
+ Sobre
+ Excluir
+ Compartilhar
+ Marcação
+ Ir a Configurações
+ Cancelar
+ Depois
+ Não
+ Sim
+ Document scanner
+ Para funcionar o Open Note Scanner precisa dos serviços do OpenCV Manager, que não está instalado ainda.
+ Modo Automático
+ Tags automáticas
+ Define as tags que serão aplicadas automaticamente nas páginas marcadas usando o modelo de página especial
+ Configurações Básicas
+ Doar utilizando a criptomoeda Bitcoin
+ Rotaciona a imagem em 180º
+ Alguns aparelhos possuem a câmera invertida, esta configuração ajusta para que tudo fique correto
+ Modo preto & branco
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ Modo em cores
+ Deseja deletar as imagens selecionadas?
+ Deseja deletar esta imagem?
+ Deseja baixar o OpenCV Manager a partir do GitHub?
+ Confirme
+ Pague-me um café
+ Se você gostou deste aplicativo e acredita que ele lhe é útil, talvez você considere em fazer uma doação
+ Baixando
+ Baixando OpenCV Manager
+ Comentários e contribuições
+ Processador de Imagem Desativado
+ Processador de Imagem Ativado
+ Projeto no GitHub
+ Esta é uma aplicação de código aberto, você pode ajudar a melhorá-la com feedback, relatório de erros, programação e traduções através da página do projeto no GitHub
+ Download direto
+ Google Play
+ Imagens capturadas
+ Instalar OpenCV Manager
+ Modo manual
+ Manter relação de aspecto
+ Muitos dispositivos tem o aspecto da maior resolução de fotografia diferente da prévia, esta configuração irá escolher a maior resolução de fotografia que tenha a mesma relação a da prévia.
+ Google Play não está disponível e a instalação a partir de fontes desconhecidas está desativada, por favor vá até a tela de Configurações para ativá-la
+ Aceita vários cartões de crédito
+ Buscando documento\nClique novamente para capturar imagem inteira
+ Enviar mensagem
+ Enviar mensagem ao desenvolvedor
+ Configurações
+ Compartilhar Aplicativo
+ "Dê uma olhada neste aplicativo para escanear anotações, desenhos e documentos utilizando a câmera: "
+ Ótimo aplicativo para escanear anotações e documentos
+ Compartilhar link por
+ Compartilhar usando
+ Você deseja permitir que o Open Note Scanner envie anonimamente estatísticas de uso ao desenvolvedor?\n\nVocê pode alterar isto a qualquer momento na tela de configurações.
+ Estatísticas de Uso
+ "999+"
+ Pasta de Armazenamento
+ Define a pasta de armazenamento das imagens
+ Grupo no Telegram
+ Chat sobre o projeto no Telegram
+ Visualizador de imagens capturadas
+ Galeria
+ Estatísticas de Uso
+ Envia várias estatísticas de uso ao desenvolvedor. Nenhuma informação sobre o conteúdo será enviada
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ro/values-ro.xml b/android/build/intermediates/res/merged/debug/values-ro/values-ro.xml
new file mode 100644
index 000000000..5e9e27fc8
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ro/values-ro.xml
@@ -0,0 +1,31 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAȚI"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "˃999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ru/values-ru.xml b/android/build/intermediates/res/merged/debug/values-ru/values-ru.xml
new file mode 100644
index 000000000..54c5dc57f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ru/values-ru.xml
@@ -0,0 +1,31 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml b/android/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 000000000..38729f97a
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sk/values-sk.xml b/android/build/intermediates/res/merged/debug/values-sk/values-sk.xml
new file mode 100644
index 000000000..a0e5aa0da
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYP."
+ "ZAP."
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sl/values-sl.xml b/android/build/intermediates/res/merged/debug/values-sl/values-sl.xml
new file mode 100644
index 000000000..19eb9b77d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml b/android/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 000000000..38cfb1a9d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sr/values-sr.xml b/android/build/intermediates/res/merged/debug/values-sr/values-sr.xml
new file mode 100644
index 000000000..c674e1fe2
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sv/values-sv.xml b/android/build/intermediates/res/merged/debug/values-sv/values-sv.xml
new file mode 100644
index 000000000..9da1a65f1
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sv/values-sv.xml
@@ -0,0 +1,31 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sw/values-sw.xml b/android/build/intermediates/res/merged/debug/values-sw/values-sw.xml
new file mode 100644
index 000000000..b80b09a00
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..6fd509602
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,24 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+ 160dp
+ 5
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml b/android/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 000000000..0b33d7c69
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "முடக்கு"
+ "இயக்கு"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml b/android/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 000000000..e0f4a9e2e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-th/values-th.xml b/android/build/intermediates/res/merged/debug/values-th/values-th.xml
new file mode 100644
index 000000000..723086e62
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-th/values-th.xml
@@ -0,0 +1,31 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-tl/values-tl.xml b/android/build/intermediates/res/merged/debug/values-tl/values-tl.xml
new file mode 100644
index 000000000..870d8ce82
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-tr/values-tr.xml b/android/build/intermediates/res/merged/debug/values-tr/values-tr.xml
new file mode 100644
index 000000000..1458694c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-tr/values-tr.xml
@@ -0,0 +1,31 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-uk/values-uk.xml b/android/build/intermediates/res/merged/debug/values-uk/values-uk.xml
new file mode 100644
index 000000000..409e11bdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml b/android/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 000000000..0d597a067
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml b/android/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 000000000..22c32f98d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v11/values-v11.xml b/android/build/intermediates/res/merged/debug/values-v11/values-v11.xml
new file mode 100644
index 000000000..d074ce996
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v12/values-v12.xml b/android/build/intermediates/res/merged/debug/values-v12/values-v12.xml
new file mode 100644
index 000000000..85e241664
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v13/values-v13.xml b/android/build/intermediates/res/merged/debug/values-v13/values-v13.xml
new file mode 100644
index 000000000..74d14088e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v13/values-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v14/values-v14.xml b/android/build/intermediates/res/merged/debug/values-v14/values-v14.xml
new file mode 100644
index 000000000..7239a2c83
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v17/values-v17.xml b/android/build/intermediates/res/merged/debug/values-v17/values-v17.xml
new file mode 100644
index 000000000..f9f23d137
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v17/values-v17.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v18/values-v18.xml b/android/build/intermediates/res/merged/debug/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v21/values-v21.xml b/android/build/intermediates/res/merged/debug/values-v21/values-v21.xml
new file mode 100644
index 000000000..4ac3595dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v21/values-v21.xml
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v22/values-v22.xml b/android/build/intermediates/res/merged/debug/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-v23/values-v23.xml b/android/build/intermediates/res/merged/debug/values-v23/values-v23.xml
new file mode 100644
index 000000000..7a225c9cc
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-v23/values-v23.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-vi/values-vi.xml b/android/build/intermediates/res/merged/debug/values-vi/values-vi.xml
new file mode 100644
index 000000000..9d99f2d66
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-vi/values-vi.xml
@@ -0,0 +1,31 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 000000000..fd9dac9ba
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 000000000..5b7dcf655
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 000000000..dcd19ee3b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 000000000..4c058c26f
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 000000000..966aafb2b
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml b/android/build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml
new file mode 100644
index 000000000..3eda5f55d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 000000000..98b3f8c26
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..3dcad8bdd
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,12 @@
+
+
+ false
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..544f893f7
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,31 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..2cb83ac26
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,31 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "999 +"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..f253d7f71
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,93 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ about.md
+ 關於
+ 刪除
+ 分享
+ 標籤
+ 前往設定
+ 取消
+ 稍後
+ 否
+ 是
+ Open Note Scanner
+ Open Note Scanner 需要 OpenCV Manager 的服務才能運作,但 OpenCV Manager 並未安裝。
+ 自動模式
+ 自動標籤
+ 使用特別的頁面模版,定義將應用到已標記掃瞄之自動標籤
+ 基本設定
+ 以 Bitcoin 捐贈
+ 旋轉圖片 180º
+ 如部份裝置的相機令影像上下倒轉,此設定能使其回復正常
+ B&W mode
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ 顏色模式
+ 您是否想刪除已選圖片?
+ 您是否想刪除本圖片?
+ 您是否想從 GitHub 下載 OpenCV Manager?
+ 確認
+ 買杯咖啡給我
+ 如果您喜歡本應用程式並覺得它有用,您可考慮捐贈
+ 正在下載
+ 正在下載 OpenCV Manager
+ 回饋及貢獻
+ 圖片處理器已關閉
+ 圖片處理器已開啟
+ GitHub 上的項目
+ 本應用程式開發原始碼,您可以經 GitHub 的項目頁面提供回饋,問題報告,修改程式碼和翻譯來幫助改善它
+ 直接下載
+ Google Play
+ 已掃瞄圖片
+ 安裝 OpenCV Manager
+ 手動模式
+ 使用預覽長寬比
+ 大部份裝置在最高解析度下的長寬比要預覽時的長寬比有所不同。本設定將會選擇與預覽時的長寬比一樣之最高解析度
+ Google Play 不可用並且從不明來源安裝被停用,請前往設定啟用。
+ 接受很多種信用卡
+ 正在找尋文件\n再次點擊來掃瞄整張圖片
+ 傳送訊息
+ 傳送訊息給開發者
+ 設定
+ 分享本應用程式
+ "看看這個好用的應用程式,能透過您的相機掃瞄筆記,畫像和文件:"
+ 掃瞄筆記和文件的好應用程式
+ 經下列應用程式分享連結
+ 經下列應用程式分享
+ 您想允許 Open Note Scanner 傳送匿名用量統計如開發者嗎?\n\n您可以隨時在設定頁面更改此決定。
+ 用量統計
+ "999+"
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram 群組
+ 在 Telegram 上討論本項目
+ 掃瞄圖片瀏覽器
+ 圖庫
+ 用量統計
+ 傳送用量統計給開發者。掃瞄的內容不會被傳送
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values-zu/values-zu.xml b/android/build/intermediates/res/merged/debug/values-zu/values-zu.xml
new file mode 100644
index 000000000..d17fcf1da
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/values/values.xml b/android/build/intermediates/res/merged/debug/values/values.xml
new file mode 100644
index 000000000..aca27f91d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/values/values.xml
@@ -0,0 +1,1837 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #66000000
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #00E676
+ #00E676
+ #00C853
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #FFFF6E6E
+ #FFD50000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 16dp
+ 16dp
+ 4dp
+ 16dp
+ 256dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 0.30
+ 0.26
+ 16dp
+ 0.26
+ 0.20
+ 0.12
+ 20dp
+ 800dp
+ 120dp
+ 160dp
+ 16dp
+ 64dp
+ 64dp
+ 12dp
+ @android:drawable/ic_menu_camera
+ @android:drawable/ic_menu_gallery
+ @android:drawable/ic_menu_manage
+ @android:drawable/ic_menu_send
+ @android:drawable/ic_menu_share
+ @android:drawable/ic_menu_slideshow
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 150
+ 127
+ 2
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ about.md
+ About
+ Delete
+ Share
+ Tag
+ Go to Settings
+ Cancel
+ Later
+ No
+ Yes
+ Doc scan
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ In order to work, Open Note Scanner needs the services of OpenCV Manager, which is not installed yet.
+ Automatic Mode
+ Automatic Tagging
+ Define automatic tags to be applied on marked scans using the special page template
+ Basic Settings
+ Donate using Bitcoin cryptocurrency
+ android.support.design.widget.BottomSheetBehavior
+ Rotate Image 180º
+ Some devices have the camera upside down, this setting adjusts everything to make sense
+ B&W mode
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ %1$d / %2$d
+ Color Mode
+ Do you want to delete the selected images?
+ Do you want to delete this image?
+ Do you want to download OpenCV Manager from GitHub?
+ Confirm
+ Wow, such app, many useful
+ Buy me a coffee
+ If you like this application and think it is useful, you may consider making a donation
+ Downloading
+ Downloading OpenCV Manager
+ Feedback and contributions
+ Image Processor Off
+ Image Processor On
+ Project on GitHub
+ This application is open source, you can help to improve it with feedback, issue reports, code and translations through the GitHub project\'s page
+ Direct Download
+ Google Play
+ Images Scanned
+ Install OpenCV Manager
+ Manual Mode
+ Match preview aspect ratio
+ Most devices have the highest resolution picture aspect ratio different from the preview one, this setting will select the highest picture resolution that matches with the aspect ratio of preview
+ Google Play isn\'t available and Install from Unknown Sources is disabled, please go to Settings and activate it.
+ Many credit cards accepted
+ Searching for document\nTap again to scan whole image
+ Send Message
+ Send message to developer
+ Settings
+ Share this App
+ "Take a look at this great app that scans notes, drawings and documents through your camera: "
+ Great app to scan notes and documents
+ Share link through
+ Share images through
+ Do you want to enable Open Note Scanner to send anonymous usage statistics to the developer?\n\nYou can change this anytime on the settings screen.
+ Usage Stats
+ 999+
+ Storage Folder
+ Sets where the scanned files should be stored
+ Telegram Group
+ Chat about the project on Telegram
+ Scanned Image Viewer
+ Gallery
+ Open Note Scanner
+ Usage Statistics
+ Send various usage statistics to developer. No content data will be sent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/debug/xml/preferences.xml b/android/build/intermediates/res/merged/debug/xml/preferences.xml
new file mode 100644
index 000000000..99f5408c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/xml/preferences.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/debug/xml/settings.xml b/android/build/intermediates/res/merged/debug/xml/settings.xml
new file mode 100644
index 000000000..d23cb4f7d
--- /dev/null
+++ b/android/build/intermediates/res/merged/debug/xml/settings.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..30d0d0dad
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..459c21670
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim-v21/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml b/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml
new file mode 100644
index 000000000..da7ee295c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml b/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml
new file mode 100644
index 000000000..c81b39a9b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml b/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 000000000..79d02d44c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml b/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml
new file mode 100644
index 000000000..91664da17
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml b/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml
new file mode 100644
index 000000000..db7e8073a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml b/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 000000000..9a23cd202
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml b/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml
new file mode 100644
index 000000000..1afa8febc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml b/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml
new file mode 100644
index 000000000..ab824f2e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml b/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml
new file mode 100644
index 000000000..b309fe89c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml b/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml
new file mode 100644
index 000000000..e84d1c7fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml b/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml
new file mode 100644
index 000000000..134d9d7e0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml b/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml
new file mode 100644
index 000000000..67f6af808
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/blink.xml b/android/build/intermediates/res/merged/release/anim/blink.xml
new file mode 100644
index 000000000..a176e1fd1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/blink.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml b/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml
new file mode 100644
index 000000000..aef91bc52
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml b/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml
new file mode 100644
index 000000000..790e27589
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_in.xml b/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_in.xml
new file mode 100644
index 000000000..b01829edf
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_in.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_out.xml b/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_out.xml
new file mode 100644
index 000000000..12fd977ab
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/design_bottom_sheet_slide_out.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/design_snackbar_in.xml b/android/build/intermediates/res/merged/release/anim/design_snackbar_in.xml
new file mode 100644
index 000000000..45e6ccb1c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/design_snackbar_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/anim/design_snackbar_out.xml b/android/build/intermediates/res/merged/release/anim/design_snackbar_out.xml
new file mode 100644
index 000000000..5e21a20cb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/anim/design_snackbar_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator-v21/design_appbar_state_list_animator.xml b/android/build/intermediates/res/merged/release/animator-v21/design_appbar_state_list_animator.xml
new file mode 100644
index 000000000..94ee6931f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator-v21/design_appbar_state_list_animator.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/design_fab_hide_motion_spec.xml b/android/build/intermediates/res/merged/release/animator/design_fab_hide_motion_spec.xml
new file mode 100644
index 000000000..c748813e0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/design_fab_hide_motion_spec.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/design_fab_show_motion_spec.xml b/android/build/intermediates/res/merged/release/animator/design_fab_show_motion_spec.xml
new file mode 100644
index 000000000..bfddceec8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/design_fab_show_motion_spec.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_btn_state_list_anim.xml b/android/build/intermediates/res/merged/release/animator/mtrl_btn_state_list_anim.xml
new file mode 100644
index 000000000..38d4d9fe5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_btn_state_list_anim.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_btn_unelevated_state_list_anim.xml b/android/build/intermediates/res/merged/release/animator/mtrl_btn_unelevated_state_list_anim.xml
new file mode 100644
index 000000000..5d5834ad3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_btn_unelevated_state_list_anim.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_chip_state_list_anim.xml b/android/build/intermediates/res/merged/release/animator/mtrl_chip_state_list_anim.xml
new file mode 100644
index 000000000..dcdb4d189
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_chip_state_list_anim.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_fab_hide_motion_spec.xml b/android/build/intermediates/res/merged/release/animator/mtrl_fab_hide_motion_spec.xml
new file mode 100644
index 000000000..122aca186
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_fab_hide_motion_spec.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_fab_show_motion_spec.xml b/android/build/intermediates/res/merged/release/animator/mtrl_fab_show_motion_spec.xml
new file mode 100644
index 000000000..392e0d9ef
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_fab_show_motion_spec.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_collapse_spec.xml b/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_collapse_spec.xml
new file mode 100644
index 000000000..791ecbd9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_collapse_spec.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_expand_spec.xml b/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_expand_spec.xml
new file mode 100644
index 000000000..d94a13561
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/animator/mtrl_fab_transformation_sheet_expand_spec.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml b/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml
new file mode 100644
index 000000000..f5585e3df
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml b/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml
new file mode 100644
index 000000000..468b155d3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml b/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml
new file mode 100644
index 000000000..74170d61d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml b/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 000000000..8d5361189
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml
new file mode 100644
index 000000000..e82eff483
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml
new file mode 100644
index 000000000..abe38804b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml
new file mode 100644
index 000000000..0e05e07d5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml
new file mode 100644
index 000000000..4fc9626f1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml
new file mode 100644
index 000000000..0e05e07d5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml b/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml
new file mode 100644
index 000000000..e663772e7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color-v23/design_tint_password_toggle.xml b/android/build/intermediates/res/merged/release/color-v23/design_tint_password_toggle.xml
new file mode 100644
index 000000000..b5a7111fa
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color-v23/design_tint_password_toggle.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml b/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 000000000..e0160766e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml b/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 000000000..290faf1a0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_btn_colored_borderless_text_material.xml b/android/build/intermediates/res/merged/release/color/abc_btn_colored_borderless_text_material.xml
new file mode 100644
index 000000000..148004668
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_btn_colored_borderless_text_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml b/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml
new file mode 100644
index 000000000..897a3f75f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml b/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml
new file mode 100644
index 000000000..fe8687216
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml b/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml
new file mode 100644
index 000000000..1bef5afeb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml b/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 000000000..724c2557d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml b/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 000000000..7395e680c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml b/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml
new file mode 100644
index 000000000..7d66d02d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml b/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml
new file mode 100644
index 000000000..105b643dd
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml b/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml
new file mode 100644
index 000000000..0631d5d4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml b/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 000000000..6399b1d02
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml b/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml
new file mode 100644
index 000000000..87c015a4c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml b/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml
new file mode 100644
index 000000000..0c663f6b9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_default.xml b/android/build/intermediates/res/merged/release/color/abc_tint_default.xml
new file mode 100644
index 000000000..8d7c391e3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_default.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml b/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml
new file mode 100644
index 000000000..536d77f09
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml b/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml
new file mode 100644
index 000000000..cb537882f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml b/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml
new file mode 100644
index 000000000..44333dd1e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml b/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml
new file mode 100644
index 000000000..22322f8d8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/design_error.xml b/android/build/intermediates/res/merged/release/color/design_error.xml
new file mode 100644
index 000000000..80b2b6c4e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/design_error.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/design_tint_password_toggle.xml b/android/build/intermediates/res/merged/release/color/design_tint_password_toggle.xml
new file mode 100644
index 000000000..ad188b911
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/design_tint_password_toggle.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_colored_item_tint.xml b/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_colored_item_tint.xml
new file mode 100644
index 000000000..6b7a8a768
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_colored_item_tint.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_item_tint.xml b/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_item_tint.xml
new file mode 100644
index 000000000..71fa63c93
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_bottom_nav_item_tint.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_btn_bg_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_btn_bg_color_selector.xml
new file mode 100644
index 000000000..3fc02a76e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_btn_bg_color_selector.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_btn_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_btn_ripple_color.xml
new file mode 100644
index 000000000..554e47241
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_btn_ripple_color.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_btn_stroke_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_btn_stroke_color_selector.xml
new file mode 100644
index 000000000..1d440b1b5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_btn_stroke_color_selector.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_btn_text_btn_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_btn_text_btn_ripple_color.xml
new file mode 100644
index 000000000..d50b8f1f9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_btn_text_btn_ripple_color.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_btn_text_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_btn_text_color_selector.xml
new file mode 100644
index 000000000..9189918af
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_btn_text_color_selector.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_chip_background_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_chip_background_color.xml
new file mode 100644
index 000000000..2eea858b6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_chip_background_color.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_chip_close_icon_tint.xml b/android/build/intermediates/res/merged/release/color/mtrl_chip_close_icon_tint.xml
new file mode 100644
index 000000000..6888aca7f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_chip_close_icon_tint.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_chip_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_chip_ripple_color.xml
new file mode 100644
index 000000000..31cade4c9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_chip_ripple_color.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_chip_text_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_chip_text_color.xml
new file mode 100644
index 000000000..836bcc3b6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_chip_text_color.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_fab_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_fab_ripple_color.xml
new file mode 100644
index 000000000..3398838e8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_fab_ripple_color.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_tabs_colored_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_tabs_colored_ripple_color.xml
new file mode 100644
index 000000000..3b7018deb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_tabs_colored_ripple_color.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector.xml
new file mode 100644
index 000000000..848526def
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector_colored.xml b/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector_colored.xml
new file mode 100644
index 000000000..85c5e42a5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_tabs_icon_color_selector_colored.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_tabs_legacy_text_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_tabs_legacy_text_color_selector.xml
new file mode 100644
index 000000000..21f6883a9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_tabs_legacy_text_color_selector.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_tabs_ripple_color.xml b/android/build/intermediates/res/merged/release/color/mtrl_tabs_ripple_color.xml
new file mode 100644
index 000000000..41d547e19
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_tabs_ripple_color.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/mtrl_text_btn_text_color_selector.xml b/android/build/intermediates/res/merged/release/color/mtrl_text_btn_text_color_selector.xml
new file mode 100644
index 000000000..2991264f8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/mtrl_text_btn_text_color_selector.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml b/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml
new file mode 100644
index 000000000..6153382c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml b/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml
new file mode 100644
index 000000000..94d711482
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility.xml b/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility.xml
new file mode 100644
index 000000000..c2a847812
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility_off.xml b/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility_off.xml
new file mode 100644
index 000000000..3c5f23be9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-anydpi-v21/design_ic_visibility_off.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d9f861f8
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..99110085f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..69ff9dde3
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..9218981b4
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..a58857635
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..4657a25ff
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3fd617bf9
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..226439823
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..65ccd8f41
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..706fc1fa3
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..e78bcaf57
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..8610c5015
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..63d0e5d55
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..cd1f57c5b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..a728afe60
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..64b2aa7f2
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png
new file mode 100644
index 000000000..54d306599
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..cf270fe1b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..49ad6cd74
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png
new file mode 100644
index 000000000..1aa996536
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..c2264a89a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..c09ec90e0
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..62fbd2cb5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..2f6ef9160
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..863ce95f6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..b6d467774
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..60081db88
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..abb52c975
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..9d8451aab
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..d8d6d7f60
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..30c1c1e5f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..1f1cdadbf
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..ffb0096fd
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..e54950e9d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..0da5b1d1e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..f8063b23b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..4b0b10a7a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png
new file mode 100644
index 000000000..ebf3f6cba
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png
new file mode 100644
index 000000000..d3556a814
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
new file mode 100644
index 000000000..428bfab62
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png
new file mode 100644
index 000000000..183c9aced
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png
new file mode 100644
index 000000000..829d5b249
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png
new file mode 100644
index 000000000..9b67079ad
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..5b13bc17a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..5440b1a4d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..05d6920b8
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..6282df4e6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility.png
new file mode 100644
index 000000000..329e617e9
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility_off.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility_off.png
new file mode 100644
index 000000000..b21a68629
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/design_ic_visibility_off.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png
new file mode 100644
index 000000000..af91f5e64
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png
new file mode 100644
index 000000000..1602ab872
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png
new file mode 100644
index 000000000..6ebed8bfd
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
new file mode 100644
index 000000000..6193822d5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
new file mode 100644
index 000000000..6f37a22d5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..a262b0c87
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..d8eaf0761
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ddbec8b18
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..254f80615
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..f9cba8f2d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..c888ee057
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..198a842af
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..87bf8d36b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..588161e6a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..284c3c23e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..3cdb6cf5c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..7cf976d2b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..7d4c69091
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..90fe333ac
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..4c0f0b38f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..fa0ed8fe9
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..7a9fcbcbf
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..8e6c2717c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..9f0d2c823
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..6e18d40d7
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..d0a41a51e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..bebb1e211
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..038e00086
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..6086f9c38
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..559b83539
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..a282219cd
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..1492ab62a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..7c011af4c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..36f664cca
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..3f5d25e01
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..2ddcdd985
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png
new file mode 100644
index 000000000..c636ce8e8
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..077f9b05d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..ac6ad111b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png
new file mode 100644
index 000000000..00651110d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..c2264a89a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..addb54a22
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..5fcd5b207
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..251b98913
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..01efec045
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..f1d1b6170
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..10851f6c8
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..15c1ebb56
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..5f55cd553
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..1bff7fa3b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..9280f8296
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..21bffc645
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..88781298a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..869c8b088
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..ed75cb812
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..ab8460f58
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..12b0a79c5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png
new file mode 100644
index 000000000..87e48ec85
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png
new file mode 100644
index 000000000..e243fd8f8
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
new file mode 100644
index 000000000..d001ceac7
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png
new file mode 100644
index 000000000..55b8b363f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png
new file mode 100644
index 000000000..f415390d5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png
new file mode 100644
index 000000000..e6eff09ec
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..3ffa25193
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..5d7ad2f13
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..0c766f30d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4f66d7adc
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility.png
new file mode 100644
index 000000000..58597e91b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility_off.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility_off.png
new file mode 100644
index 000000000..3efdf4922
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/design_ic_visibility_off.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png
new file mode 100644
index 000000000..62de9d76b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png
new file mode 100644
index 000000000..eaabd9317
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png
new file mode 100644
index 000000000..aa239b35c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
new file mode 100644
index 000000000..62d8622b2
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
new file mode 100644
index 000000000..c286875aa
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml b/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 000000000..595c56c6a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 000000000..10251aadc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml b/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml
new file mode 100644
index 000000000..7ef438bbf
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml b/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml
new file mode 100644
index 000000000..d98b0085b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml b/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml
new file mode 100644
index 000000000..5ed2121d8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/avd_hide_password.xml b/android/build/intermediates/res/merged/release/drawable-v21/avd_hide_password.xml
new file mode 100644
index 000000000..ff1e51981
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/avd_hide_password.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/avd_show_password.xml b/android/build/intermediates/res/merged/release/drawable-v21/avd_show_password.xml
new file mode 100644
index 000000000..4a00cf763
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/avd_show_password.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/design_bottom_navigation_item_background.xml b/android/build/intermediates/res/merged/release/drawable-v21/design_bottom_navigation_item_background.xml
new file mode 100644
index 000000000..9e653d6a5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/design_bottom_navigation_item_background.xml
@@ -0,0 +1,19 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/design_password_eye.xml b/android/build/intermediates/res/merged/release/drawable-v21/design_password_eye.xml
new file mode 100644
index 000000000..9ae34af1f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/design_password_eye.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml b/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml
new file mode 100644
index 000000000..f3b47cba2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml b/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 000000000..0b540390a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml b/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml
new file mode 100644
index 000000000..242761b30
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..6284eaaa1
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..49025208b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..59a683ab6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..03bf49cc5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..342323b4b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..1d29f9a6c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..92b43ba00
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..600178a98
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..ca303fd6e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..8e664eb15
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..cd38901c4
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..9aabc43ce
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..c8bae19bc
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..6be7e097c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..35fe96563
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..45887c13d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png
new file mode 100644
index 000000000..7be22806f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..ea6033adb
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..2f4818b29
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png
new file mode 100644
index 000000000..2456a74a5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..c2264a89a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..67c25aeff
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..17c34a1a9
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..988548a10
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..15fcf6a32
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..65275b38c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..ee95ed4e2
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..99cf6de8b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..d8cc7d3c5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..c08ec90ff
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..0486af199
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..20079d8ca
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..fb4e42aaa
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..44b9a147b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..bcf6b7f05
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..7c56175a1
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..2242d2f94
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
new file mode 100644
index 000000000..76ed4f322
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png
new file mode 100644
index 000000000..529d5504d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
new file mode 100644
index 000000000..3dcebcf83
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
new file mode 100644
index 000000000..1f8cc88c5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
new file mode 100644
index 000000000..8df37185e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png
new file mode 100644
index 000000000..6c8f6a433
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..8ff3a8304
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..e7e693a7b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..819171ad6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..4def8c8fa
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility.png
new file mode 100644
index 000000000..1f7b4cc8f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility_off.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility_off.png
new file mode 100644
index 000000000..46bf0c931
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/design_ic_visibility_off.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png
new file mode 100644
index 000000000..8c884decb
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
new file mode 100644
index 000000000..32e00befe
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png
new file mode 100644
index 000000000..bdf477bad
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
new file mode 100644
index 000000000..5c4da7445
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
new file mode 100644
index 000000000..9128e62bb
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 000000000..4eae28fde
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..d934b60dc
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..8c82ec3d7
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..8fc0a9b87
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..3038d70fc
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..c079867b3
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..3b9dc7c11
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 000000000..f6d2f3294
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 000000000..fe826b7ca
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..90d6ba3c6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..63e541f4b
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..f71485c2d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..162ab9847
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..d95a3774a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..e5509b034
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..72685abe7
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png
new file mode 100644
index 000000000..918a39565
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..8e985b46d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..19bbc1202
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png
new file mode 100644
index 000000000..601bf0c2f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 000000000..987b2bc25
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
new file mode 100644
index 000000000..8b050e855
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
new file mode 100644
index 000000000..00e370a1a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 000000000..719c7b5eb
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
new file mode 100644
index 000000000..75bd5803f
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 000000000..4f3b147a6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 000000000..224a08157
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 000000000..b5ceeac06
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 000000000..4727a7d6c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
new file mode 100644
index 000000000..4657815e4
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..4aa0a3441
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..6178c45ca
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
new file mode 100644
index 000000000..3d9b96107
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..56a69df15
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..792400081
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..ba5abaad1
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..eeb74c869
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
new file mode 100644
index 000000000..278cb2387
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
new file mode 100644
index 000000000..d6a87904d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
new file mode 100644
index 000000000..d71dbd197
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
new file mode 100644
index 000000000..de001850e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
new file mode 100644
index 000000000..56d677d8e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
new file mode 100644
index 000000000..d186a5bb4
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..4d3d3a4d0
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..c5acb84f0
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 000000000..30328ae1d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 000000000..bc21142c1
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility.png
new file mode 100644
index 000000000..c816ab49d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility_off.png b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility_off.png
new file mode 100644
index 000000000..13eb65df3
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/design_ic_visibility_off.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 000000000..e40fa4e10
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 000000000..4e18de21a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 000000000..5fa326654
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 000000000..c11cb2ec6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 000000000..639e6cb41
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 000000000..355d5b775
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 000000000..6758084a5
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 000000000..397fd91c6
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 000000000..6c8428a00
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 000000000..9084c385e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 000000000..ba16aac56
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
new file mode 100644
index 000000000..cc8109732
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
new file mode 100644
index 000000000..dc312c14a
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png
new file mode 100644
index 000000000..67e25d559
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
new file mode 100644
index 000000000..1c7f66eaa
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
new file mode 100644
index 000000000..82e729387
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png
new file mode 100644
index 000000000..b028a36ad
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
new file mode 100644
index 000000000..7dfaf7cf3
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
new file mode 100644
index 000000000..fe8f2e40e
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 000000000..752cb5798
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 000000000..40255c3e1
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 000000000..0210ad178
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
new file mode 100644
index 000000000..2c6d0daf7
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
new file mode 100644
index 000000000..565f0b294
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
new file mode 100644
index 000000000..714b64187
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
new file mode 100644
index 000000000..894c73421
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility.png
new file mode 100644
index 000000000..e005b976c
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility_off.png b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility_off.png
new file mode 100644
index 000000000..ce3c9d84d
Binary files /dev/null and b/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/design_ic_visibility_off.png differ
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 000000000..f3894600b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml
new file mode 100644
index 000000000..f6e938fe4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_btn_colored_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_btn_colored_material.xml
new file mode 100644
index 000000000..ec93b8b6b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml b/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 000000000..c50d4b10f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml
new file mode 100644
index 000000000..6e9f9cf37
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml b/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 000000000..9faf60ac6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 000000000..f20add7e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background.xml b/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background.xml
new file mode 100644
index 000000000..978565bc5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_dialog_material_background.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_edit_text_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_edit_text_material.xml
new file mode 100644
index 000000000..46c4e9120
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_edit_text_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml
new file mode 100644
index 000000000..5a895239c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml
new file mode 100644
index 000000000..68547eb7d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml
new file mode 100644
index 000000000..e6d106b76
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml
new file mode 100644
index 000000000..0c8811913
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml
new file mode 100644
index 000000000..1420edd7f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml
new file mode 100644
index 000000000..b4cba3476
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml
new file mode 100644
index 000000000..143db558f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml b/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 000000000..72162c222
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml b/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 000000000..1c180b2ee
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_list_divider_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_list_divider_material.xml
new file mode 100644
index 000000000..6739a82de
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_list_divider_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 000000000..0add58c86
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 000000000..0c1d3e678
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 000000000..1fb5fc451
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 000000000..8d2404722
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml
new file mode 100644
index 000000000..bc339a349
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml
new file mode 100644
index 000000000..dde914e0d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml
new file mode 100644
index 000000000..6daff8bcc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml
new file mode 100644
index 000000000..7fea83bc8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml
new file mode 100644
index 000000000..e2d86c97e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml
new file mode 100644
index 000000000..e68ac03e9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 000000000..d0f46a809
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 000000000..ee96ec2e7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 000000000..1a8de1b69
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml
new file mode 100644
index 000000000..885670c99
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml b/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml
new file mode 100644
index 000000000..08873966e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml b/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml
new file mode 100644
index 000000000..d5da2cbdc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/design_bottom_navigation_item_background.xml b/android/build/intermediates/res/merged/release/drawable/design_bottom_navigation_item_background.xml
new file mode 100644
index 000000000..82dd0ab7b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/design_bottom_navigation_item_background.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/design_fab_background.xml b/android/build/intermediates/res/merged/release/drawable/design_fab_background.xml
new file mode 100644
index 000000000..0c1309d9b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/design_fab_background.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/design_password_eye.xml b/android/build/intermediates/res/merged/release/drawable/design_password_eye.xml
new file mode 100644
index 000000000..1acf283f5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/design_password_eye.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/design_snackbar_background.xml b/android/build/intermediates/res/merged/release/drawable/design_snackbar_background.xml
new file mode 100644
index 000000000..945a0ce85
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/design_snackbar_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_black.xml b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_black.xml
new file mode 100644
index 000000000..9032d92c4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_black.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_circle.xml b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_circle.xml
new file mode 100644
index 000000000..78820bce1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_checked_circle.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_close_circle.xml b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_close_circle.xml
new file mode 100644
index 000000000..e65d48c0b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/ic_mtrl_chip_close_circle.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/mtrl_snackbar_background.xml b/android/build/intermediates/res/merged/release/drawable/mtrl_snackbar_background.xml
new file mode 100644
index 000000000..85e1a988e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/mtrl_snackbar_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/mtrl_tabs_default_indicator.xml b/android/build/intermediates/res/merged/release/drawable/mtrl_tabs_default_indicator.xml
new file mode 100644
index 000000000..68ac74050
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/mtrl_tabs_default_indicator.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/navigation_empty_icon.xml b/android/build/intermediates/res/merged/release/drawable/navigation_empty_icon.xml
new file mode 100644
index 000000000..976507ed4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/navigation_empty_icon.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/drawable/notification_bg.xml b/android/build/intermediates/res/merged/release/drawable/notification_bg.xml
new file mode 100644
index 000000000..1232b4cb5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/notification_bg.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml b/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml
new file mode 100644
index 000000000..72e58ae71
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml b/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml
new file mode 100644
index 000000000..490a797ea
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml b/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml
new file mode 100644
index 000000000..8eee7ef01
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml
@@ -0,0 +1,22 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml b/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml
new file mode 100644
index 000000000..43c2f9965
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml b/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml
new file mode 100644
index 000000000..20966d541
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_linear_in.xml b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_linear_in.xml
new file mode 100644
index 000000000..f88a91d2f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_linear_in.xml
@@ -0,0 +1,22 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_slow_in.xml b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_slow_in.xml
new file mode 100644
index 000000000..a0e2c84cd
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_fast_out_slow_in.xml
@@ -0,0 +1,22 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_linear_out_slow_in.xml b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_linear_out_slow_in.xml
new file mode 100644
index 000000000..2325a84fe
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator-v21/mtrl_linear_out_slow_in.xml
@@ -0,0 +1,22 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_linear_in.xml b/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_linear_in.xml
new file mode 100644
index 000000000..0b9d209a3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_linear_in.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_slow_in.xml b/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_slow_in.xml
new file mode 100644
index 000000000..dd9db4983
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator/mtrl_fast_out_slow_in.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator/mtrl_linear.xml b/android/build/intermediates/res/merged/release/interpolator/mtrl_linear.xml
new file mode 100644
index 000000000..92a560cb4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator/mtrl_linear.xml
@@ -0,0 +1,18 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/interpolator/mtrl_linear_out_slow_in.xml b/android/build/intermediates/res/merged/release/interpolator/mtrl_linear_out_slow_in.xml
new file mode 100644
index 000000000..32407f035
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/interpolator/mtrl_linear_out_slow_in.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-sw600dp-v13/design_layout_snackbar.xml b/android/build/intermediates/res/merged/release/layout-sw600dp-v13/design_layout_snackbar.xml
new file mode 100644
index 000000000..56d427847
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-sw600dp-v13/design_layout_snackbar.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-sw600dp-v13/mtrl_layout_snackbar.xml b/android/build/intermediates/res/merged/release/layout-sw600dp-v13/mtrl_layout_snackbar.xml
new file mode 100644
index 000000000..7603e707f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-sw600dp-v13/mtrl_layout_snackbar.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-v16/notification_template_custom_big.xml b/android/build/intermediates/res/merged/release/layout-v16/notification_template_custom_big.xml
new file mode 100644
index 000000000..d0519dc91
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v16/notification_template_custom_big.xml
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml b/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml
new file mode 100644
index 000000000..7199c2506
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml b/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml
new file mode 100644
index 000000000..7ef38fa01
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml b/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml
new file mode 100644
index 000000000..9e3666e36
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml b/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml
new file mode 100644
index 000000000..8fadd673f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml b/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml
new file mode 100644
index 000000000..26704ac5f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml b/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml
new file mode 100644
index 000000000..c411de6c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml b/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml
new file mode 100644
index 000000000..6fa46baf8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml b/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml
new file mode 100644
index 000000000..194afb74c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml b/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml
new file mode 100644
index 000000000..f46550a55
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 000000000..aadd5d47d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,30 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml
new file mode 100644
index 000000000..4918d2fba
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml b/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml
new file mode 100644
index 000000000..dc1f1ba23
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml b/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 000000000..118ce2b2d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml b/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml
new file mode 100644
index 000000000..7e2da5cb3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml b/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 000000000..cf8cb1aa6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml
new file mode 100644
index 000000000..9f137899a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml
new file mode 100644
index 000000000..cee2d0ecc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml
new file mode 100644
index 000000000..43eedee00
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml
new file mode 100644
index 000000000..aab7b4c69
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml b/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml
new file mode 100644
index 000000000..1ea20c5e1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 000000000..560ada6fb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,21 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 000000000..d9c3f0681
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 000000000..acd005a13
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 000000000..c85469dd6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 000000000..0ca8d7a2a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml
new file mode 100644
index 000000000..a40b6dd74
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml b/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 000000000..6df3127a9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml b/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml
new file mode 100644
index 000000000..1c30338f9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml b/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml
new file mode 100644
index 000000000..2783187d0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml b/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 000000000..c02c2aa9c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml b/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml
new file mode 100644
index 000000000..96412c15b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml b/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 000000000..b81d5d8ca
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_search_view.xml b/android/build/intermediates/res/merged/release/layout/abc_search_view.xml
new file mode 100644
index 000000000..1d9a98b50
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_search_view.xml
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml b/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml
new file mode 100644
index 000000000..ae4b26815
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml b/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml
new file mode 100644
index 000000000..1421cd418
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/activity_open_note_scanner.xml b/android/build/intermediates/res/merged/release/layout/activity_open_note_scanner.xml
new file mode 100644
index 000000000..ebc2da322
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/activity_open_note_scanner.xml
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_bottom_navigation_item.xml b/android/build/intermediates/res/merged/release/layout/design_bottom_navigation_item.xml
new file mode 100644
index 000000000..858ce2e04
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_bottom_navigation_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_bottom_sheet_dialog.xml b/android/build/intermediates/res/merged/release/layout/design_bottom_sheet_dialog.xml
new file mode 100644
index 000000000..864ed05d5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_bottom_sheet_dialog.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_layout_snackbar.xml b/android/build/intermediates/res/merged/release/layout/design_layout_snackbar.xml
new file mode 100644
index 000000000..2f2e2e026
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_layout_snackbar.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_layout_snackbar_include.xml b/android/build/intermediates/res/merged/release/layout/design_layout_snackbar_include.xml
new file mode 100644
index 000000000..8602ab74f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_layout_snackbar_include.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_layout_tab_icon.xml b/android/build/intermediates/res/merged/release/layout/design_layout_tab_icon.xml
new file mode 100644
index 000000000..4c2011bba
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_layout_tab_icon.xml
@@ -0,0 +1,22 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_layout_tab_text.xml b/android/build/intermediates/res/merged/release/layout/design_layout_tab_text.xml
new file mode 100644
index 000000000..56d28d7a5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_layout_tab_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_menu_item_action_area.xml b/android/build/intermediates/res/merged/release/layout/design_menu_item_action_area.xml
new file mode 100644
index 000000000..68890e21a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_menu_item_action_area.xml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_item.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_item.xml
new file mode 100644
index 000000000..873c16dc7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_item.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_item_header.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_item_header.xml
new file mode 100644
index 000000000..c55c63ee2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_item_header.xml
@@ -0,0 +1,22 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_item_separator.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_item_separator.xml
new file mode 100644
index 000000000..b06cfb4d5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_item_separator.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_item_subheader.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_item_subheader.xml
new file mode 100644
index 000000000..0efa85c95
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_item_subheader.xml
@@ -0,0 +1,25 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_menu.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_menu.xml
new file mode 100644
index 000000000..db67ee602
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_menu.xml
@@ -0,0 +1,24 @@
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_navigation_menu_item.xml b/android/build/intermediates/res/merged/release/layout/design_navigation_menu_item.xml
new file mode 100644
index 000000000..8aa2a5c28
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_navigation_menu_item.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/design_text_input_password_icon.xml b/android/build/intermediates/res/merged/release/layout/design_text_input_password_icon.xml
new file mode 100644
index 000000000..9a569233c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/design_text_input_password_icon.xml
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/fps_view.xml b/android/build/intermediates/res/merged/release/layout/fps_view.xml
new file mode 100644
index 000000000..468caa9f3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar.xml b/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar.xml
new file mode 100644
index 000000000..427efa2c6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar_include.xml b/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar_include.xml
new file mode 100644
index 000000000..4beb61c7d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/mtrl_layout_snackbar_include.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/notification_action.xml b/android/build/intermediates/res/merged/release/layout/notification_action.xml
new file mode 100644
index 000000000..3ffd9a18b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/notification_action.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/notification_action_tombstone.xml b/android/build/intermediates/res/merged/release/layout/notification_action_tombstone.xml
new file mode 100644
index 000000000..e9d4e3769
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/notification_action_tombstone.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/layout/notification_template_icon_group.xml b/android/build/intermediates/res/merged/release/layout/notification_template_icon_group.xml
new file mode 100644
index 000000000..f225737f0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/notification_template_icon_group.xml
@@ -0,0 +1,24 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml b/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml
new file mode 100644
index 000000000..245353b09
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,23 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml b/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml
new file mode 100644
index 000000000..9a78a93c8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml
@@ -0,0 +1,23 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml b/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml
new file mode 100644
index 000000000..ad23cbf47
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml b/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml
new file mode 100644
index 000000000..8091fb4d3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/build/intermediates/res/merged/release/layout/redbox_view.xml b/android/build/intermediates/res/merged/release/layout/redbox_view.xml
new file mode 100644
index 000000000..02c07ba8c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/redbox_view.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml b/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml
new file mode 100644
index 000000000..677b178d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml b/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 000000000..60f3576a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml b/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 000000000..4d10fc720
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,33 @@
+
+
+
+
diff --git a/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml b/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 000000000..d2f177ac8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-af/values-af.xml b/android/build/intermediates/res/merged/release/values-af/values-af.xml
new file mode 100644
index 000000000..d8fe69b85
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-af/values-af.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigeer tuis"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksie+"
+ "Meta+"
+ "Shift+"
+ "spasiebalk"
+ "Simbool+"
+ "Kieslys+"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "Soek"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-am/values-am.xml b/android/build/intermediates/res/merged/release/values-am/values-am.xml
new file mode 100644
index 000000000..102913578
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-am/values-am.xml
@@ -0,0 +1,32 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ጠፍቷል"
+ "በርቷል"
+ "Alt+"
+ "Ctrl+"
+ "ሰርዝ"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "ምናሌ+"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር አጋራ"
+ "ሰብስብ"
+ "ፈልግ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ar/values-ar.xml b/android/build/intermediates/res/merged/release/values-ar/values-ar.xml
new file mode 100644
index 000000000..e7fb419b6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ar/values-ar.xml
@@ -0,0 +1,32 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاف"
+ "تشغيل"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "القائمة+"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "البحث"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-as/values-as.xml b/android/build/intermediates/res/merged/release/values-as/values-as.xml
new file mode 100644
index 000000000..2287e53bb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-as/values-as.xml
@@ -0,0 +1,32 @@
+
+
+ "গৃহ পৃষ্ঠালৈ যাওক"
+ "ওপৰলৈ যাওক"
+ "অধিক বিকল্প"
+ "সম্পন্ন কৰা হ\'ল"
+ "সকলো চাওক"
+ "এটা এপ্ বাছনি কৰক"
+ "অফ কৰক"
+ "অন কৰক"
+ "Alt+"
+ "CTRL+"
+ "মচক"
+ "এণ্টাৰ"
+ "ফাংশ্বন+"
+ "মেটা+"
+ "শ্বিফ্ট+"
+ "স্পেচ"
+ "Sym+"
+ "মেনু+"
+ "অনুসন্ধান কৰক…"
+ "প্ৰশ্ন মচক"
+ "সন্ধান কৰিব খোজা প্ৰশ্ন"
+ "সন্ধান কৰক"
+ "প্ৰশ্ন দাখিল কৰক"
+ "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক"
+ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"
+ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক"
+ "সংকুচিত কৰক"
+ "অনুসন্ধান কৰক"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-az/values-az.xml b/android/build/intermediates/res/merged/release/values-az/values-az.xml
new file mode 100644
index 000000000..8bbbd5bf7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-az/values-az.xml
@@ -0,0 +1,32 @@
+
+
+ "Evə naviqasiya et"
+ "Yuxarı get"
+ "Digər variantlar"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Alt+"
+ "Ctrl+"
+ "silin"
+ "daxil olun"
+ "Funksiya+"
+ "Meta+"
+ "Shift+"
+ "kosmos"
+ "Sym+"
+ "Menyu+"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "%s ilə paylaşın"
+ "Yığışdırın"
+ "Axtarış"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-b+sr+Latn/values-b+sr+Latn.xml b/android/build/intermediates/res/merged/release/values-b+sr+Latn/values-b+sr+Latn.xml
new file mode 100644
index 000000000..77f07c21f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-b+sr+Latn/values-b+sr+Latn.xml
@@ -0,0 +1,32 @@
+
+
+ "Odlazak na Početnu"
+ "Kretanje nagore"
+ "Još opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Izbor aplikacije"
+ "ISKLJUČI"
+ "UKLJUČI"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "taster za razmak"
+ "Sym+"
+ "Menu+"
+ "Pretražite..."
+ "Brisanje upita"
+ "Upit za pretragu"
+ "Pretraga"
+ "Slanje upita"
+ "Glasovna pretraga"
+ "Deli sa"
+ "Deljenje sa aplikacijom %s"
+ "Skupi"
+ "Pretraži"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-be/values-be.xml b/android/build/intermediates/res/merged/release/values-be/values-be.xml
new file mode 100644
index 000000000..a0019be89
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-be/values-be.xml
@@ -0,0 +1,32 @@
+
+
+ "Перайсці на галоўную старонку"
+ "Перайсці ўверх"
+ "Дадатковыя параметры"
+ "Гатова"
+ "Прагледзець усё"
+ "Выбраць праграму"
+ "ВЫКЛ."
+ "УКЛ."
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Прабел"
+ "Sym +"
+ "Меню +"
+ "Пошук..."
+ "Выдалiць запыт"
+ "Запыт на пошук"
+ "Пошук"
+ "Адправіць запыт"
+ "Галасавы пошук"
+ "Абагуліць з"
+ "Абагуліць праз праграму %s"
+ "Згарнуць"
+ "Пошук"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-bg/values-bg.xml b/android/build/intermediates/res/merged/release/values-bg/values-bg.xml
new file mode 100644
index 000000000..ce1cb44f2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-bg/values-bg.xml
@@ -0,0 +1,32 @@
+
+
+ "Придвижване към „Начало“"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "клавиша за интервал"
+ "Sym+"
+ "Menu+"
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "Търсене"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-bn/values-bn.xml b/android/build/intermediates/res/merged/release/values-bn/values-bn.xml
new file mode 100644
index 000000000..b9e182a29
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-bn/values-bn.xml
@@ -0,0 +1,32 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরও বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান বেছে নিন"
+ "বন্ধ"
+ "চালু"
+ "Alt+"
+ "Ctrl+"
+ "মুছুন"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "স্পেস"
+ "Sym+"
+ "মেনু+"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী খুঁজুন"
+ "খুঁজুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে শেয়ার করুন"
+ "%s এর সাথে শেয়ার করুন"
+ "সঙ্কুচিত করুন"
+ "খুঁজুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-bs/values-bs.xml b/android/build/intermediates/res/merged/release/values-bs/values-bs.xml
new file mode 100644
index 000000000..bc8630d80
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-bs/values-bs.xml
@@ -0,0 +1,32 @@
+
+
+ "Vrati se na početnu stranicu"
+ "Navigiraj prema gore"
+ "Više opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Odaberite aplikaciju"
+ "ISKLJUČI"
+ "UKLJUČI"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "razmaknica"
+ "Sym+"
+ "Menu+"
+ "Pretraži..."
+ "Obriši upit"
+ "Pretraži upit"
+ "Traži"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeli sa"
+ "Dijeli koristeći aplikaciju %s"
+ "Skupi"
+ "Pretraži"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ca/values-ca.xml b/android/build/intermediates/res/merged/release/values-ca/values-ca.xml
new file mode 100644
index 000000000..833039e10
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ca/values-ca.xml
@@ -0,0 +1,32 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "DESACTIVAT"
+ "ACTIVAT"
+ "Alt+"
+ "Ctrl+"
+ "Supr"
+ "Retorn"
+ "Funció+"
+ "Meta+"
+ "Maj+"
+ "Espai"
+ "Sym+"
+ "Menú+"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "Cerca"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-cs/values-cs.xml b/android/build/intermediates/res/merged/release/values-cs/values-cs.xml
new file mode 100644
index 000000000..e0cd2287a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-cs/values-cs.xml
@@ -0,0 +1,40 @@
+
+
+ "Přejít na plochu"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYPNUTO"
+ "ZAPNUTO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mezerník"
+ "Sym+"
+ "Menu+"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet s aplikací %s"
+ "Sbalit"
+ Debug JS
+ Prozkoumat prvek
+ Unable to download JS bundle
+ Fetching JS bundle
+ Čekejte prosím...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Hledat"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-da/values-da.xml b/android/build/intermediates/res/merged/release/values-da/values-da.xml
new file mode 100644
index 000000000..1389c3ca5
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-da/values-da.xml
@@ -0,0 +1,40 @@
+
+
+ "Naviger hjem"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mellemrum"
+ "Sym+"
+ "Menu+"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspicer element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent venligst...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Søg"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-de/values-de.xml b/android/build/intermediates/res/merged/release/values-de/values-de.xml
new file mode 100644
index 000000000..701bcebda
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-de/values-de.xml
@@ -0,0 +1,40 @@
+
+
+ "Zur Startseite"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Aus"
+ "An"
+ "Alt +"
+ "Strg +"
+ "Löschen"
+ "Eingabetaste"
+ "Funktionstaste +"
+ "Meta-Taste +"
+ "Umschalttaste +"
+ "Leertaste +"
+ "Sym-Taste +"
+ "Menütaste +"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Mit %s teilen"
+ "Minimieren"
+ Debug JS
+ Element untersuchen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Bitte warten Sie ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Suchen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-el/values-el.xml b/android/build/intermediates/res/merged/release/values-el/values-el.xml
new file mode 100644
index 000000000..a1c6b5a5b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-el/values-el.xml
@@ -0,0 +1,40 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "ΕΝΕΡΓΟΠΟΙΗΣΗ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "διάστημα"
+ "Sym+"
+ "Menu+"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ Debug JS
+ Εξέταση στοιχείου
+ Unable to download JS bundle
+ Fetching JS bundle
+ Περιμένετε...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Αναζήτηση"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-en-rAU/values-en-rAU.xml b/android/build/intermediates/res/merged/release/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-en-rCA/values-en-rCA.xml b/android/build/intermediates/res/merged/release/values-en-rCA/values-en-rCA.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-en-rCA/values-en-rCA.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-en-rGB/values-en-rGB.xml b/android/build/intermediates/res/merged/release/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 000000000..1483da872
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-en-rIN/values-en-rIN.xml b/android/build/intermediates/res/merged/release/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 000000000..0b21ff79a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-en-rXC/values-en-rXC.xml b/android/build/intermediates/res/merged/release/values-en-rXC/values-en-rXC.xml
new file mode 100644
index 000000000..52e1a7d78
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-en-rXC/values-en-rXC.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Search"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-es-rES/values-es-rES.xml b/android/build/intermediates/res/merged/release/values-es-rES/values-es-rES.xml
new file mode 100644
index 000000000..32b9c3cc1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-es-rES/values-es-rES.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-es-rUS/values-es-rUS.xml b/android/build/intermediates/res/merged/release/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 000000000..edb852403
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,32 @@
+
+
+ "Navegar a la página principal"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt+"
+ "Ctrl+"
+ "borrar"
+ "intro"
+ "Función+"
+ "Meta+"
+ "Mayúscula+"
+ "espacio"
+ "Sym+"
+ "Menú+"
+ "Buscar…"
+ "Eliminar la consulta"
+ "Búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "Buscar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-es/values-es.xml b/android/build/intermediates/res/merged/release/values-es/values-es.xml
new file mode 100644
index 000000000..089c267f4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-es/values-es.xml
@@ -0,0 +1,40 @@
+
+
+ "Ir a la pantalla de inicio"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt +"
+ "Ctrl +"
+ "Eliminar"
+ "Intro"
+ "Función +"
+ "Meta +"
+ "Mayús +"
+ "Espacio"
+ "Sym +"
+ "Menú +"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ Debug JS
+ Inspeccionar elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Espera...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Buscar"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-et/values-et.xml b/android/build/intermediates/res/merged/release/values-et/values-et.xml
new file mode 100644
index 000000000..05be6e993
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-et/values-et.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigeerimine avaekraanile"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Alt +"
+ "Ctrl +"
+ "kustutamisklahv"
+ "sisestusklahv"
+ "Funktsiooniklahv +"
+ "Meta +"
+ "Tõstuklahv +"
+ "tühik"
+ "Sym +"
+ "Menüü +"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine rakendusega %s"
+ "Ahendamine"
+ "Otsing"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-eu/values-eu.xml b/android/build/intermediates/res/merged/release/values-eu/values-eu.xml
new file mode 100644
index 000000000..8c0987505
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-eu/values-eu.xml
@@ -0,0 +1,32 @@
+
+
+ "Joan orri nagusira"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+ "Alt +"
+ "Ktrl +"
+ "Ezabatu"
+ "Sartu"
+ "Funtzioa +"
+ "Meta +"
+ "Maius +"
+ "Zuriunea"
+ "Sym +"
+ "Menua +"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahozko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s aplikazioarekin"
+ "Tolestu"
+ "Bilatu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fa/values-fa.xml b/android/build/intermediates/res/merged/release/values-fa/values-fa.xml
new file mode 100644
index 000000000..90b289806
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fa/values-fa.xml
@@ -0,0 +1,32 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "تمام"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "کلید فاصله"
+ "Sym+"
+ "منو+"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی گفتاری"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "جستجو"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fb-rLL/values-fb-rLL.xml b/android/build/intermediates/res/merged/release/values-fb-rLL/values-fb-rLL.xml
new file mode 100644
index 000000000..9f4f2be96
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fb-rLL/values-fb-rLL.xml
@@ -0,0 +1,11 @@
+
+
+ Debug JS
+ (तत्व निरीक्षण गर्नुहोस्)
+ Unable to download JS bundle
+ Fetching JS bundle
+ (অনুগ্রহ করে অপেক্ষা করুন….)
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fb/values-fb.xml b/android/build/intermediates/res/merged/release/values-fb/values-fb.xml
new file mode 100644
index 000000000..718450130
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fb/values-fb.xml
@@ -0,0 +1,11 @@
+
+
+ [Debug JS#2010fa256bd28603b686da2713bb843a:1]
+ [Show Inspector#c1b106c92869437ebd88f326d632b973:1]
+ [Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]
+ [Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]
+ [Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]
+ [Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]
+ [Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]
+ [Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fi/values-fi.xml b/android/build/intermediates/res/merged/release/values-fi/values-fi.xml
new file mode 100644
index 000000000..1e7e988b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fi/values-fi.xml
@@ -0,0 +1,40 @@
+
+
+ "Siirry etusivulle"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Vaihto+"
+ "välilyönti"
+ "Sym+"
+ "Valikko+"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jaa sovelluksessa %s"
+ "Kutista"
+ Debug JS
+ Tarkista elementti
+ Unable to download JS bundle
+ Fetching JS bundle
+ Odota…
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Haku"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fr-rCA/values-fr-rCA.xml b/android/build/intermediates/res/merged/release/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 000000000..f71cf031c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,32 @@
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ "Rechercher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-fr/values-fr.xml b/android/build/intermediates/res/merged/release/values-fr/values-fr.xml
new file mode 100644
index 000000000..9baa4619d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-fr/values-fr.xml
@@ -0,0 +1,40 @@
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ Debug JS
+ Inspecter l’élément
+ Unable to download JS bundle
+ Fetching JS bundle
+ Veuillez patienter...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Rechercher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-gl/values-gl.xml b/android/build/intermediates/res/merged/release/values-gl/values-gl.xml
new file mode 100644
index 000000000..d0081c605
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-gl/values-gl.xml
@@ -0,0 +1,32 @@
+
+
+ "Ir á páxina de inicio"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "Intro"
+ "Función +"
+ "Meta +"
+ "Maiús +"
+ "espazo"
+ "Sim +"
+ "Menú +"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "Buscar"
+ ">999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-gu/values-gu.xml b/android/build/intermediates/res/merged/release/values-gu/values-gu.xml
new file mode 100644
index 000000000..0a3b83b40
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-gu/values-gu.xml
@@ -0,0 +1,32 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "ઉપર નૅવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક ઍપ્લિકેશન પસંદ કરો"
+ "બંધ"
+ "ચાલુ"
+ "Alt+"
+ "Ctrl+"
+ "ડિલીટ કરો"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Spacebar"
+ "Sym+"
+ "મેનૂ+"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%sની સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "શોધો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-h720dp-v13/values-h720dp-v13.xml b/android/build/intermediates/res/merged/release/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 000000000..e38bb90b3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-hdpi-v4/values-hdpi-v4.xml b/android/build/intermediates/res/merged/release/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 000000000..d5a138ef9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-hi/values-hi.xml b/android/build/intermediates/res/merged/release/values-hi/values-hi.xml
new file mode 100644
index 000000000..6576cb742
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-hi/values-hi.xml
@@ -0,0 +1,32 @@
+
+
+ "होम पेज पर जाएं"
+ "ऊपर जाएं"
+ "ज़्यादा विकल्प"
+ "हो गया"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "बंद"
+ "चालू"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "सर्च क्वेरी"
+ "सर्च करें"
+ "क्वेरी सबमिट करें"
+ "आवाज़ सर्च"
+ "इसके साथ शेयर करें"
+ "%s के साथ शेयर करें"
+ "छोटा करें"
+ "सर्च"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-hr/values-hr.xml b/android/build/intermediates/res/merged/release/values-hr/values-hr.xml
new file mode 100644
index 000000000..2c3e6ae8a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-hr/values-hr.xml
@@ -0,0 +1,32 @@
+
+
+ "Idi na početnu"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUČENO"
+ "UKLJUČENO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "razmaknica"
+ "Sym+"
+ "Menu+"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeli putem aplikacije %s"
+ "Sažmi"
+ "Pretraživanje"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-hu/values-hu.xml b/android/build/intermediates/res/merged/release/values-hu/values-hu.xml
new file mode 100644
index 000000000..4a9a48193
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-hu/values-hu.xml
@@ -0,0 +1,40 @@
+
+
+ "Ugrás a főoldalra"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "KI"
+ "BE"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Szóköz"
+ "Sym+"
+ "Menu+"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következő alkalmazással: %s"
+ "Összecsukás"
+ Debug JS
+ Elem megtekintése
+ Unable to download JS bundle
+ Fetching JS bundle
+ Kérjük, várj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Keresés"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-hy/values-hy.xml b/android/build/intermediates/res/merged/release/values-hy/values-hy.xml
new file mode 100644
index 000000000..3247f9af2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-hy/values-hy.xml
@@ -0,0 +1,32 @@
+
+
+ "Ուղղվել տուն"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Պատրաստ է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "ԱՆՋԱՏՎԱԾ"
+ "ՄԻԱՑՎԱԾ"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "բացատ"
+ "Sym+"
+ "Menu+"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Կիսվել"
+ "Ուղարկել %s-ին"
+ "Թաքցնել"
+ "Որոնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-in/values-in.xml b/android/build/intermediates/res/merged/release/values-in/values-in.xml
new file mode 100644
index 000000000..db17beb4b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-in/values-in.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigasi ke beranda"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "spasi"
+ "Sym+"
+ "Menu+"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan ke %s"
+ "Ciutkan"
+ Debug JS
+ Periksa Elemen
+ Unable to download JS bundle
+ Fetching JS bundle
+ Harap tunggu...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Telusuri"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-is/values-is.xml b/android/build/intermediates/res/merged/release/values-is/values-is.xml
new file mode 100644
index 000000000..58321f7b8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-is/values-is.xml
@@ -0,0 +1,32 @@
+
+
+ "Fara heim"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Aðgerðarlykill+"
+ "Meta+"
+ "Shift+"
+ "bilslá"
+ "Sym+"
+ "Valmynd+"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "Leita"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-it/values-it.xml b/android/build/intermediates/res/merged/release/values-it/values-it.xml
new file mode 100644
index 000000000..8e89b66eb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-it/values-it.xml
@@ -0,0 +1,40 @@
+
+
+ "Vai alla home page"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "OFF"
+ "ON"
+ "ALT +"
+ "CTRL +"
+ "CANC"
+ "INVIO"
+ "FUNZIONE +"
+ "META +"
+ "MAIUSC +"
+ "barra spaziatrice"
+ "SYM +"
+ "MENU +"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi tramite %s"
+ "Comprimi"
+ Debug JS
+ Esamina elemento
+ Unable to download JS bundle
+ Fetching JS bundle
+ Attendi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Ricerca"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-iw/values-iw.xml b/android/build/intermediates/res/merged/release/values-iw/values-iw.xml
new file mode 100644
index 000000000..ed74d5718
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-iw/values-iw.xml
@@ -0,0 +1,32 @@
+
+
+ "נווט לדף הבית"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "כבוי"
+ "פועל"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "מקש רווח"
+ "Sym+"
+ "תפריט+"
+ "חיפוש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חיפוש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "חיפוש"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ja/values-ja.xml b/android/build/intermediates/res/merged/release/values-ja/values-ja.xml
new file mode 100644
index 000000000..60678c3ed
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ja/values-ja.xml
@@ -0,0 +1,40 @@
+
+
+ "ホームへ移動"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "Menu+"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ Debug JS
+ 要素を確認
+ Unable to download JS bundle
+ Fetching JS bundle
+ しばらくお待ちください
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "検索"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ka/values-ka.xml b/android/build/intermediates/res/merged/release/values-ka/values-ka.xml
new file mode 100644
index 000000000..8e91c0ac9
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ka/values-ka.xml
@@ -0,0 +1,32 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "გამორთულია"
+ "ჩართულია"
+ "Alt+"
+ "Ctrl+"
+ "წაშლა"
+ "შეყვანა"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "გაუზიარეთ %s-ს"
+ "აკეცვა"
+ "ძიება"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-kk/values-kk.xml b/android/build/intermediates/res/merged/release/values-kk/values-kk.xml
new file mode 100644
index 000000000..d9596d09c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-kk/values-kk.xml
@@ -0,0 +1,32 @@
+
+
+ "Негізгі бетте қозғалу"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "бос орын"
+ "Sym+"
+ "Mәзір+"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s қолданбасымен бөлісу"
+ "Тасалау"
+ "Іздеу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-km/values-km.xml b/android/build/intermediates/res/merged/release/values-km/values-km.xml
new file mode 100644
index 000000000..57735d238
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-km/values-km.xml
@@ -0,0 +1,32 @@
+
+
+ "រកមើលទៅដើម"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "បិទ"
+ "បើក"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "ស្វែងរក"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-kn/values-kn.xml b/android/build/intermediates/res/merged/release/values-kn/values-kn.xml
new file mode 100644
index 000000000..1e2402bd6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-kn/values-kn.xml
@@ -0,0 +1,32 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಆಫ್"
+ "ಆನ್"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕಿ"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "ಹುಡುಕಿ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ko/values-ko.xml b/android/build/intermediates/res/merged/release/values-ko/values-ko.xml
new file mode 100644
index 000000000..c67693104
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ko/values-ko.xml
@@ -0,0 +1,40 @@
+
+
+ "홈 탐색"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "사용 안함"
+ "사용"
+ "Alt+"
+ "Ctrl+"
+ "삭제"
+ "입력"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "스페이스바"
+ "Sym+"
+ "Menu+"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ Debug JS
+ 요소 검사
+ Unable to download JS bundle
+ Fetching JS bundle
+ 기다려주세요...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "검색"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ky/values-ky.xml b/android/build/intermediates/res/merged/release/values-ky/values-ky.xml
new file mode 100644
index 000000000..7a8bb7f4b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ky/values-ky.xml
@@ -0,0 +1,32 @@
+
+
+ "Үйгө багыттоо"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "боштук"
+ "Sym+"
+ "Menu+"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "Издөө"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-land/values-land.xml b/android/build/intermediates/res/merged/release/values-land/values-land.xml
new file mode 100644
index 000000000..5d6577909
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-land/values-land.xml
@@ -0,0 +1,10 @@
+
+
+ 48dp
+ 12dp
+ 14dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-large-v4/values-large-v4.xml b/android/build/intermediates/res/merged/release/values-large-v4/values-large-v4.xml
new file mode 100644
index 000000000..c0ec67a31
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-large-v4/values-large-v4.xml
@@ -0,0 +1,14 @@
+
+
+ 440dp
+ 60%
+ 90%
+ 60%
+ 90%
+ 55%
+ 80%
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ldltr-v21/values-ldltr-v21.xml b/android/build/intermediates/res/merged/release/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 000000000..1bdd835a6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-lo/values-lo.xml b/android/build/intermediates/res/merged/release/values-lo/values-lo.xml
new file mode 100644
index 000000000..589107abd
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-lo/values-lo.xml
@@ -0,0 +1,32 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ປິດ"
+ "ເປີດ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນດ້ວຍ %s"
+ "ຫຍໍ້"
+ "ຊອກຫາ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-lt/values-lt.xml b/android/build/intermediates/res/merged/release/values-lt/values-lt.xml
new file mode 100644
index 000000000..6cf0bd31a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-lt/values-lt.xml
@@ -0,0 +1,32 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "IŠJUNGTA"
+ "ĮJUNGTI"
+ "„Alt“ +"
+ "„Ctrl“ +"
+ "„Delete“"
+ "„Enter“"
+ "„Function“ +"
+ "„Meta“ +"
+ "„Shift“ +"
+ "tarpo klavišas"
+ "„Sym“ +"
+ "„Menu“ +"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant programą „%s“"
+ "Sutraukti"
+ "Paieška"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-lv/values-lv.xml b/android/build/intermediates/res/merged/release/values-lv/values-lv.xml
new file mode 100644
index 000000000..cb1560186
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-lv/values-lv.xml
@@ -0,0 +1,32 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLĒGTS"
+ "IESLĒGTS"
+ "Alternēšanas taustiņš +"
+ "Vadīšanas taustiņš +"
+ "dzēšanas taustiņš"
+ "ievadīšanas taustiņš"
+ "Funkcijas taustiņš +"
+ "Meta taustiņš +"
+ "Pārslēgšanas taustiņš +"
+ "atstarpes taustiņš"
+ "Simbolu taustiņš +"
+ "Poga Izvēlne +"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar lietojumprogrammu %s"
+ "Sakļaut"
+ "Meklēt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-mk/values-mk.xml b/android/build/intermediates/res/merged/release/values-mk/values-mk.xml
new file mode 100644
index 000000000..6036a05dc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-mk/values-mk.xml
@@ -0,0 +1,32 @@
+
+
+ "Движи се кон дома"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "ИСКЛУЧЕНО"
+ "ВКЛУЧЕНО"
+ "копче Alt+"
+ "копче Ctrl+"
+ "избриши"
+ "копче enter"
+ "копче Function+"
+ "копче Meta+"
+ "копче Shift+"
+ "вселена"
+ "копче Sym+"
+ "Мени+"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Сподели со %s"
+ "Собери"
+ "Пребарај"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ml/values-ml.xml b/android/build/intermediates/res/merged/release/values-ml/values-ml.xml
new file mode 100644
index 000000000..99bafe5c2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ml/values-ml.xml
@@ -0,0 +1,32 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതൽ ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "ഓഫ്"
+ "ഓൺ"
+ "Alt+"
+ "Ctrl+"
+ "ഇല്ലാതാക്കുക"
+ "enter"
+ "ഫംഗ്ഷന്+"
+ "മെറ്റ+"
+ "Shift+"
+ "സ്പെയ്സ്"
+ "Sym+"
+ "മെനു+"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദതിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s-മായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "തിരയുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-mn/values-mn.xml b/android/build/intermediates/res/merged/release/values-mn/values-mn.xml
new file mode 100644
index 000000000..3b3db0e27
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-mn/values-mn.xml
@@ -0,0 +1,32 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "ИДЭВХГҮЙ"
+ "ИДЭВХТЭЙ"
+ "Alt+"
+ "Ctrl+"
+ "устгах"
+ "оруулах"
+ "Функц+"
+ "Мета+"
+ "Shift+"
+ "зай"
+ "Sym+"
+ "Цэс+"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "Хайлт"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-mr/values-mr.xml b/android/build/intermediates/res/merged/release/values-mr/values-mr.xml
new file mode 100644
index 000000000..3ccf8cb73
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-mr/values-mr.xml
@@ -0,0 +1,32 @@
+
+
+ "होमवर नेव्हिगेट करा"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "बंद"
+ "चालू"
+ "Alt+"
+ "Ctrl+"
+ "हटवा"
+ "एंटर करा"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "spacebar"
+ "Sym+"
+ "मेनू+"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह शेअर करा"
+ "%s सह शेअर करा"
+ "संक्षिप्त करा"
+ "शोधा"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ms/values-ms.xml b/android/build/intermediates/res/merged/release/values-ms/values-ms.xml
new file mode 100644
index 000000000..6823a82fe
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ms/values-ms.xml
@@ -0,0 +1,32 @@
+
+
+ "Navigasi skrin utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Alt+"
+ "Ctrl+"
+ "padam"
+ "enter"
+ "Fungsi+"
+ "Meta+"
+ "Shift+"
+ "ruang"
+ "Sym+"
+ "Menu+"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "Cari"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-my/values-my.xml b/android/build/intermediates/res/merged/release/values-my/values-my.xml
new file mode 100644
index 000000000..8d301b2c7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-my/values-my.xml
@@ -0,0 +1,32 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ပိတ်"
+ "ဖွင့်"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ဖြင့် မျှဝေရန်"
+ "ခေါက်ရန်"
+ "ရှာဖွေပါ"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-nb/values-nb.xml b/android/build/intermediates/res/merged/release/values-nb/values-nb.xml
new file mode 100644
index 000000000..efc117de3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-nb/values-nb.xml
@@ -0,0 +1,40 @@
+
+
+ "Gå til startsiden"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÅ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksjon+"
+ "Meta+"
+ "Shift+"
+ "mellomrom"
+ "Sym+"
+ "Meny+"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Debug JS
+ Inspiser element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vent litt ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Søk"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ne/values-ne.xml b/android/build/intermediates/res/merged/release/values-ne/values-ne.xml
new file mode 100644
index 000000000..d7b12d5ce
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ne/values-ne.xml
@@ -0,0 +1,32 @@
+
+
+ "गृह खोज्नुहोस्"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "निष्क्रिय पार्नुहोस्"
+ "सक्रिय गर्नुहोस्"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग आदान प्रदान गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "खोज्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-night-v8/values-night-v8.xml b/android/build/intermediates/res/merged/release/values-night-v8/values-night-v8.xml
new file mode 100644
index 000000000..17a211063
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-night-v8/values-night-v8.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-nl/values-nl.xml b/android/build/intermediates/res/merged/release/values-nl/values-nl.xml
new file mode 100644
index 000000000..811c958f8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-nl/values-nl.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigeren naar startpositie"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Alt +"
+ "Ctrl +"
+ "verwijderen"
+ "enter"
+ "Functie +"
+ "Meta +"
+ "Shift +"
+ "spatie"
+ "Sym +"
+ "Menu +"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Debug JS
+ Element inspecteren
+ Unable to download JS bundle
+ Fetching JS bundle
+ Even geduld...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Zoeken"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-or/values-or.xml b/android/build/intermediates/res/merged/release/values-or/values-or.xml
new file mode 100644
index 000000000..80994f898
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-or/values-or.xml
@@ -0,0 +1,32 @@
+
+
+ "ହୋମ୍ ପେଜ୍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"
+ "ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"
+ "ଅଧିକ ବିକଳ୍ପ"
+ "ହୋଇଗଲା"
+ "ସବୁ ଦେଖନ୍ତୁ"
+ "ଗୋଟିଏ ଆପ୍ ବାଛନ୍ତୁ"
+ "ଅଫ୍"
+ "ଅନ୍"
+ "Alt+"
+ "Ctrl+"
+ "ଡିଲିଟ୍"
+ "ଏଣ୍ଟର୍"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "ସ୍ପେସ୍"
+ "Sym+"
+ "ମେନୁ"
+ "ସର୍ଚ୍ଚ…"
+ "କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ"
+ "ସର୍ଚ୍ଚ କ୍ୱେରୀ"
+ "ସର୍ଚ୍ଚ କରନ୍ତୁ"
+ "କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ"
+ "ଭଏସ୍ ସର୍ଚ୍ଚ"
+ "ଏହାଙ୍କ ସହ ଶେୟାର୍ କରନ୍ତୁ"
+ "%s ସହ ଶେୟାର୍ କରନ୍ତୁ"
+ "ଛୋଟ କରନ୍ତୁ"
+ "ସର୍ଚ୍ଚ କରନ୍ତୁ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-pa/values-pa.xml b/android/build/intermediates/res/merged/release/values-pa/values-pa.xml
new file mode 100644
index 000000000..8fde8f72b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-pa/values-pa.xml
@@ -0,0 +1,32 @@
+
+
+ "ਹੋਮ \'ਤੇ ਜਾਓ"
+ "ਉੱਪਰ ਜਾਓ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਬੰਦ"
+ "ਤੇ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਖੋਜ ਪੁੱਛਗਿੱਛ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"
+ "%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "ਖੋਜੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-pl/values-pl.xml b/android/build/intermediates/res/merged/release/values-pl/values-pl.xml
new file mode 100644
index 000000000..e0df0f676
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-pl/values-pl.xml
@@ -0,0 +1,40 @@
+
+
+ "Przejdź do strony głównej"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "WYŁ."
+ "WŁ."
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Funkcyjny+"
+ "Meta+"
+ "Shift+"
+ "spacja"
+ "Sym+"
+ "Menu+"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij przez: %s"
+ "Zwiń"
+ Debug JS
+ Zbadaj element
+ Unable to download JS bundle
+ Fetching JS bundle
+ Zaczekaj...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Szukaj"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-port/values-port.xml b/android/build/intermediates/res/merged/release/values-port/values-port.xml
new file mode 100644
index 000000000..7a925dc76
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-pt-rBR/values-pt-rBR.xml b/android/build/intermediates/res/merged/release/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 000000000..8178115bc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,32 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-pt-rPT/values-pt-rPT.xml b/android/build/intermediates/res/merged/release/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 000000000..f85fbcf43
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,40 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "DESATIVADO"
+ "ATIVADO"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "enter"
+ "Função +"
+ "Meta +"
+ "Shift +"
+ "espaço"
+ "Sym +"
+ "Menu +"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com a aplicação %s"
+ "Reduzir"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarda...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-pt/values-pt.xml b/android/build/intermediates/res/merged/release/values-pt/values-pt.xml
new file mode 100644
index 000000000..5f14aeb9b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-pt/values-pt.xml
@@ -0,0 +1,40 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "DESATIVAR"
+ "ATIVAR"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Aguarde...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Pesquisar"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ro/values-ro.xml b/android/build/intermediates/res/merged/release/values-ro/values-ro.xml
new file mode 100644
index 000000000..34a7ac953
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ro/values-ro.xml
@@ -0,0 +1,40 @@
+
+
+ "Navigați la ecranul de pornire"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "DEZACTIVAȚI"
+ "ACTIVAT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funcție+"
+ "Meta+"
+ "Shift+"
+ "spațiu"
+ "Sym+"
+ "Meniu+"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți folosind %s"
+ "Restrângeți"
+ Debug JS
+ Show Inspector
+ Unable to download JS bundle
+ Fetching JS bundle
+ Please wait...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Căutați"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ru/values-ru.xml b/android/build/intermediates/res/merged/release/values-ru/values-ru.xml
new file mode 100644
index 000000000..6a4536117
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ru/values-ru.xml
@@ -0,0 +1,40 @@
+
+
+ "Перейти на главный экран"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "ОТКЛ."
+ "ВКЛ."
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Ввод"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Пробел"
+ "Sym +"
+ "Меню +"
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ приложению \"%s\""
+ "Свернуть"
+ Debug JS
+ Проверить элемент
+ Unable to download JS bundle
+ Fetching JS bundle
+ Подождите...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Поиск"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-si/values-si.xml b/android/build/intermediates/res/merged/release/values-si/values-si.xml
new file mode 100644
index 000000000..2cdb33871
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-si/values-si.xml
@@ -0,0 +1,32 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "ක්රියාවිරහිතයි"
+ "ක්රියාත්මකයි"
+ "Alt+"
+ "Ctrl+"
+ "මකන්න"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදා ගන්න"
+ "හකුළන්න"
+ "සොයන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sk/values-sk.xml b/android/build/intermediates/res/merged/release/values-sk/values-sk.xml
new file mode 100644
index 000000000..0d84abcef
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sk/values-sk.xml
@@ -0,0 +1,32 @@
+
+
+ "Prejsť na plochu"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "VYPNUTÉ"
+ "ZAPNUTÉ"
+ "Alt+"
+ "Ctrl+"
+ "odstrániť"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "medzerník"
+ "Sym+"
+ "Menu+"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať s aplikáciou %s"
+ "Zbaliť"
+ "Vyhľadávanie"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sl/values-sl.xml b/android/build/intermediates/res/merged/release/values-sl/values-sl.xml
new file mode 100644
index 000000000..86652aee1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sl/values-sl.xml
@@ -0,0 +1,32 @@
+
+
+ "Krmarjenje domov"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "preslednica"
+ "Sym +"
+ "Meni +"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z drugimi prek aplikacije %s"
+ "Strni"
+ "Iskanje"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sq/values-sq.xml b/android/build/intermediates/res/merged/release/values-sq/values-sq.xml
new file mode 100644
index 000000000..9e1578ddf
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sq/values-sq.xml
@@ -0,0 +1,32 @@
+
+
+ "Orientohu për në shtëpi"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksioni+"
+ "Meta+"
+ "Shift+"
+ "hapësirë"
+ "Sym+"
+ "Menyja+"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Ndaje me %s"
+ "Shpalos"
+ "Kërko"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sr/values-sr.xml b/android/build/intermediates/res/merged/release/values-sr/values-sr.xml
new file mode 100644
index 000000000..91ae9aff4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sr/values-sr.xml
@@ -0,0 +1,32 @@
+
+
+ "Одлазак на Почетну"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "ИСКЉУЧИ"
+ "УКЉУЧИ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "тастер за размак"
+ "Sym+"
+ "Menu+"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дељење са апликацијом %s"
+ "Скупи"
+ "Претражи"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sv/values-sv.xml b/android/build/intermediates/res/merged/release/values-sv/values-sv.xml
new file mode 100644
index 000000000..3c77cc836
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sv/values-sv.xml
@@ -0,0 +1,40 @@
+
+
+ "Visa startsidan"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÅ"
+ "Alt + "
+ "Ctrl + "
+ "delete"
+ "retur"
+ "Funktion + "
+ "Meta + "
+ "Skift + "
+ "blanksteg"
+ "Symbol + "
+ "Meny + "
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Debug JS
+ Inspektionselement
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vänta ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Sök"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sw/values-sw.xml b/android/build/intermediates/res/merged/release/values-sw/values-sw.xml
new file mode 100644
index 000000000..12b137853
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sw/values-sw.xml
@@ -0,0 +1,32 @@
+
+
+ "Nenda mwanzo"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Alt+"
+ "Ctrl+"
+ "futa"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "nafasi"
+ "Sym+"
+ "Menyu+"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki ukitumia %s"
+ "Kunja"
+ "Tafuta"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-sw600dp-v13/values-sw600dp-v13.xml b/android/build/intermediates/res/merged/release/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 000000000..38e39e768
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,25 @@
+
+
+ 24dp
+ 80dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+
+ 160dp
+ 1
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ta/values-ta.xml b/android/build/intermediates/res/merged/release/values-ta/values-ta.xml
new file mode 100644
index 000000000..d9f29b6e4
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ta/values-ta.xml
@@ -0,0 +1,32 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "மேலே செல்"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "ஆஃப்"
+ "ஆன்"
+ "ஆல்ட் மற்றும்"
+ "கண்ட்ரோல் மற்றும்"
+ "டெலிட்"
+ "எண்டர்"
+ "ஃபங்ஷன் மற்றும்"
+ "மெட்டா மற்றும்"
+ "ஷிஃப்ட் மற்றும்"
+ "ஸ்பேஸ்"
+ "சிம்பல் மற்றும்"
+ "மெனு மற்றும்"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s மூலம் பகிர்"
+ "சுருக்கு"
+ "தேடு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-te/values-te.xml b/android/build/intermediates/res/merged/release/values-te/values-te.xml
new file mode 100644
index 000000000..54f0b16a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-te/values-te.xml
@@ -0,0 +1,32 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ఆఫ్ చేయి"
+ "ఆన్ చేయి"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "స్పేస్"
+ "Sym+"
+ "Menu+"
+ "వెతుకు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "వెతుకు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయండి"
+ "కుదించండి"
+ "వెతుకు"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-th/values-th.xml b/android/build/intermediates/res/merged/release/values-th/values-th.xml
new file mode 100644
index 000000000..23602fd42
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-th/values-th.xml
@@ -0,0 +1,40 @@
+
+
+ "นำทางไปหน้าแรก"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ปิด"
+ "เปิด"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "เมนู+"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์ทาง %s"
+ "ยุบ"
+ Debug JS
+ ตรวจสอบอิลิเมนต์
+ Unable to download JS bundle
+ Fetching JS bundle
+ โปรดรอ...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "ค้นหา"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-tl/values-tl.xml b/android/build/intermediates/res/merged/release/values-tl/values-tl.xml
new file mode 100644
index 000000000..18a148fbc
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-tl/values-tl.xml
@@ -0,0 +1,32 @@
+
+
+ "Mag-navigate patungo sa home"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-OFF"
+ "I-ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi gamit ang %s"
+ "I-collapse"
+ "Maghanap"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-tr/values-tr.xml b/android/build/intermediates/res/merged/release/values-tr/values-tr.xml
new file mode 100644
index 000000000..a5a86ed65
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-tr/values-tr.xml
@@ -0,0 +1,40 @@
+
+
+ "Ana ekrana git"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Bitti"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Alt+"
+ "Ctrl+"
+ "sil"
+ "enter"
+ "İşlev+"
+ "Meta+"
+ "Üst Karakter+"
+ "boşluk"
+ "Sym+"
+ "Menü+"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ Debug JS
+ Öğeyi Denetle
+ Unable to download JS bundle
+ Fetching JS bundle
+ Lütfen bekleyin...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Ara"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-uk/values-uk.xml b/android/build/intermediates/res/merged/release/values-uk/values-uk.xml
new file mode 100644
index 000000000..c1d3da798
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-uk/values-uk.xml
@@ -0,0 +1,32 @@
+
+
+ "Перейти на головний"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "ВИМК."
+ "УВІМК."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "пробіл"
+ "Sym+"
+ "Menu+"
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Поділитися через додаток %s"
+ "Згорнути"
+ "Пошук"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-ur/values-ur.xml b/android/build/intermediates/res/merged/release/values-ur/values-ur.xml
new file mode 100644
index 000000000..6b717f4c2
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-ur/values-ur.xml
@@ -0,0 +1,32 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "آف"
+ "آن"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "تلاش"
+ "+999"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-uz/values-uz.xml b/android/build/intermediates/res/merged/release/values-uz/values-uz.xml
new file mode 100644
index 000000000..053764c5c
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-uz/values-uz.xml
@@ -0,0 +1,32 @@
+
+
+ "Boshiga o‘tish"
+ "Yuqoriga o‘tish"
+ "Boshqa parametrlar"
+ "Tayyor"
+ "Hammasi"
+ "Dastur tanlang"
+ "O‘CHIQ"
+ "YONIQ"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "Probel"
+ "Sym+"
+ "Menyu+"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Qidirish"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Ruxsat berish"
+ "%s orqali ulashish"
+ "Yig‘ish"
+ "Qidirish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v16/values-v16.xml b/android/build/intermediates/res/merged/release/values-v16/values-v16.xml
new file mode 100644
index 000000000..5ee2feb23
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v16/values-v16.xml
@@ -0,0 +1,8 @@
+
+
+ 4dp
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v17/values-v17.xml b/android/build/intermediates/res/merged/release/values-v17/values-v17.xml
new file mode 100644
index 000000000..f85a197ad
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v17/values-v17.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v18/values-v18.xml b/android/build/intermediates/res/merged/release/values-v18/values-v18.xml
new file mode 100644
index 000000000..7dad77f9e
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v21/values-v21.xml b/android/build/intermediates/res/merged/release/values-v21/values-v21.xml
new file mode 100644
index 000000000..98cfca4e1
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v21/values-v21.xml
@@ -0,0 +1,308 @@
+
+
+ @color/secondary_text_default_material_light
+ 0dp
+ 0dp
+ 12dp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v22/values-v22.xml b/android/build/intermediates/res/merged/release/values-v22/values-v22.xml
new file mode 100644
index 000000000..d4a514a5f
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v23/values-v23.xml b/android/build/intermediates/res/merged/release/values-v23/values-v23.xml
new file mode 100644
index 000000000..484f6d174
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v23/values-v23.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v24/values-v24.xml b/android/build/intermediates/res/merged/release/values-v24/values-v24.xml
new file mode 100644
index 000000000..f9b3c08d6
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v24/values-v24.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v25/values-v25.xml b/android/build/intermediates/res/merged/release/values-v25/values-v25.xml
new file mode 100644
index 000000000..483ae0c46
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v25/values-v25.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v26/values-v26.xml b/android/build/intermediates/res/merged/release/values-v26/values-v26.xml
new file mode 100644
index 000000000..8b28a4651
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v26/values-v26.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-v28/values-v28.xml b/android/build/intermediates/res/merged/release/values-v28/values-v28.xml
new file mode 100644
index 000000000..e3801cd9a
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-v28/values-v28.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-vi/values-vi.xml b/android/build/intermediates/res/merged/release/values-vi/values-vi.xml
new file mode 100644
index 000000000..e5d550ce7
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-vi/values-vi.xml
@@ -0,0 +1,40 @@
+
+
+ "Điều hướng về trang chủ"
+ "Điều hướng lên trên"
+ "Tùy chọn khác"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "phím cách"
+ "Sym+"
+ "Menu+"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ Debug JS
+ Kiểm tra phần tử
+ Unable to download JS bundle
+ Fetching JS bundle
+ Vui lòng đợi...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "Tìm kiếm"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-watch-v20/values-watch-v20.xml b/android/build/intermediates/res/merged/release/values-watch-v20/values-watch-v20.xml
new file mode 100644
index 000000000..2d85812e0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-watch-v20/values-watch-v20.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-watch-v21/values-watch-v21.xml b/android/build/intermediates/res/merged/release/values-watch-v21/values-watch-v21.xml
new file mode 100644
index 000000000..deecc9e8d
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-watch-v21/values-watch-v21.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-xlarge-v4/values-xlarge-v4.xml b/android/build/intermediates/res/merged/release/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 000000000..b499d2cf3
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,9 @@
+
+
+ 60%
+ 90%
+ 50%
+ 70%
+ 45%
+ 72%
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-zh-rCN/values-zh-rCN.xml b/android/build/intermediates/res/merged/release/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 000000000..f2e12f4a8
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,40 @@
+
+
+ "转到主屏幕"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "关闭"
+ "开启"
+ "Alt+"
+ "Ctrl+"
+ "Delete 键"
+ "Enter 键"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "空格键"
+ "Sym+"
+ "Menu+"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "使用%s分享"
+ "收起"
+ Debug JS
+ 检查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 请稍等...
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜索"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-zh-rHK/values-zh-rHK.xml b/android/build/intermediates/res/merged/release/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 000000000..8068f581b
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,40 @@
+
+
+ "瀏覽主頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "刪除"
+ "Enter 鍵"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "空白鍵"
+ "Sym +"
+ "Menu +"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "使用「%s」分享"
+ "收合"
+ Debug JS
+ 檢查項目
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜尋"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-zh-rTW/values-zh-rTW.xml b/android/build/intermediates/res/merged/release/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 000000000..68a7da6ee
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,40 @@
+
+
+ "瀏覽首頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "Delete 鍵"
+ "Enter 鍵"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "空格鍵"
+ "Sym +"
+ "Menu +"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ Debug JS
+ 檢查元素
+ Unable to download JS bundle
+ Fetching JS bundle
+ 請稍候……
+ Reload JS
+ Dev Settings
+ Catalyst Dev Settings
+ "搜尋"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values-zu/values-zu.xml b/android/build/intermediates/res/merged/release/values-zu/values-zu.xml
new file mode 100644
index 000000000..31e318ddb
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values-zu/values-zu.xml
@@ -0,0 +1,32 @@
+
+
+ "Zulazulela ekhaya"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "VALIWE"
+ "VULIWE"
+ "Alt+"
+ "Ctrl+"
+ "susa"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Imenyu+"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana ne-%s"
+ "Goqa"
+ "Sesha"
+ "999+"
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/values/values.xml b/android/build/intermediates/res/merged/release/values/values.xml
new file mode 100644
index 000000000..918184a61
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/values/values.xml
@@ -0,0 +1,4520 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #FF424242
+ #FFFFFFFF
+ #03000000
+ #37000000
+ #eecc0000
+ #14000000
+ #3F51B5
+ #303F9F
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #ff7043
+ #ff5722
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ #1F000000
+ #61000000
+ #00ffffff
+ #52000000
+ #6B000000
+ #1F000000
+ #0A000000
+ #DE000000
+ #ffffffff
+ #ff9e9e9e
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+ #e6616161
+ #e6FFFFFF
+ 16dp
+ 72dp
+ 56dp
+ 0dp
+ 0dp
+ 4dp
+ 16dp
+ 10dp
+ 6dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 720dp
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 2dp
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 8dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 8dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 4dp
+ 48dip
+ 320dip
+ 2dp
+ 2dp
+ 20dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 14sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 1dp
+ 2dp
+ 2dp
+ 4dp
+ 6dp
+ 8dp
+ 4dp
+ 2dp
+ 320dp
+ 320dp
+ 4dp
+ 168dp
+ 96dp
+ 14sp
+ 8dp
+ 56dp
+ 24dp
+ 96dp
+ 56dp
+ 8dp
+ 1dp
+ 12sp
+ 16dp
+ 64dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 16dp
+ 32dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 24dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 5dp
+ 0.30
+ 0.26
+ 8dp
+ 0dp
+ 50dp
+ 0.26
+ 0.20
+ 0.12
+ 0.50
+ 0.38
+ 0.70
+ 0.54
+ 20dp
+ 800dp
+ 120dp
+ 60dp
+ 5dp
+ 8dp
+ 0dp
+ 56dp
+ 4dp
+ 64dp
+ 0dp
+ 0dp
+ 2dp
+ 2dp
+ 2dp
+ 12dp
+ 8dp
+ 6dp
+ 0.07
+ 4dp
+ 16dp
+ 16dp
+ 4dp
+ 6dp
+ 1dp
+ 4dp
+ 8dp
+ 8dp
+ 14sp
+ 0dp
+ 1dp
+ 8dp
+ 3dp
+ 14sp
+ 6dp
+ 2dp
+ 6dp
+ 0dp
+ 22dp
+ 14dp
+ 4dp
+ 8dp
+ 3dp
+ 4dp
+ 0dp
+ 4dp
+ 12dp
+ 1dp
+ 2dp
+ 16dp
+ 56dp
+ 32dp
+ 13sp
+ 12dp
+ 8dp
+ 64dp
+ 64dp
+ 10dp
+ @dimen/notification_content_margin_start
+ 16dp
+ 2dp
+ 3dp
+ 24dp
+ 13sp
+ 10dp
+ 5dp
+ 2dp
+ 16dp
+ 8dp
+ 8dp
+ 96dp
+ 6.5dp
+ 0dp
+ 16dp
+ #3333B5E5
+ #0cffffff
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 150
+ 150
+ 127
+ 150
+ 2
+ 300
+ 320
+ 100
+ 100
+ 100
+ 250
+ 200
+ 999
+ Navigate home
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ sans-serif
+ sans-serif-medium
+ sans-serif-medium
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif-light
+ sans-serif
+ sans-serif
+ sans-serif
+ sans-serif-medium
+ Alt+
+ Ctrl+
+ delete
+ enter
+ Function+
+ Meta+
+ Shift+
+ space
+ Sym+
+ Menu+
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ MarkdownView
+ android.support.design.widget.AppBarLayout$ScrollingViewBehavior
+ android.support.design.widget.BottomSheetBehavior
+ Debug in Chrome
+ Stop Chrome Debugging
+ Show Inspector
+ Hide Inspector
+ Enable Hot Module Replacement
+ Disable Hot Module Replacement
+ Unable to download JS bundle from the dev server.\n\nTry the following to fix the issue:\n• Ensure that the packager server is running\n• Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run \'adb devices\' to see a list of connected devices\n• If you\'re on a physical device connected to the same machine, run \'adb reverse tcp:8081 tcp:8081\' to forward requests from your device\n• If your device is on the same Wi-Fi network, set \'Debug server host & port for device\' in \'Dev settings\' to your machine\'s IP address and the port of the local dev server - e.g. 10.0.1.1:8081
+ Fetching JS bundle
+ Please wait…
+ Enable Live Reload
+ Disable Live Reload
+ Enable Perf Monitor
+ Disable Perf Monitor
+ Reload JS
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Dev Settings
+ Catalyst Dev Settings
+ Start Profile
+ Stop Profile
+ Character limit exceeded %1$d of %2$d
+ %1$d / %2$d
+ android.support.design.transformation.FabTransformationScrimBehavior
+ android.support.design.transformation.FabTransformationSheetBehavior
+ android.support.design.behavior.HideBottomViewOnScrollBehavior
+ Remove %1$s
+ Show password
+ M12,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,-3z
+ M2,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 Z
+ M2,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 Z
+ M3.27,4.27 L19.74,20.74
+ Search
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/build/intermediates/res/merged/release/xml/preferences.xml b/android/build/intermediates/res/merged/release/xml/preferences.xml
new file mode 100644
index 000000000..99f5408c0
--- /dev/null
+++ b/android/build/intermediates/res/merged/release/xml/preferences.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/build/intermediates/res/resources-debug-androidTest.ap_ b/android/build/intermediates/res/resources-debug-androidTest.ap_
new file mode 100644
index 000000000..e308ce672
Binary files /dev/null and b/android/build/intermediates/res/resources-debug-androidTest.ap_ differ
diff --git a/android/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/android/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt
new file mode 100644
index 000000000..538beb45f
--- /dev/null
+++ b/android/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt
@@ -0,0 +1,1963 @@
+com.documentscanner
+anim abc_fade_in
+anim abc_fade_out
+anim abc_grow_fade_in_from_bottom
+anim abc_popup_enter
+anim abc_popup_exit
+anim abc_shrink_fade_out_from_bottom
+anim abc_slide_in_bottom
+anim abc_slide_in_top
+anim abc_slide_out_bottom
+anim abc_slide_out_top
+anim abc_tooltip_enter
+anim abc_tooltip_exit
+anim blink
+anim catalyst_push_up_in
+anim catalyst_push_up_out
+anim design_bottom_sheet_slide_in
+anim design_bottom_sheet_slide_out
+anim design_snackbar_in
+anim design_snackbar_out
+animator design_appbar_state_list_animator
+animator design_fab_hide_motion_spec
+animator design_fab_show_motion_spec
+animator mtrl_btn_state_list_anim
+animator mtrl_btn_unelevated_state_list_anim
+animator mtrl_chip_state_list_anim
+animator mtrl_fab_hide_motion_spec
+animator mtrl_fab_show_motion_spec
+animator mtrl_fab_transformation_sheet_collapse_spec
+animator mtrl_fab_transformation_sheet_expand_spec
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModePopupWindowStyle
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr activityChooserViewStyle
+attr actualImageScaleType
+attr alertDialogButtonGroupStyle
+attr alertDialogCenterButtons
+attr alertDialogStyle
+attr alertDialogTheme
+attr allowStacking
+attr alpha
+attr alphabeticModifiers
+attr arrowHeadLength
+attr arrowShaftLength
+attr autoCompleteTextViewStyle
+attr autoSizeMaxTextSize
+attr autoSizeMinTextSize
+attr autoSizePresetSizes
+attr autoSizeStepGranularity
+attr autoSizeTextType
+attr background
+attr backgroundImage
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barLength
+attr behavior_autoHide
+attr behavior_fitToContents
+attr behavior_hideable
+attr behavior_overlapTop
+attr behavior_peekHeight
+attr behavior_skipCollapsed
+attr borderWidth
+attr borderlessButtonStyle
+attr bottomAppBarStyle
+attr bottomNavigationStyle
+attr bottomSheetDialogTheme
+attr bottomSheetStyle
+attr boxBackgroundColor
+attr boxBackgroundMode
+attr boxCollapsedPaddingTop
+attr boxCornerRadiusBottomEnd
+attr boxCornerRadiusBottomStart
+attr boxCornerRadiusTopEnd
+attr boxCornerRadiusTopStart
+attr boxStrokeColor
+attr boxStrokeWidth
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonGravity
+attr buttonIconDimen
+attr buttonPanelSideLayout
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr camera_id
+attr cardBackgroundColor
+attr cardCornerRadius
+attr cardElevation
+attr cardMaxElevation
+attr cardPreventCornerOverlap
+attr cardUseCompatPadding
+attr cardViewStyle
+attr checkboxStyle
+attr checkedChip
+attr checkedIcon
+attr checkedIconEnabled
+attr checkedIconVisible
+attr checkedTextViewStyle
+attr chipBackgroundColor
+attr chipCornerRadius
+attr chipEndPadding
+attr chipGroupStyle
+attr chipIcon
+attr chipIconEnabled
+attr chipIconSize
+attr chipIconTint
+attr chipIconVisible
+attr chipMinHeight
+attr chipSpacing
+attr chipSpacingHorizontal
+attr chipSpacingVertical
+attr chipStandaloneStyle
+attr chipStartPadding
+attr chipStrokeColor
+attr chipStrokeWidth
+attr chipStyle
+attr closeIcon
+attr closeIconEnabled
+attr closeIconEndPadding
+attr closeIconSize
+attr closeIconStartPadding
+attr closeIconTint
+attr closeIconVisible
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr collapsedTitleGravity
+attr collapsedTitleTextAppearance
+attr color
+attr colorAccent
+attr colorBackgroundFloating
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorError
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSecondary
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentDescription
+attr contentInsetEnd
+attr contentInsetEndWithActions
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr contentInsetStartWithNavigation
+attr contentPadding
+attr contentPaddingBottom
+attr contentPaddingLeft
+attr contentPaddingRight
+attr contentPaddingTop
+attr contentScrim
+attr controlBackground
+attr coordinatorLayoutStyle
+attr cornerRadius
+attr counterEnabled
+attr counterMaxLength
+attr counterOverflowTextAppearance
+attr counterTextAppearance
+attr customNavigationLayout
+attr defaultQueryHint
+attr dialogCornerRadius
+attr dialogPreferredPadding
+attr dialogTheme
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr enforceMaterialTheme
+attr enforceTextAppearance
+attr errorEnabled
+attr errorTextAppearance
+attr expandActivityOverflowButtonDrawable
+attr expanded
+attr expandedTitleGravity
+attr expandedTitleMargin
+attr expandedTitleMarginBottom
+attr expandedTitleMarginEnd
+attr expandedTitleMarginStart
+attr expandedTitleMarginTop
+attr expandedTitleTextAppearance
+attr fabAlignmentMode
+attr fabCradleMargin
+attr fabCradleRoundedCornerRadius
+attr fabCradleVerticalOffset
+attr fabCustomSize
+attr fabSize
+attr fadeDuration
+attr failureImage
+attr failureImageScaleType
+attr fastScrollEnabled
+attr fastScrollHorizontalThumbDrawable
+attr fastScrollHorizontalTrackDrawable
+attr fastScrollVerticalThumbDrawable
+attr fastScrollVerticalTrackDrawable
+attr firstBaselineToTopHeight
+attr floatingActionButtonStyle
+attr font
+attr fontFamily
+attr fontProviderAuthority
+attr fontProviderCerts
+attr fontProviderFetchStrategy
+attr fontProviderFetchTimeout
+attr fontProviderPackage
+attr fontProviderQuery
+attr fontStyle
+attr fontVariationSettings
+attr fontWeight
+attr foregroundInsidePadding
+attr gapBetweenBars
+attr goIcon
+attr headerLayout
+attr height
+attr helperText
+attr helperTextEnabled
+attr helperTextTextAppearance
+attr hideMotionSpec
+attr hideOnContentScroll
+attr hideOnScroll
+attr hintAnimationEnabled
+attr hintEnabled
+attr hintTextAppearance
+attr homeAsUpIndicator
+attr homeLayout
+attr hoveredFocusedTranslationZ
+attr icon
+attr iconEndPadding
+attr iconGravity
+attr iconPadding
+attr iconSize
+attr iconStartPadding
+attr iconTint
+attr iconTintMode
+attr iconifiedByDefault
+attr imageButtonStyle
+attr indeterminateProgressStyle
+attr initialActivityCount
+attr insetForeground
+attr isLightTheme
+attr itemBackground
+attr itemHorizontalPadding
+attr itemHorizontalTranslationEnabled
+attr itemIconPadding
+attr itemIconSize
+attr itemIconTint
+attr itemPadding
+attr itemSpacing
+attr itemTextAppearance
+attr itemTextAppearanceActive
+attr itemTextAppearanceInactive
+attr itemTextColor
+attr keylines
+attr labelVisibilityMode
+attr lastBaselineToBottomHeight
+attr layout
+attr layoutManager
+attr layout_anchor
+attr layout_anchorGravity
+attr layout_behavior
+attr layout_collapseMode
+attr layout_collapseParallaxMultiplier
+attr layout_dodgeInsetEdges
+attr layout_insetEdge
+attr layout_keyline
+attr layout_scrollFlags
+attr layout_scrollInterpolator
+attr liftOnScroll
+attr lineHeight
+attr lineSpacing
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listItemLayout
+attr listLayout
+attr listMenuViewStyle
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr logoDescription
+attr materialButtonStyle
+attr materialCardViewStyle
+attr maxActionInlineWidth
+attr maxButtonHeight
+attr maxImageSize
+attr measureWithLargestChild
+attr menu
+attr multiChoiceItemLayout
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr navigationViewStyle
+attr numericModifiers
+attr overlapAnchor
+attr overlayImage
+attr paddingBottomNoButtons
+attr paddingEnd
+attr paddingStart
+attr paddingTopNoTitle
+attr panelBackground
+attr panelMenuListTheme
+attr panelMenuListWidth
+attr passwordToggleContentDescription
+attr passwordToggleDrawable
+attr passwordToggleEnabled
+attr passwordToggleTint
+attr passwordToggleTintMode
+attr placeholderImage
+attr placeholderImageScaleType
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr pressedStateOverlayImage
+attr pressedTranslationZ
+attr progressBarAutoRotateInterval
+attr progressBarImage
+attr progressBarImageScaleType
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr ratingBarStyleIndicator
+attr ratingBarStyleSmall
+attr retryImage
+attr retryImageScaleType
+attr reverseLayout
+attr rippleColor
+attr roundAsCircle
+attr roundBottomLeft
+attr roundBottomRight
+attr roundTopLeft
+attr roundTopRight
+attr roundWithOverlayColor
+attr roundedCornerRadius
+attr roundingBorderColor
+attr roundingBorderWidth
+attr scrimAnimationDuration
+attr scrimBackground
+attr scrimVisibleHeightTrigger
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr seekBarStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showMotionSpec
+attr showText
+attr showTitle
+attr show_fps
+attr singleChoiceItemLayout
+attr singleLine
+attr singleSelection
+attr snackbarButtonStyle
+attr snackbarStyle
+attr spanCount
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitTrack
+attr srcCompat
+attr stackFromEnd
+attr state_above_anchor
+attr state_collapsed
+attr state_collapsible
+attr state_liftable
+attr state_lifted
+attr statusBarBackground
+attr statusBarScrim
+attr strokeColor
+attr strokeWidth
+attr subMenuArrow
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suggestionRowLayout
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr tabBackground
+attr tabContentStart
+attr tabGravity
+attr tabIconTint
+attr tabIconTintMode
+attr tabIndicator
+attr tabIndicatorAnimationDuration
+attr tabIndicatorColor
+attr tabIndicatorFullWidth
+attr tabIndicatorGravity
+attr tabIndicatorHeight
+attr tabInlineLabel
+attr tabMaxWidth
+attr tabMinWidth
+attr tabMode
+attr tabPadding
+attr tabPaddingBottom
+attr tabPaddingEnd
+attr tabPaddingStart
+attr tabPaddingTop
+attr tabRippleColor
+attr tabSelectedTextColor
+attr tabStyle
+attr tabTextAppearance
+attr tabTextColor
+attr tabUnboundedRipple
+attr textAllCaps
+attr textAppearanceBody1
+attr textAppearanceBody2
+attr textAppearanceButton
+attr textAppearanceCaption
+attr textAppearanceHeadline1
+attr textAppearanceHeadline2
+attr textAppearanceHeadline3
+attr textAppearanceHeadline4
+attr textAppearanceHeadline5
+attr textAppearanceHeadline6
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSecondary
+attr textAppearanceListItemSmall
+attr textAppearanceOverline
+attr textAppearancePopupMenuHeader
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textAppearanceSubtitle1
+attr textAppearanceSubtitle2
+attr textColorAlertDialogListItem
+attr textColorSearchUrl
+attr textEndPadding
+attr textInputStyle
+attr textStartPadding
+attr theme
+attr thickness
+attr thumbTextPadding
+attr thumbTint
+attr thumbTintMode
+attr tickMark
+attr tickMarkTint
+attr tickMarkTintMode
+attr tint
+attr tintMode
+attr title
+attr titleEnabled
+attr titleMargin
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextStyle
+attr toolbarId
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr tooltipForegroundColor
+attr tooltipFrameBackground
+attr tooltipText
+attr track
+attr trackTint
+attr trackTintMode
+attr ttcIndex
+attr useCompatPadding
+attr viewAspectRatio
+attr viewInflaterClass
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowFixedHeightMajor
+attr windowFixedHeightMinor
+attr windowFixedWidthMajor
+attr windowFixedWidthMinor
+attr windowMinWidthMajor
+attr windowMinWidthMinor
+attr windowNoTitle
+bool abc_action_bar_embed_tabs
+bool abc_action_bar_embed_tabs_pre_jb
+bool abc_action_bar_expanded_action_views_exclusive
+bool abc_allow_stacked_button_bar
+bool abc_config_actionMenuItemAllCaps
+bool abc_config_allowActionMenuItemTextWithIcon
+bool abc_config_closeDialogWhenTouchOutside
+bool abc_config_showMenuShortcutsWhenKeyboardPresent
+bool mtrl_btn_textappearance_all_caps
+color abc_background_cache_hint_selector_material_dark
+color abc_background_cache_hint_selector_material_light
+color abc_btn_colored_borderless_text_material
+color abc_btn_colored_text_material
+color abc_color_highlight_material
+color abc_hint_foreground_material_dark
+color abc_hint_foreground_material_light
+color abc_input_method_navigation_guard
+color abc_primary_text_disable_only_material_dark
+color abc_primary_text_disable_only_material_light
+color abc_primary_text_material_dark
+color abc_primary_text_material_light
+color abc_search_url_text
+color abc_search_url_text_normal
+color abc_search_url_text_pressed
+color abc_search_url_text_selected
+color abc_secondary_text_material_dark
+color abc_secondary_text_material_light
+color abc_tint_btn_checkable
+color abc_tint_default
+color abc_tint_edittext
+color abc_tint_seek_thumb
+color abc_tint_spinner
+color abc_tint_switch_track
+color accent_material_dark
+color accent_material_light
+color background_floating_material_dark
+color background_floating_material_light
+color background_material_dark
+color background_material_light
+color bright_foreground_disabled_material_dark
+color bright_foreground_disabled_material_light
+color bright_foreground_inverse_material_dark
+color bright_foreground_inverse_material_light
+color bright_foreground_material_dark
+color bright_foreground_material_light
+color button_material_dark
+color button_material_light
+color cardview_dark_background
+color cardview_light_background
+color cardview_shadow_end_color
+color cardview_shadow_start_color
+color catalyst_redbox_background
+color design_bottom_navigation_shadow_color
+color design_default_color_primary
+color design_default_color_primary_dark
+color design_error
+color design_fab_shadow_end_color
+color design_fab_shadow_mid_color
+color design_fab_shadow_start_color
+color design_fab_stroke_end_inner_color
+color design_fab_stroke_end_outer_color
+color design_fab_stroke_top_inner_color
+color design_fab_stroke_top_outer_color
+color design_snackbar_background_color
+color design_tint_password_toggle
+color dim_foreground_disabled_material_dark
+color dim_foreground_disabled_material_light
+color dim_foreground_material_dark
+color dim_foreground_material_light
+color error_color_material_dark
+color error_color_material_light
+color foreground_material_dark
+color foreground_material_light
+color highlighted_text_material_dark
+color highlighted_text_material_light
+color hint_foreground_material_dark
+color hint_foreground_material_light
+color material_blue_grey_800
+color material_blue_grey_900
+color material_blue_grey_950
+color material_deep_teal_200
+color material_deep_teal_500
+color material_grey_100
+color material_grey_300
+color material_grey_50
+color material_grey_600
+color material_grey_800
+color material_grey_850
+color material_grey_900
+color mtrl_bottom_nav_colored_item_tint
+color mtrl_bottom_nav_item_tint
+color mtrl_btn_bg_color_disabled
+color mtrl_btn_bg_color_selector
+color mtrl_btn_ripple_color
+color mtrl_btn_stroke_color_selector
+color mtrl_btn_text_btn_ripple_color
+color mtrl_btn_text_color_disabled
+color mtrl_btn_text_color_selector
+color mtrl_btn_transparent_bg_color
+color mtrl_chip_background_color
+color mtrl_chip_close_icon_tint
+color mtrl_chip_ripple_color
+color mtrl_chip_text_color
+color mtrl_fab_ripple_color
+color mtrl_scrim_color
+color mtrl_tabs_colored_ripple_color
+color mtrl_tabs_icon_color_selector
+color mtrl_tabs_icon_color_selector_colored
+color mtrl_tabs_legacy_text_color_selector
+color mtrl_tabs_ripple_color
+color mtrl_text_btn_text_color_selector
+color mtrl_textinput_default_box_stroke_color
+color mtrl_textinput_disabled_color
+color mtrl_textinput_filled_box_default_background_color
+color mtrl_textinput_hovered_box_stroke_color
+color notification_action_color_filter
+color notification_icon_bg_color
+color primary_dark_material_dark
+color primary_dark_material_light
+color primary_material_dark
+color primary_material_light
+color primary_text_default_material_dark
+color primary_text_default_material_light
+color primary_text_disabled_material_dark
+color primary_text_disabled_material_light
+color ripple_material_dark
+color ripple_material_light
+color secondary_text_default_material_dark
+color secondary_text_default_material_light
+color secondary_text_disabled_material_dark
+color secondary_text_disabled_material_light
+color switch_thumb_disabled_material_dark
+color switch_thumb_disabled_material_light
+color switch_thumb_material_dark
+color switch_thumb_material_light
+color switch_thumb_normal_material_dark
+color switch_thumb_normal_material_light
+color tooltip_background_dark
+color tooltip_background_light
+dimen abc_action_bar_content_inset_material
+dimen abc_action_bar_content_inset_with_nav
+dimen abc_action_bar_default_height_material
+dimen abc_action_bar_default_padding_end_material
+dimen abc_action_bar_default_padding_start_material
+dimen abc_action_bar_elevation_material
+dimen abc_action_bar_icon_vertical_padding_material
+dimen abc_action_bar_overflow_padding_end_material
+dimen abc_action_bar_overflow_padding_start_material
+dimen abc_action_bar_progress_bar_size
+dimen abc_action_bar_stacked_max_height
+dimen abc_action_bar_stacked_tab_max_width
+dimen abc_action_bar_subtitle_bottom_margin_material
+dimen abc_action_bar_subtitle_top_margin_material
+dimen abc_action_button_min_height_material
+dimen abc_action_button_min_width_material
+dimen abc_action_button_min_width_overflow_material
+dimen abc_alert_dialog_button_bar_height
+dimen abc_alert_dialog_button_dimen
+dimen abc_button_inset_horizontal_material
+dimen abc_button_inset_vertical_material
+dimen abc_button_padding_horizontal_material
+dimen abc_button_padding_vertical_material
+dimen abc_cascading_menus_min_smallest_width
+dimen abc_config_prefDialogWidth
+dimen abc_control_corner_material
+dimen abc_control_inset_material
+dimen abc_control_padding_material
+dimen abc_dialog_corner_radius_material
+dimen abc_dialog_fixed_height_major
+dimen abc_dialog_fixed_height_minor
+dimen abc_dialog_fixed_width_major
+dimen abc_dialog_fixed_width_minor
+dimen abc_dialog_list_padding_bottom_no_buttons
+dimen abc_dialog_list_padding_top_no_title
+dimen abc_dialog_list_padding_vertical_material
+dimen abc_dialog_min_width_major
+dimen abc_dialog_min_width_minor
+dimen abc_dialog_padding_material
+dimen abc_dialog_padding_top_material
+dimen abc_dialog_title_divider_material
+dimen abc_disabled_alpha_material_dark
+dimen abc_disabled_alpha_material_light
+dimen abc_dropdownitem_icon_width
+dimen abc_dropdownitem_text_padding_left
+dimen abc_dropdownitem_text_padding_right
+dimen abc_edit_text_inset_bottom_material
+dimen abc_edit_text_inset_horizontal_material
+dimen abc_edit_text_inset_top_material
+dimen abc_floating_window_z
+dimen abc_list_item_padding_horizontal_material
+dimen abc_panel_menu_list_width
+dimen abc_progress_bar_height_material
+dimen abc_search_view_preferred_height
+dimen abc_search_view_preferred_width
+dimen abc_search_view_text_min_width
+dimen abc_seekbar_track_background_height_material
+dimen abc_seekbar_track_progress_height_material
+dimen abc_select_dialog_padding_start_material
+dimen abc_switch_padding
+dimen abc_text_size_body_1_material
+dimen abc_text_size_body_2_material
+dimen abc_text_size_button_material
+dimen abc_text_size_caption_material
+dimen abc_text_size_display_1_material
+dimen abc_text_size_display_2_material
+dimen abc_text_size_display_3_material
+dimen abc_text_size_display_4_material
+dimen abc_text_size_headline_material
+dimen abc_text_size_large_material
+dimen abc_text_size_medium_material
+dimen abc_text_size_menu_header_material
+dimen abc_text_size_menu_material
+dimen abc_text_size_small_material
+dimen abc_text_size_subhead_material
+dimen abc_text_size_subtitle_material_toolbar
+dimen abc_text_size_title_material
+dimen abc_text_size_title_material_toolbar
+dimen cardview_compat_inset_shadow
+dimen cardview_default_elevation
+dimen cardview_default_radius
+dimen compat_button_inset_horizontal_material
+dimen compat_button_inset_vertical_material
+dimen compat_button_padding_horizontal_material
+dimen compat_button_padding_vertical_material
+dimen compat_control_corner_material
+dimen compat_notification_large_icon_max_height
+dimen compat_notification_large_icon_max_width
+dimen design_appbar_elevation
+dimen design_bottom_navigation_active_item_max_width
+dimen design_bottom_navigation_active_item_min_width
+dimen design_bottom_navigation_active_text_size
+dimen design_bottom_navigation_elevation
+dimen design_bottom_navigation_height
+dimen design_bottom_navigation_icon_size
+dimen design_bottom_navigation_item_max_width
+dimen design_bottom_navigation_item_min_width
+dimen design_bottom_navigation_margin
+dimen design_bottom_navigation_shadow_height
+dimen design_bottom_navigation_text_size
+dimen design_bottom_sheet_modal_elevation
+dimen design_bottom_sheet_peek_height_min
+dimen design_fab_border_width
+dimen design_fab_elevation
+dimen design_fab_image_size
+dimen design_fab_size_mini
+dimen design_fab_size_normal
+dimen design_fab_translation_z_hovered_focused
+dimen design_fab_translation_z_pressed
+dimen design_navigation_elevation
+dimen design_navigation_icon_padding
+dimen design_navigation_icon_size
+dimen design_navigation_item_horizontal_padding
+dimen design_navigation_item_icon_padding
+dimen design_navigation_max_width
+dimen design_navigation_padding_bottom
+dimen design_navigation_separator_vertical_padding
+dimen design_snackbar_action_inline_max_width
+dimen design_snackbar_background_corner_radius
+dimen design_snackbar_elevation
+dimen design_snackbar_extra_spacing_horizontal
+dimen design_snackbar_max_width
+dimen design_snackbar_min_width
+dimen design_snackbar_padding_horizontal
+dimen design_snackbar_padding_vertical
+dimen design_snackbar_padding_vertical_2lines
+dimen design_snackbar_text_size
+dimen design_tab_max_width
+dimen design_tab_scrollable_min_width
+dimen design_tab_text_size
+dimen design_tab_text_size_2line
+dimen design_textinput_caption_translate_y
+dimen dialog_fixed_height_major
+dimen dialog_fixed_height_minor
+dimen dialog_fixed_width_major
+dimen dialog_fixed_width_minor
+dimen disabled_alpha_material_dark
+dimen disabled_alpha_material_light
+dimen fastscroll_default_thickness
+dimen fastscroll_margin
+dimen fastscroll_minimum_range
+dimen highlight_alpha_material_colored
+dimen highlight_alpha_material_dark
+dimen highlight_alpha_material_light
+dimen hint_alpha_material_dark
+dimen hint_alpha_material_light
+dimen hint_pressed_alpha_material_dark
+dimen hint_pressed_alpha_material_light
+dimen item_touch_helper_max_drag_scroll_per_frame
+dimen item_touch_helper_swipe_escape_max_velocity
+dimen item_touch_helper_swipe_escape_velocity
+dimen mtrl_bottomappbar_fabOffsetEndMode
+dimen mtrl_bottomappbar_fab_cradle_margin
+dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius
+dimen mtrl_bottomappbar_fab_cradle_vertical_offset
+dimen mtrl_bottomappbar_height
+dimen mtrl_btn_corner_radius
+dimen mtrl_btn_dialog_btn_min_width
+dimen mtrl_btn_disabled_elevation
+dimen mtrl_btn_disabled_z
+dimen mtrl_btn_elevation
+dimen mtrl_btn_focused_z
+dimen mtrl_btn_hovered_z
+dimen mtrl_btn_icon_btn_padding_left
+dimen mtrl_btn_icon_padding
+dimen mtrl_btn_inset
+dimen mtrl_btn_letter_spacing
+dimen mtrl_btn_padding_bottom
+dimen mtrl_btn_padding_left
+dimen mtrl_btn_padding_right
+dimen mtrl_btn_padding_top
+dimen mtrl_btn_pressed_z
+dimen mtrl_btn_stroke_size
+dimen mtrl_btn_text_btn_icon_padding
+dimen mtrl_btn_text_btn_padding_left
+dimen mtrl_btn_text_btn_padding_right
+dimen mtrl_btn_text_size
+dimen mtrl_btn_z
+dimen mtrl_card_elevation
+dimen mtrl_card_spacing
+dimen mtrl_chip_pressed_translation_z
+dimen mtrl_chip_text_size
+dimen mtrl_fab_elevation
+dimen mtrl_fab_translation_z_hovered_focused
+dimen mtrl_fab_translation_z_pressed
+dimen mtrl_navigation_elevation
+dimen mtrl_navigation_item_horizontal_padding
+dimen mtrl_navigation_item_icon_padding
+dimen mtrl_snackbar_background_corner_radius
+dimen mtrl_snackbar_margin
+dimen mtrl_textinput_box_bottom_offset
+dimen mtrl_textinput_box_corner_radius_medium
+dimen mtrl_textinput_box_corner_radius_small
+dimen mtrl_textinput_box_label_cutout_padding
+dimen mtrl_textinput_box_padding_end
+dimen mtrl_textinput_box_stroke_width_default
+dimen mtrl_textinput_box_stroke_width_focused
+dimen mtrl_textinput_outline_box_expanded_padding
+dimen mtrl_toolbar_default_height
+dimen notification_action_icon_size
+dimen notification_action_text_size
+dimen notification_big_circle_margin
+dimen notification_content_margin_start
+dimen notification_large_icon_height
+dimen notification_large_icon_width
+dimen notification_main_column_padding_top
+dimen notification_media_narrow_margin
+dimen notification_right_icon_size
+dimen notification_right_side_padding_top
+dimen notification_small_icon_background_padding
+dimen notification_small_icon_size_as_large
+dimen notification_subtext_size
+dimen notification_top_pad
+dimen notification_top_pad_large_text
+dimen tooltip_corner_radius
+dimen tooltip_horizontal_padding
+dimen tooltip_margin
+dimen tooltip_precise_anchor_extra_offset
+dimen tooltip_precise_anchor_threshold
+dimen tooltip_vertical_padding
+dimen tooltip_y_offset_non_touch
+dimen tooltip_y_offset_touch
+drawable abc_ab_share_pack_mtrl_alpha
+drawable abc_action_bar_item_background_material
+drawable abc_btn_borderless_material
+drawable abc_btn_check_material
+drawable abc_btn_check_to_on_mtrl_000
+drawable abc_btn_check_to_on_mtrl_015
+drawable abc_btn_colored_material
+drawable abc_btn_default_mtrl_shape
+drawable abc_btn_radio_material
+drawable abc_btn_radio_to_on_mtrl_000
+drawable abc_btn_radio_to_on_mtrl_015
+drawable abc_btn_rating_star_off_mtrl_alpha
+drawable abc_btn_rating_star_on_mtrl_alpha
+drawable abc_btn_switch_to_on_mtrl_00001
+drawable abc_btn_switch_to_on_mtrl_00012
+drawable abc_cab_background_internal_bg
+drawable abc_cab_background_top_material
+drawable abc_cab_background_top_mtrl_alpha
+drawable abc_control_background_material
+drawable abc_dialog_material_background
+drawable abc_dialog_material_background_dark
+drawable abc_dialog_material_background_light
+drawable abc_edit_text_material
+drawable abc_ic_ab_back_material
+drawable abc_ic_ab_back_mtrl_am_alpha
+drawable abc_ic_arrow_drop_right_black_24dp
+drawable abc_ic_clear_material
+drawable abc_ic_clear_mtrl_alpha
+drawable abc_ic_commit_search_api_mtrl_alpha
+drawable abc_ic_go_search_api_material
+drawable abc_ic_go_search_api_mtrl_alpha
+drawable abc_ic_menu_copy_mtrl_am_alpha
+drawable abc_ic_menu_cut_mtrl_alpha
+drawable abc_ic_menu_moreoverflow_mtrl_alpha
+drawable abc_ic_menu_overflow_material
+drawable abc_ic_menu_paste_mtrl_am_alpha
+drawable abc_ic_menu_selectall_mtrl_alpha
+drawable abc_ic_menu_share_mtrl_alpha
+drawable abc_ic_search_api_material
+drawable abc_ic_search_api_mtrl_alpha
+drawable abc_ic_star_black_16dp
+drawable abc_ic_star_black_36dp
+drawable abc_ic_star_black_48dp
+drawable abc_ic_star_half_black_16dp
+drawable abc_ic_star_half_black_36dp
+drawable abc_ic_star_half_black_48dp
+drawable abc_ic_voice_search_api_material
+drawable abc_ic_voice_search_api_mtrl_alpha
+drawable abc_item_background_holo_dark
+drawable abc_item_background_holo_light
+drawable abc_list_divider_material
+drawable abc_list_divider_mtrl_alpha
+drawable abc_list_focused_holo
+drawable abc_list_longpressed_holo
+drawable abc_list_pressed_holo_dark
+drawable abc_list_pressed_holo_light
+drawable abc_list_selector_background_transition_holo_dark
+drawable abc_list_selector_background_transition_holo_light
+drawable abc_list_selector_disabled_holo_dark
+drawable abc_list_selector_disabled_holo_light
+drawable abc_list_selector_holo_dark
+drawable abc_list_selector_holo_light
+drawable abc_menu_hardkey_panel_mtrl_mult
+drawable abc_popup_background_mtrl_mult
+drawable abc_ratingbar_full_material
+drawable abc_ratingbar_indicator_material
+drawable abc_ratingbar_material
+drawable abc_ratingbar_small_material
+drawable abc_scrubber_control_off_mtrl_alpha
+drawable abc_scrubber_control_to_pressed_mtrl_000
+drawable abc_scrubber_control_to_pressed_mtrl_005
+drawable abc_scrubber_primary_mtrl_alpha
+drawable abc_scrubber_track_mtrl_alpha
+drawable abc_seekbar_thumb_material
+drawable abc_seekbar_tick_mark_material
+drawable abc_seekbar_track_material
+drawable abc_spinner_mtrl_am_alpha
+drawable abc_spinner_textfield_background_material
+drawable abc_switch_thumb_material
+drawable abc_switch_track_mtrl_alpha
+drawable abc_tab_indicator_material
+drawable abc_tab_indicator_mtrl_alpha
+drawable abc_text_cursor_material
+drawable abc_text_select_handle_left_mtrl_dark
+drawable abc_text_select_handle_left_mtrl_light
+drawable abc_text_select_handle_middle_mtrl_dark
+drawable abc_text_select_handle_middle_mtrl_light
+drawable abc_text_select_handle_right_mtrl_dark
+drawable abc_text_select_handle_right_mtrl_light
+drawable abc_textfield_activated_mtrl_alpha
+drawable abc_textfield_default_mtrl_alpha
+drawable abc_textfield_search_activated_mtrl_alpha
+drawable abc_textfield_search_default_mtrl_alpha
+drawable abc_textfield_search_material
+drawable abc_vector_test
+drawable avd_hide_password
+drawable avd_show_password
+drawable design_bottom_navigation_item_background
+drawable design_fab_background
+drawable design_ic_visibility
+drawable design_ic_visibility_off
+drawable design_password_eye
+drawable design_snackbar_background
+drawable ic_mtrl_chip_checked_black
+drawable ic_mtrl_chip_checked_circle
+drawable ic_mtrl_chip_close_circle
+drawable mtrl_snackbar_background
+drawable mtrl_tabs_default_indicator
+drawable navigation_empty_icon
+drawable notification_action_background
+drawable notification_bg
+drawable notification_bg_low
+drawable notification_bg_low_normal
+drawable notification_bg_low_pressed
+drawable notification_bg_normal
+drawable notification_bg_normal_pressed
+drawable notification_icon_background
+drawable notification_template_icon_bg
+drawable notification_template_icon_low_bg
+drawable notification_tile_bg
+drawable notify_panel_notification_icon_bg
+drawable tooltip_frame_dark
+drawable tooltip_frame_light
+id action0
+id action_bar
+id action_bar_activity_content
+id action_bar_container
+id action_bar_root
+id action_bar_spinner
+id action_bar_subtitle
+id action_bar_title
+id action_container
+id action_context_bar
+id action_divider
+id action_image
+id action_menu_divider
+id action_menu_presenter
+id action_mode_bar
+id action_mode_bar_stub
+id action_mode_close_button
+id action_text
+id actions
+id activity_chooser_view_content
+id add
+id alertTitle
+id always
+id any
+id async
+id auto
+id back
+id beginning
+id blink_view
+id blocking
+id bottom
+id buttonPanel
+id cancel_action
+id catalyst_redbox_title
+id center
+id centerCrop
+id centerInside
+id checkbox
+id chronometer
+id collapseActionView
+id container
+id content
+id contentPanel
+id coordinator
+id custom
+id customPanel
+id decor_content_parent
+id default_activity_button
+id design_bottom_sheet
+id design_menu_item_action_area
+id design_menu_item_action_area_stub
+id design_menu_item_text
+id design_navigation_view
+id disableHome
+id edit_query
+id end
+id end_padder
+id expand_activities_button
+id expanded_menu
+id fill
+id filled
+id fitCenter
+id fitEnd
+id fitStart
+id fitXY
+id fixed
+id focusCrop
+id forever
+id fps_text
+id front
+id ghost_view
+id group_divider
+id home
+id homeAsUp
+id hud
+id icon
+id icon_group
+id ifRoom
+id image
+id info
+id italic
+id item_touch_helper_previous_elevation
+id labeled
+id largeLabel
+id left
+id line1
+id line3
+id listMode
+id list_item
+id masked
+id media_actions
+id message
+id middle
+id mini
+id mtrl_child_content_container
+id mtrl_internal_children_alpha_tag
+id multiply
+id navigation_header_container
+id never
+id none
+id normal
+id notification_background
+id notification_main_column
+id notification_main_column_container
+id outline
+id parallax
+id parentPanel
+id parent_matrix
+id pin
+id progress_circular
+id progress_horizontal
+id radio
+id right
+id right_icon
+id right_side
+id rn_frame_file
+id rn_frame_method
+id rn_redbox_reloadjs
+id rn_redbox_stack
+id save_image_matrix
+id save_non_transition_alpha
+id save_scale_type
+id scannedAnimation
+id screen
+id scrollIndicatorDown
+id scrollIndicatorUp
+id scrollView
+id scrollable
+id search_badge
+id search_bar
+id search_button
+id search_close_btn
+id search_edit_frame
+id search_go_btn
+id search_mag_icon
+id search_plate
+id search_src_text
+id search_voice_btn
+id select_dialog_listview
+id selected
+id shortcut
+id showCustom
+id showHome
+id showTitle
+id smallLabel
+id snackbar_action
+id snackbar_text
+id spacer
+id split_action_bar
+id src_atop
+id src_in
+id src_over
+id start
+id status_bar_latest_event_content
+id stretch
+id submenuarrow
+id submit_area
+id surfaceView
+id tabMode
+id tag_transition_group
+id tag_unhandled_key_event_manager
+id tag_unhandled_key_listeners
+id text
+id text2
+id textSpacerNoButtons
+id textSpacerNoTitle
+id text_input_password_toggle
+id textinput_counter
+id textinput_error
+id textinput_helper_text
+id time
+id title
+id titleDividerNoCustom
+id title_template
+id top
+id topPanel
+id touch_outside
+id transition_current_scene
+id transition_layout_save
+id transition_position
+id transition_scene_layoutid_cache
+id transition_transform
+id uniform
+id unlabeled
+id up
+id useLogo
+id view_offset_helper
+id visible
+id wait_spinner
+id withText
+id wrap_content
+integer abc_config_activityDefaultDur
+integer abc_config_activityShortDur
+integer abc_max_action_buttons
+integer app_bar_elevation_anim_duration
+integer bottom_sheet_slide_duration
+integer cancel_button_image_alpha
+integer config_tooltipAnimTime
+integer design_snackbar_text_max_lines
+integer design_tab_indicator_anim_duration_ms
+integer hide_password_duration
+integer mtrl_btn_anim_delay_ms
+integer mtrl_btn_anim_duration_ms
+integer mtrl_chip_anim_duration
+integer mtrl_tab_indicator_anim_duration_ms
+integer show_password_duration
+integer status_bar_notification_info_maxnum
+interpolator mtrl_fast_out_linear_in
+interpolator mtrl_fast_out_slow_in
+interpolator mtrl_linear
+interpolator mtrl_linear_out_slow_in
+layout abc_action_bar_title_item
+layout abc_action_bar_up_container
+layout abc_action_bar_view_list_nav_layout
+layout abc_action_menu_item_layout
+layout abc_action_menu_layout
+layout abc_action_mode_bar
+layout abc_action_mode_close_item_material
+layout abc_activity_chooser_view
+layout abc_activity_chooser_view_list_item
+layout abc_alert_dialog_button_bar_material
+layout abc_alert_dialog_material
+layout abc_alert_dialog_title_material
+layout abc_cascading_menu_item_layout
+layout abc_dialog_title_material
+layout abc_expanded_menu_layout
+layout abc_list_menu_item_checkbox
+layout abc_list_menu_item_icon
+layout abc_list_menu_item_layout
+layout abc_list_menu_item_radio
+layout abc_popup_menu_header_item_layout
+layout abc_popup_menu_item_layout
+layout abc_screen_content_include
+layout abc_screen_simple
+layout abc_screen_simple_overlay_action_mode
+layout abc_screen_toolbar
+layout abc_search_dropdown_item_icons_2line
+layout abc_search_view
+layout abc_select_dialog_material
+layout abc_tooltip
+layout activity_open_note_scanner
+layout design_bottom_navigation_item
+layout design_bottom_sheet_dialog
+layout design_layout_snackbar
+layout design_layout_snackbar_include
+layout design_layout_tab_icon
+layout design_layout_tab_text
+layout design_menu_item_action_area
+layout design_navigation_item
+layout design_navigation_item_header
+layout design_navigation_item_separator
+layout design_navigation_item_subheader
+layout design_navigation_menu
+layout design_navigation_menu_item
+layout design_text_input_password_icon
+layout fps_view
+layout mtrl_layout_snackbar
+layout mtrl_layout_snackbar_include
+layout notification_action
+layout notification_action_tombstone
+layout notification_media_action
+layout notification_media_cancel_action
+layout notification_template_big_media
+layout notification_template_big_media_narrow
+layout notification_template_custom_big
+layout notification_template_icon_group
+layout notification_template_lines
+layout notification_template_media
+layout notification_template_part_chronometer
+layout notification_template_part_time
+layout redbox_item_frame
+layout redbox_item_title
+layout redbox_view
+layout select_dialog_item_material
+layout select_dialog_multichoice_material
+layout select_dialog_singlechoice_material
+layout support_simple_spinner_dropdown_item
+string abc_action_bar_home_description
+string abc_action_bar_home_description_format
+string abc_action_bar_home_subtitle_description_format
+string abc_action_bar_up_description
+string abc_action_menu_overflow_description
+string abc_action_mode_done
+string abc_activity_chooser_view_see_all
+string abc_activitychooserview_choose_application
+string abc_capital_off
+string abc_capital_on
+string abc_font_family_body_1_material
+string abc_font_family_body_2_material
+string abc_font_family_button_material
+string abc_font_family_caption_material
+string abc_font_family_display_1_material
+string abc_font_family_display_2_material
+string abc_font_family_display_3_material
+string abc_font_family_display_4_material
+string abc_font_family_headline_material
+string abc_font_family_menu_material
+string abc_font_family_subhead_material
+string abc_font_family_title_material
+string abc_menu_alt_shortcut_label
+string abc_menu_ctrl_shortcut_label
+string abc_menu_delete_shortcut_label
+string abc_menu_enter_shortcut_label
+string abc_menu_function_shortcut_label
+string abc_menu_meta_shortcut_label
+string abc_menu_shift_shortcut_label
+string abc_menu_space_shortcut_label
+string abc_menu_sym_shortcut_label
+string abc_prepend_shortcut_label
+string abc_search_hint
+string abc_searchview_description_clear
+string abc_searchview_description_query
+string abc_searchview_description_search
+string abc_searchview_description_submit
+string abc_searchview_description_voice
+string abc_shareactionprovider_share_with
+string abc_shareactionprovider_share_with_application
+string abc_toolbar_collapse_description
+string app_name
+string appbar_scrolling_view_behavior
+string bottom_sheet_behavior
+string catalyst_debugjs
+string catalyst_debugjs_off
+string catalyst_element_inspector
+string catalyst_element_inspector_off
+string catalyst_hot_module_replacement
+string catalyst_hot_module_replacement_off
+string catalyst_jsload_error
+string catalyst_jsload_message
+string catalyst_jsload_title
+string catalyst_live_reload
+string catalyst_live_reload_off
+string catalyst_perf_monitor
+string catalyst_perf_monitor_off
+string catalyst_reloadjs
+string catalyst_remotedbg_error
+string catalyst_remotedbg_message
+string catalyst_settings
+string catalyst_settings_title
+string catalyst_start_profile
+string catalyst_stop_profile
+string character_counter_content_description
+string character_counter_pattern
+string fab_transformation_scrim_behavior
+string fab_transformation_sheet_behavior
+string hide_bottom_view_on_scroll_behavior
+string mtrl_chip_close_icon_content_description
+string password_toggle_content_description
+string path_password_eye
+string path_password_eye_mask_strike_through
+string path_password_eye_mask_visible
+string path_password_strike_through
+string search_menu_title
+string status_bar_notification_info_overflow
+style AlertDialog_AppCompat
+style AlertDialog_AppCompat_Light
+style Animation_AppCompat_Dialog
+style Animation_AppCompat_DropDownUp
+style Animation_AppCompat_Tooltip
+style Animation_Catalyst_RedBox
+style Animation_Design_BottomSheetDialog
+style Base_AlertDialog_AppCompat
+style Base_AlertDialog_AppCompat_Light
+style Base_Animation_AppCompat_Dialog
+style Base_Animation_AppCompat_DropDownUp
+style Base_Animation_AppCompat_Tooltip
+style Base_CardView
+style Base_DialogWindowTitleBackground_AppCompat
+style Base_DialogWindowTitle_AppCompat
+style Base_TextAppearance_AppCompat
+style Base_TextAppearance_AppCompat_Body1
+style Base_TextAppearance_AppCompat_Body2
+style Base_TextAppearance_AppCompat_Button
+style Base_TextAppearance_AppCompat_Caption
+style Base_TextAppearance_AppCompat_Display1
+style Base_TextAppearance_AppCompat_Display2
+style Base_TextAppearance_AppCompat_Display3
+style Base_TextAppearance_AppCompat_Display4
+style Base_TextAppearance_AppCompat_Headline
+style Base_TextAppearance_AppCompat_Inverse
+style Base_TextAppearance_AppCompat_Large
+style Base_TextAppearance_AppCompat_Large_Inverse
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Medium
+style Base_TextAppearance_AppCompat_Medium_Inverse
+style Base_TextAppearance_AppCompat_Menu
+style Base_TextAppearance_AppCompat_SearchResult
+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
+style Base_TextAppearance_AppCompat_SearchResult_Title
+style Base_TextAppearance_AppCompat_Small
+style Base_TextAppearance_AppCompat_Small_Inverse
+style Base_TextAppearance_AppCompat_Subhead
+style Base_TextAppearance_AppCompat_Subhead_Inverse
+style Base_TextAppearance_AppCompat_Title
+style Base_TextAppearance_AppCompat_Title_Inverse
+style Base_TextAppearance_AppCompat_Tooltip
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
+style Base_TextAppearance_AppCompat_Widget_Button
+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Inverse
+style Base_TextAppearance_AppCompat_Widget_DropDownItem
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Widget_Switch
+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
+style Base_ThemeOverlay_AppCompat
+style Base_ThemeOverlay_AppCompat_ActionBar
+style Base_ThemeOverlay_AppCompat_Dark
+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
+style Base_ThemeOverlay_AppCompat_Dialog
+style Base_ThemeOverlay_AppCompat_Dialog_Alert
+style Base_ThemeOverlay_AppCompat_Light
+style Base_ThemeOverlay_MaterialComponents_Dialog
+style Base_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_Theme_AppCompat
+style Base_Theme_AppCompat_CompactMenu
+style Base_Theme_AppCompat_Dialog
+style Base_Theme_AppCompat_DialogWhenLarge
+style Base_Theme_AppCompat_Dialog_Alert
+style Base_Theme_AppCompat_Dialog_FixedSize
+style Base_Theme_AppCompat_Dialog_MinWidth
+style Base_Theme_AppCompat_Light
+style Base_Theme_AppCompat_Light_DarkActionBar
+style Base_Theme_AppCompat_Light_Dialog
+style Base_Theme_AppCompat_Light_DialogWhenLarge
+style Base_Theme_AppCompat_Light_Dialog_Alert
+style Base_Theme_AppCompat_Light_Dialog_FixedSize
+style Base_Theme_AppCompat_Light_Dialog_MinWidth
+style Base_Theme_MaterialComponents
+style Base_Theme_MaterialComponents_Bridge
+style Base_Theme_MaterialComponents_CompactMenu
+style Base_Theme_MaterialComponents_Dialog
+style Base_Theme_MaterialComponents_DialogWhenLarge
+style Base_Theme_MaterialComponents_Dialog_Alert
+style Base_Theme_MaterialComponents_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Dialog_MinWidth
+style Base_Theme_MaterialComponents_Light
+style Base_Theme_MaterialComponents_Light_Bridge
+style Base_Theme_MaterialComponents_Light_DarkActionBar
+style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_Theme_MaterialComponents_Light_Dialog
+style Base_Theme_MaterialComponents_Light_DialogWhenLarge
+style Base_Theme_MaterialComponents_Light_Dialog_Alert
+style Base_Theme_MaterialComponents_Light_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Light_Dialog_MinWidth
+style Base_V11_Theme_AppCompat_Dialog
+style Base_V11_Theme_AppCompat_Light_Dialog
+style Base_V12_Widget_AppCompat_AutoCompleteTextView
+style Base_V12_Widget_AppCompat_EditText
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_V14_Theme_MaterialComponents
+style Base_V14_Theme_MaterialComponents_Bridge
+style Base_V14_Theme_MaterialComponents_Dialog
+style Base_V14_Theme_MaterialComponents_Light
+style Base_V14_Theme_MaterialComponents_Light_Bridge
+style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_V14_Theme_MaterialComponents_Light_Dialog
+style Base_V21_ThemeOverlay_AppCompat_Dialog
+style Base_V21_Theme_AppCompat
+style Base_V21_Theme_AppCompat_Dialog
+style Base_V21_Theme_AppCompat_Light
+style Base_V21_Theme_AppCompat_Light_Dialog
+style Base_V22_Theme_AppCompat
+style Base_V22_Theme_AppCompat_Light
+style Base_V23_Theme_AppCompat
+style Base_V23_Theme_AppCompat_Light
+style Base_V26_Theme_AppCompat
+style Base_V26_Theme_AppCompat_Light
+style Base_V26_Widget_AppCompat_Toolbar
+style Base_V28_Theme_AppCompat
+style Base_V28_Theme_AppCompat_Light
+style Base_V7_ThemeOverlay_AppCompat_Dialog
+style Base_V7_Theme_AppCompat
+style Base_V7_Theme_AppCompat_Dialog
+style Base_V7_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat_Light_Dialog
+style Base_V7_Widget_AppCompat_AutoCompleteTextView
+style Base_V7_Widget_AppCompat_EditText
+style Base_V7_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_ActionBar
+style Base_Widget_AppCompat_ActionBar_Solid
+style Base_Widget_AppCompat_ActionBar_TabBar
+style Base_Widget_AppCompat_ActionBar_TabText
+style Base_Widget_AppCompat_ActionBar_TabView
+style Base_Widget_AppCompat_ActionButton
+style Base_Widget_AppCompat_ActionButton_CloseMode
+style Base_Widget_AppCompat_ActionButton_Overflow
+style Base_Widget_AppCompat_ActionMode
+style Base_Widget_AppCompat_ActivityChooserView
+style Base_Widget_AppCompat_AutoCompleteTextView
+style Base_Widget_AppCompat_Button
+style Base_Widget_AppCompat_ButtonBar
+style Base_Widget_AppCompat_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Borderless
+style Base_Widget_AppCompat_Button_Borderless_Colored
+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Colored
+style Base_Widget_AppCompat_Button_Small
+style Base_Widget_AppCompat_CompoundButton_CheckBox
+style Base_Widget_AppCompat_CompoundButton_RadioButton
+style Base_Widget_AppCompat_CompoundButton_Switch
+style Base_Widget_AppCompat_DrawerArrowToggle
+style Base_Widget_AppCompat_DrawerArrowToggle_Common
+style Base_Widget_AppCompat_DropDownItem_Spinner
+style Base_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ImageButton
+style Base_Widget_AppCompat_Light_ActionBar
+style Base_Widget_AppCompat_Light_ActionBar_Solid
+style Base_Widget_AppCompat_Light_ActionBar_TabBar
+style Base_Widget_AppCompat_Light_ActionBar_TabText
+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Base_Widget_AppCompat_Light_ActionBar_TabView
+style Base_Widget_AppCompat_Light_PopupMenu
+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
+style Base_Widget_AppCompat_ListMenuView
+style Base_Widget_AppCompat_ListPopupWindow
+style Base_Widget_AppCompat_ListView
+style Base_Widget_AppCompat_ListView_DropDown
+style Base_Widget_AppCompat_ListView_Menu
+style Base_Widget_AppCompat_PopupMenu
+style Base_Widget_AppCompat_PopupMenu_Overflow
+style Base_Widget_AppCompat_PopupWindow
+style Base_Widget_AppCompat_ProgressBar
+style Base_Widget_AppCompat_ProgressBar_Horizontal
+style Base_Widget_AppCompat_RatingBar
+style Base_Widget_AppCompat_RatingBar_Indicator
+style Base_Widget_AppCompat_RatingBar_Small
+style Base_Widget_AppCompat_SearchView
+style Base_Widget_AppCompat_SearchView_ActionBar
+style Base_Widget_AppCompat_SeekBar
+style Base_Widget_AppCompat_SeekBar_Discrete
+style Base_Widget_AppCompat_Spinner
+style Base_Widget_AppCompat_Spinner_Underlined
+style Base_Widget_AppCompat_TextView_SpinnerItem
+style Base_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_Toolbar_Button_Navigation
+style Base_Widget_Design_TabLayout
+style Base_Widget_MaterialComponents_Chip
+style Base_Widget_MaterialComponents_TextInputEditText
+style Base_Widget_MaterialComponents_TextInputLayout
+style CardView
+style CardView_Dark
+style CardView_Light
+style Platform_AppCompat
+style Platform_AppCompat_Light
+style Platform_MaterialComponents
+style Platform_MaterialComponents_Dialog
+style Platform_MaterialComponents_Light
+style Platform_MaterialComponents_Light_Dialog
+style Platform_ThemeOverlay_AppCompat
+style Platform_ThemeOverlay_AppCompat_Dark
+style Platform_ThemeOverlay_AppCompat_Light
+style Platform_V11_AppCompat
+style Platform_V11_AppCompat_Light
+style Platform_V14_AppCompat
+style Platform_V14_AppCompat_Light
+style Platform_V21_AppCompat
+style Platform_V21_AppCompat_Light
+style Platform_V25_AppCompat
+style Platform_V25_AppCompat_Light
+style Platform_Widget_AppCompat_Spinner
+style RtlOverlay_DialogWindowTitle_AppCompat
+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
+style RtlOverlay_Widget_AppCompat_ActionButton_Overflow
+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
+style RtlOverlay_Widget_AppCompat_PopupMenuItem
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
+style RtlOverlay_Widget_AppCompat_Search_DropDown
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
+style RtlUnderlay_Widget_AppCompat_ActionButton
+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
+style TextAppearance_AppCompat
+style TextAppearance_AppCompat_Body1
+style TextAppearance_AppCompat_Body2
+style TextAppearance_AppCompat_Button
+style TextAppearance_AppCompat_Caption
+style TextAppearance_AppCompat_Display1
+style TextAppearance_AppCompat_Display2
+style TextAppearance_AppCompat_Display3
+style TextAppearance_AppCompat_Display4
+style TextAppearance_AppCompat_Headline
+style TextAppearance_AppCompat_Inverse
+style TextAppearance_AppCompat_Large
+style TextAppearance_AppCompat_Large_Inverse
+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
+style TextAppearance_AppCompat_Light_SearchResult_Title
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Medium
+style TextAppearance_AppCompat_Medium_Inverse
+style TextAppearance_AppCompat_Menu
+style TextAppearance_AppCompat_SearchResult_Subtitle
+style TextAppearance_AppCompat_SearchResult_Title
+style TextAppearance_AppCompat_Small
+style TextAppearance_AppCompat_Small_Inverse
+style TextAppearance_AppCompat_Subhead
+style TextAppearance_AppCompat_Subhead_Inverse
+style TextAppearance_AppCompat_Title
+style TextAppearance_AppCompat_Title_Inverse
+style TextAppearance_AppCompat_Tooltip
+style TextAppearance_AppCompat_Widget_ActionBar_Menu
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Title
+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Title
+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
+style TextAppearance_AppCompat_Widget_Button
+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style TextAppearance_AppCompat_Widget_Button_Colored
+style TextAppearance_AppCompat_Widget_Button_Inverse
+style TextAppearance_AppCompat_Widget_DropDownItem
+style TextAppearance_AppCompat_Widget_PopupMenu_Header
+style TextAppearance_AppCompat_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Widget_Switch
+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style TextAppearance_Compat_Notification
+style TextAppearance_Compat_Notification_Info
+style TextAppearance_Compat_Notification_Line2
+style TextAppearance_Compat_Notification_Time
+style TextAppearance_Compat_Notification_Title
+style TextAppearance_Design_CollapsingToolbar_Expanded
+style TextAppearance_Design_Counter
+style TextAppearance_Design_Counter_Overflow
+style TextAppearance_Design_Error
+style TextAppearance_Design_HelperText
+style TextAppearance_Design_Hint
+style TextAppearance_Design_Snackbar_Message
+style TextAppearance_Design_Tab
+style TextAppearance_MaterialComponents_Body1
+style TextAppearance_MaterialComponents_Body2
+style TextAppearance_MaterialComponents_Button
+style TextAppearance_MaterialComponents_Caption
+style TextAppearance_MaterialComponents_Chip
+style TextAppearance_MaterialComponents_Headline1
+style TextAppearance_MaterialComponents_Headline2
+style TextAppearance_MaterialComponents_Headline3
+style TextAppearance_MaterialComponents_Headline4
+style TextAppearance_MaterialComponents_Headline5
+style TextAppearance_MaterialComponents_Headline6
+style TextAppearance_MaterialComponents_Overline
+style TextAppearance_MaterialComponents_Subtitle1
+style TextAppearance_MaterialComponents_Subtitle2
+style TextAppearance_MaterialComponents_Tab
+style TextAppearance_StatusBar_EventContent
+style TextAppearance_StatusBar_EventContent_Info
+style TextAppearance_StatusBar_EventContent_Line2
+style TextAppearance_StatusBar_EventContent_Time
+style TextAppearance_StatusBar_EventContent_Title
+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style TextAppearance_Widget_AppCompat_Toolbar_Title
+style Theme
+style ThemeOverlay_AppCompat
+style ThemeOverlay_AppCompat_ActionBar
+style ThemeOverlay_AppCompat_Dark
+style ThemeOverlay_AppCompat_Dark_ActionBar
+style ThemeOverlay_AppCompat_Dialog
+style ThemeOverlay_AppCompat_Dialog_Alert
+style ThemeOverlay_AppCompat_Light
+style ThemeOverlay_MaterialComponents
+style ThemeOverlay_MaterialComponents_ActionBar
+style ThemeOverlay_MaterialComponents_Dark
+style ThemeOverlay_MaterialComponents_Dark_ActionBar
+style ThemeOverlay_MaterialComponents_Dialog
+style ThemeOverlay_MaterialComponents_Dialog_Alert
+style ThemeOverlay_MaterialComponents_Light
+style ThemeOverlay_MaterialComponents_TextInputEditText
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style Theme_AppCompat
+style Theme_AppCompat_CompactMenu
+style Theme_AppCompat_DayNight
+style Theme_AppCompat_DayNight_DarkActionBar
+style Theme_AppCompat_DayNight_Dialog
+style Theme_AppCompat_DayNight_DialogWhenLarge
+style Theme_AppCompat_DayNight_Dialog_Alert
+style Theme_AppCompat_DayNight_Dialog_MinWidth
+style Theme_AppCompat_DayNight_NoActionBar
+style Theme_AppCompat_Dialog
+style Theme_AppCompat_DialogWhenLarge
+style Theme_AppCompat_Dialog_Alert
+style Theme_AppCompat_Dialog_MinWidth
+style Theme_AppCompat_Light
+style Theme_AppCompat_Light_DarkActionBar
+style Theme_AppCompat_Light_Dialog
+style Theme_AppCompat_Light_DialogWhenLarge
+style Theme_AppCompat_Light_Dialog_Alert
+style Theme_AppCompat_Light_Dialog_MinWidth
+style Theme_AppCompat_Light_NoActionBar
+style Theme_AppCompat_NoActionBar
+style Theme_Catalyst
+style Theme_Catalyst_RedBox
+style Theme_Design
+style Theme_Design_BottomSheetDialog
+style Theme_Design_Light
+style Theme_Design_Light_BottomSheetDialog
+style Theme_Design_Light_NoActionBar
+style Theme_Design_NoActionBar
+style Theme_MaterialComponents
+style Theme_MaterialComponents_BottomSheetDialog
+style Theme_MaterialComponents_Bridge
+style Theme_MaterialComponents_CompactMenu
+style Theme_MaterialComponents_Dialog
+style Theme_MaterialComponents_DialogWhenLarge
+style Theme_MaterialComponents_Dialog_Alert
+style Theme_MaterialComponents_Dialog_MinWidth
+style Theme_MaterialComponents_Light
+style Theme_MaterialComponents_Light_BottomSheetDialog
+style Theme_MaterialComponents_Light_Bridge
+style Theme_MaterialComponents_Light_DarkActionBar
+style Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Theme_MaterialComponents_Light_Dialog
+style Theme_MaterialComponents_Light_DialogWhenLarge
+style Theme_MaterialComponents_Light_Dialog_Alert
+style Theme_MaterialComponents_Light_Dialog_MinWidth
+style Theme_MaterialComponents_Light_NoActionBar
+style Theme_MaterialComponents_Light_NoActionBar_Bridge
+style Theme_MaterialComponents_NoActionBar
+style Theme_MaterialComponents_NoActionBar_Bridge
+style Theme_ReactNative_AppCompat_Light
+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen
+style Widget_AppCompat_ActionBar
+style Widget_AppCompat_ActionBar_Solid
+style Widget_AppCompat_ActionBar_TabBar
+style Widget_AppCompat_ActionBar_TabText
+style Widget_AppCompat_ActionBar_TabView
+style Widget_AppCompat_ActionButton
+style Widget_AppCompat_ActionButton_CloseMode
+style Widget_AppCompat_ActionButton_Overflow
+style Widget_AppCompat_ActionMode
+style Widget_AppCompat_ActivityChooserView
+style Widget_AppCompat_AutoCompleteTextView
+style Widget_AppCompat_Button
+style Widget_AppCompat_ButtonBar
+style Widget_AppCompat_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Borderless
+style Widget_AppCompat_Button_Borderless_Colored
+style Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Colored
+style Widget_AppCompat_Button_Small
+style Widget_AppCompat_CompoundButton_CheckBox
+style Widget_AppCompat_CompoundButton_RadioButton
+style Widget_AppCompat_CompoundButton_Switch
+style Widget_AppCompat_DrawerArrowToggle
+style Widget_AppCompat_DropDownItem_Spinner
+style Widget_AppCompat_EditText
+style Widget_AppCompat_ImageButton
+style Widget_AppCompat_Light_ActionBar
+style Widget_AppCompat_Light_ActionBar_Solid
+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
+style Widget_AppCompat_Light_ActionBar_TabBar
+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
+style Widget_AppCompat_Light_ActionBar_TabText
+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Widget_AppCompat_Light_ActionBar_TabView
+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
+style Widget_AppCompat_Light_ActionButton
+style Widget_AppCompat_Light_ActionButton_CloseMode
+style Widget_AppCompat_Light_ActionButton_Overflow
+style Widget_AppCompat_Light_ActionMode_Inverse
+style Widget_AppCompat_Light_ActivityChooserView
+style Widget_AppCompat_Light_AutoCompleteTextView
+style Widget_AppCompat_Light_DropDownItem_Spinner
+style Widget_AppCompat_Light_ListPopupWindow
+style Widget_AppCompat_Light_ListView_DropDown
+style Widget_AppCompat_Light_PopupMenu
+style Widget_AppCompat_Light_PopupMenu_Overflow
+style Widget_AppCompat_Light_SearchView
+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
+style Widget_AppCompat_ListMenuView
+style Widget_AppCompat_ListPopupWindow
+style Widget_AppCompat_ListView
+style Widget_AppCompat_ListView_DropDown
+style Widget_AppCompat_ListView_Menu
+style Widget_AppCompat_PopupMenu
+style Widget_AppCompat_PopupMenu_Overflow
+style Widget_AppCompat_PopupWindow
+style Widget_AppCompat_ProgressBar
+style Widget_AppCompat_ProgressBar_Horizontal
+style Widget_AppCompat_RatingBar
+style Widget_AppCompat_RatingBar_Indicator
+style Widget_AppCompat_RatingBar_Small
+style Widget_AppCompat_SearchView
+style Widget_AppCompat_SearchView_ActionBar
+style Widget_AppCompat_SeekBar
+style Widget_AppCompat_SeekBar_Discrete
+style Widget_AppCompat_Spinner
+style Widget_AppCompat_Spinner_DropDown
+style Widget_AppCompat_Spinner_DropDown_ActionBar
+style Widget_AppCompat_Spinner_Underlined
+style Widget_AppCompat_TextView_SpinnerItem
+style Widget_AppCompat_Toolbar
+style Widget_AppCompat_Toolbar_Button_Navigation
+style Widget_Compat_NotificationActionContainer
+style Widget_Compat_NotificationActionText
+style Widget_Design_AppBarLayout
+style Widget_Design_BottomNavigationView
+style Widget_Design_BottomSheet_Modal
+style Widget_Design_CollapsingToolbar
+style Widget_Design_FloatingActionButton
+style Widget_Design_NavigationView
+style Widget_Design_ScrimInsetsFrameLayout
+style Widget_Design_Snackbar
+style Widget_Design_TabLayout
+style Widget_Design_TextInputLayout
+style Widget_MaterialComponents_BottomAppBar
+style Widget_MaterialComponents_BottomAppBar_Colored
+style Widget_MaterialComponents_BottomNavigationView
+style Widget_MaterialComponents_BottomNavigationView_Colored
+style Widget_MaterialComponents_BottomSheet_Modal
+style Widget_MaterialComponents_Button
+style Widget_MaterialComponents_Button_Icon
+style Widget_MaterialComponents_Button_OutlinedButton
+style Widget_MaterialComponents_Button_OutlinedButton_Icon
+style Widget_MaterialComponents_Button_TextButton
+style Widget_MaterialComponents_Button_TextButton_Dialog
+style Widget_MaterialComponents_Button_TextButton_Dialog_Icon
+style Widget_MaterialComponents_Button_TextButton_Icon
+style Widget_MaterialComponents_Button_UnelevatedButton
+style Widget_MaterialComponents_Button_UnelevatedButton_Icon
+style Widget_MaterialComponents_CardView
+style Widget_MaterialComponents_ChipGroup
+style Widget_MaterialComponents_Chip_Action
+style Widget_MaterialComponents_Chip_Choice
+style Widget_MaterialComponents_Chip_Entry
+style Widget_MaterialComponents_Chip_Filter
+style Widget_MaterialComponents_FloatingActionButton
+style Widget_MaterialComponents_NavigationView
+style Widget_MaterialComponents_Snackbar
+style Widget_MaterialComponents_Snackbar_FullWidth
+style Widget_MaterialComponents_TabLayout
+style Widget_MaterialComponents_TabLayout_Colored
+style Widget_MaterialComponents_TextInputEditText_FilledBox
+style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style Widget_MaterialComponents_TextInputLayout_FilledBox
+style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
+style Widget_MaterialComponents_Toolbar
+style Widget_Support_CoordinatorLayout
+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
+styleable ActionBarLayout android_layout_gravity
+styleable ActionMenuItemView android_minWidth
+styleable ActionMenuView
+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
+styleable AnimatedStateListDrawableItem android_drawable android_id
+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
+styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll
+styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted
+styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator
+styleable AppCompatImageView android_src srcCompat tint tintMode
+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps
+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable BottomAppBar backgroundTint fabAlignmentMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll
+styleable BottomNavigationView elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu
+styleable BottomSheetBehavior_Layout behavior_fitToContents behavior_hideable behavior_peekHeight behavior_skipCollapsed
+styleable ButtonBarLayout allowStacking
+styleable CameraBridgeViewBase camera_id show_fps
+styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop
+styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance checkedIcon checkedIconEnabled checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipStartPadding chipStrokeColor chipStrokeWidth closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible hideMotionSpec iconEndPadding iconStartPadding rippleColor showMotionSpec textEndPadding textStartPadding
+styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical singleLine singleSelection
+styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleEnabled toolbarId
+styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier
+styleable ColorStateListItem alpha android_alpha android_color
+styleable CompoundButton android_button buttonTint buttonTintMode
+styleable CoordinatorLayout keylines statusBarBackground
+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
+styleable DesignTheme bottomSheetDialogTheme bottomSheetStyle
+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
+styleable FloatingActionButton backgroundTint backgroundTintMode borderWidth elevation fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor showMotionSpec useCompatPadding
+styleable FloatingActionButton_Behavior_Layout behavior_autoHide
+styleable FlowLayout itemSpacing lineSpacing
+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
+styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding
+styleable GenericDraweeView actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomLeft roundBottomRight roundTopLeft roundTopRight roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderWidth viewAspectRatio
+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
+styleable GradientColorItem android_color android_offset
+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
+styleable MaterialButton android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor strokeColor strokeWidth
+styleable MaterialCardView strokeColor strokeWidth
+styleable MaterialComponentsTheme bottomSheetDialogTheme bottomSheetStyle chipGroupStyle chipStandaloneStyle chipStyle colorAccent colorBackgroundFloating colorPrimary colorPrimaryDark colorSecondary editTextStyle floatingActionButtonStyle materialButtonStyle materialCardViewStyle navigationViewStyle scrimBackground snackbarButtonStyle tabStyle textAppearanceBody1 textAppearanceBody2 textAppearanceButton textAppearanceCaption textAppearanceHeadline1 textAppearanceHeadline2 textAppearanceHeadline3 textAppearanceHeadline4 textAppearanceHeadline5 textAppearanceHeadline6 textAppearanceOverline textAppearanceSubtitle1 textAppearanceSubtitle2 textInputStyle
+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
+styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconTint itemTextAppearance itemTextColor menu
+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
+styleable PopupWindowBackgroundState state_above_anchor
+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
+styleable RecyclerView android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd
+styleable ScrimInsetsFrameLayout insetForeground
+styleable ScrollingViewBehavior_Layout behavior_overlapTop
+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
+styleable Snackbar snackbarButtonStyle snackbarStyle
+styleable SnackbarLayout android_maxWidth elevation maxActionInlineWidth
+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
+styleable StateListDrawableItem android_drawable
+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
+styleable TabItem android_icon android_layout android_text
+styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple
+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textSize android_textStyle android_typeface fontFamily textAllCaps
+styleable TextInputLayout android_hint android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeWidth counterEnabled counterMaxLength counterOverflowTextAppearance counterTextAppearance errorEnabled errorTextAppearance helperText helperTextEnabled helperTextTextAppearance hintAnimationEnabled hintEnabled hintTextAppearance passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode
+styleable Theme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSmall textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance
+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
+styleable View android_focusable android_theme paddingEnd paddingStart theme
+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
+styleable ViewStubCompat android_id android_inflatedId android_layout
+xml preferences
diff --git a/android/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt b/android/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt
new file mode 100644
index 000000000..538beb45f
--- /dev/null
+++ b/android/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt
@@ -0,0 +1,1963 @@
+com.documentscanner
+anim abc_fade_in
+anim abc_fade_out
+anim abc_grow_fade_in_from_bottom
+anim abc_popup_enter
+anim abc_popup_exit
+anim abc_shrink_fade_out_from_bottom
+anim abc_slide_in_bottom
+anim abc_slide_in_top
+anim abc_slide_out_bottom
+anim abc_slide_out_top
+anim abc_tooltip_enter
+anim abc_tooltip_exit
+anim blink
+anim catalyst_push_up_in
+anim catalyst_push_up_out
+anim design_bottom_sheet_slide_in
+anim design_bottom_sheet_slide_out
+anim design_snackbar_in
+anim design_snackbar_out
+animator design_appbar_state_list_animator
+animator design_fab_hide_motion_spec
+animator design_fab_show_motion_spec
+animator mtrl_btn_state_list_anim
+animator mtrl_btn_unelevated_state_list_anim
+animator mtrl_chip_state_list_anim
+animator mtrl_fab_hide_motion_spec
+animator mtrl_fab_show_motion_spec
+animator mtrl_fab_transformation_sheet_collapse_spec
+animator mtrl_fab_transformation_sheet_expand_spec
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModePopupWindowStyle
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr activityChooserViewStyle
+attr actualImageScaleType
+attr alertDialogButtonGroupStyle
+attr alertDialogCenterButtons
+attr alertDialogStyle
+attr alertDialogTheme
+attr allowStacking
+attr alpha
+attr alphabeticModifiers
+attr arrowHeadLength
+attr arrowShaftLength
+attr autoCompleteTextViewStyle
+attr autoSizeMaxTextSize
+attr autoSizeMinTextSize
+attr autoSizePresetSizes
+attr autoSizeStepGranularity
+attr autoSizeTextType
+attr background
+attr backgroundImage
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barLength
+attr behavior_autoHide
+attr behavior_fitToContents
+attr behavior_hideable
+attr behavior_overlapTop
+attr behavior_peekHeight
+attr behavior_skipCollapsed
+attr borderWidth
+attr borderlessButtonStyle
+attr bottomAppBarStyle
+attr bottomNavigationStyle
+attr bottomSheetDialogTheme
+attr bottomSheetStyle
+attr boxBackgroundColor
+attr boxBackgroundMode
+attr boxCollapsedPaddingTop
+attr boxCornerRadiusBottomEnd
+attr boxCornerRadiusBottomStart
+attr boxCornerRadiusTopEnd
+attr boxCornerRadiusTopStart
+attr boxStrokeColor
+attr boxStrokeWidth
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonGravity
+attr buttonIconDimen
+attr buttonPanelSideLayout
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr camera_id
+attr cardBackgroundColor
+attr cardCornerRadius
+attr cardElevation
+attr cardMaxElevation
+attr cardPreventCornerOverlap
+attr cardUseCompatPadding
+attr cardViewStyle
+attr checkboxStyle
+attr checkedChip
+attr checkedIcon
+attr checkedIconEnabled
+attr checkedIconVisible
+attr checkedTextViewStyle
+attr chipBackgroundColor
+attr chipCornerRadius
+attr chipEndPadding
+attr chipGroupStyle
+attr chipIcon
+attr chipIconEnabled
+attr chipIconSize
+attr chipIconTint
+attr chipIconVisible
+attr chipMinHeight
+attr chipSpacing
+attr chipSpacingHorizontal
+attr chipSpacingVertical
+attr chipStandaloneStyle
+attr chipStartPadding
+attr chipStrokeColor
+attr chipStrokeWidth
+attr chipStyle
+attr closeIcon
+attr closeIconEnabled
+attr closeIconEndPadding
+attr closeIconSize
+attr closeIconStartPadding
+attr closeIconTint
+attr closeIconVisible
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr collapsedTitleGravity
+attr collapsedTitleTextAppearance
+attr color
+attr colorAccent
+attr colorBackgroundFloating
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorError
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSecondary
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentDescription
+attr contentInsetEnd
+attr contentInsetEndWithActions
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr contentInsetStartWithNavigation
+attr contentPadding
+attr contentPaddingBottom
+attr contentPaddingLeft
+attr contentPaddingRight
+attr contentPaddingTop
+attr contentScrim
+attr controlBackground
+attr coordinatorLayoutStyle
+attr cornerRadius
+attr counterEnabled
+attr counterMaxLength
+attr counterOverflowTextAppearance
+attr counterTextAppearance
+attr customNavigationLayout
+attr defaultQueryHint
+attr dialogCornerRadius
+attr dialogPreferredPadding
+attr dialogTheme
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr enforceMaterialTheme
+attr enforceTextAppearance
+attr errorEnabled
+attr errorTextAppearance
+attr expandActivityOverflowButtonDrawable
+attr expanded
+attr expandedTitleGravity
+attr expandedTitleMargin
+attr expandedTitleMarginBottom
+attr expandedTitleMarginEnd
+attr expandedTitleMarginStart
+attr expandedTitleMarginTop
+attr expandedTitleTextAppearance
+attr fabAlignmentMode
+attr fabCradleMargin
+attr fabCradleRoundedCornerRadius
+attr fabCradleVerticalOffset
+attr fabCustomSize
+attr fabSize
+attr fadeDuration
+attr failureImage
+attr failureImageScaleType
+attr fastScrollEnabled
+attr fastScrollHorizontalThumbDrawable
+attr fastScrollHorizontalTrackDrawable
+attr fastScrollVerticalThumbDrawable
+attr fastScrollVerticalTrackDrawable
+attr firstBaselineToTopHeight
+attr floatingActionButtonStyle
+attr font
+attr fontFamily
+attr fontProviderAuthority
+attr fontProviderCerts
+attr fontProviderFetchStrategy
+attr fontProviderFetchTimeout
+attr fontProviderPackage
+attr fontProviderQuery
+attr fontStyle
+attr fontVariationSettings
+attr fontWeight
+attr foregroundInsidePadding
+attr gapBetweenBars
+attr goIcon
+attr headerLayout
+attr height
+attr helperText
+attr helperTextEnabled
+attr helperTextTextAppearance
+attr hideMotionSpec
+attr hideOnContentScroll
+attr hideOnScroll
+attr hintAnimationEnabled
+attr hintEnabled
+attr hintTextAppearance
+attr homeAsUpIndicator
+attr homeLayout
+attr hoveredFocusedTranslationZ
+attr icon
+attr iconEndPadding
+attr iconGravity
+attr iconPadding
+attr iconSize
+attr iconStartPadding
+attr iconTint
+attr iconTintMode
+attr iconifiedByDefault
+attr imageButtonStyle
+attr indeterminateProgressStyle
+attr initialActivityCount
+attr insetForeground
+attr isLightTheme
+attr itemBackground
+attr itemHorizontalPadding
+attr itemHorizontalTranslationEnabled
+attr itemIconPadding
+attr itemIconSize
+attr itemIconTint
+attr itemPadding
+attr itemSpacing
+attr itemTextAppearance
+attr itemTextAppearanceActive
+attr itemTextAppearanceInactive
+attr itemTextColor
+attr keylines
+attr labelVisibilityMode
+attr lastBaselineToBottomHeight
+attr layout
+attr layoutManager
+attr layout_anchor
+attr layout_anchorGravity
+attr layout_behavior
+attr layout_collapseMode
+attr layout_collapseParallaxMultiplier
+attr layout_dodgeInsetEdges
+attr layout_insetEdge
+attr layout_keyline
+attr layout_scrollFlags
+attr layout_scrollInterpolator
+attr liftOnScroll
+attr lineHeight
+attr lineSpacing
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listItemLayout
+attr listLayout
+attr listMenuViewStyle
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr logoDescription
+attr materialButtonStyle
+attr materialCardViewStyle
+attr maxActionInlineWidth
+attr maxButtonHeight
+attr maxImageSize
+attr measureWithLargestChild
+attr menu
+attr multiChoiceItemLayout
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr navigationViewStyle
+attr numericModifiers
+attr overlapAnchor
+attr overlayImage
+attr paddingBottomNoButtons
+attr paddingEnd
+attr paddingStart
+attr paddingTopNoTitle
+attr panelBackground
+attr panelMenuListTheme
+attr panelMenuListWidth
+attr passwordToggleContentDescription
+attr passwordToggleDrawable
+attr passwordToggleEnabled
+attr passwordToggleTint
+attr passwordToggleTintMode
+attr placeholderImage
+attr placeholderImageScaleType
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr pressedStateOverlayImage
+attr pressedTranslationZ
+attr progressBarAutoRotateInterval
+attr progressBarImage
+attr progressBarImageScaleType
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr ratingBarStyleIndicator
+attr ratingBarStyleSmall
+attr retryImage
+attr retryImageScaleType
+attr reverseLayout
+attr rippleColor
+attr roundAsCircle
+attr roundBottomLeft
+attr roundBottomRight
+attr roundTopLeft
+attr roundTopRight
+attr roundWithOverlayColor
+attr roundedCornerRadius
+attr roundingBorderColor
+attr roundingBorderWidth
+attr scrimAnimationDuration
+attr scrimBackground
+attr scrimVisibleHeightTrigger
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr seekBarStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showMotionSpec
+attr showText
+attr showTitle
+attr show_fps
+attr singleChoiceItemLayout
+attr singleLine
+attr singleSelection
+attr snackbarButtonStyle
+attr snackbarStyle
+attr spanCount
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitTrack
+attr srcCompat
+attr stackFromEnd
+attr state_above_anchor
+attr state_collapsed
+attr state_collapsible
+attr state_liftable
+attr state_lifted
+attr statusBarBackground
+attr statusBarScrim
+attr strokeColor
+attr strokeWidth
+attr subMenuArrow
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suggestionRowLayout
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr tabBackground
+attr tabContentStart
+attr tabGravity
+attr tabIconTint
+attr tabIconTintMode
+attr tabIndicator
+attr tabIndicatorAnimationDuration
+attr tabIndicatorColor
+attr tabIndicatorFullWidth
+attr tabIndicatorGravity
+attr tabIndicatorHeight
+attr tabInlineLabel
+attr tabMaxWidth
+attr tabMinWidth
+attr tabMode
+attr tabPadding
+attr tabPaddingBottom
+attr tabPaddingEnd
+attr tabPaddingStart
+attr tabPaddingTop
+attr tabRippleColor
+attr tabSelectedTextColor
+attr tabStyle
+attr tabTextAppearance
+attr tabTextColor
+attr tabUnboundedRipple
+attr textAllCaps
+attr textAppearanceBody1
+attr textAppearanceBody2
+attr textAppearanceButton
+attr textAppearanceCaption
+attr textAppearanceHeadline1
+attr textAppearanceHeadline2
+attr textAppearanceHeadline3
+attr textAppearanceHeadline4
+attr textAppearanceHeadline5
+attr textAppearanceHeadline6
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSecondary
+attr textAppearanceListItemSmall
+attr textAppearanceOverline
+attr textAppearancePopupMenuHeader
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textAppearanceSubtitle1
+attr textAppearanceSubtitle2
+attr textColorAlertDialogListItem
+attr textColorSearchUrl
+attr textEndPadding
+attr textInputStyle
+attr textStartPadding
+attr theme
+attr thickness
+attr thumbTextPadding
+attr thumbTint
+attr thumbTintMode
+attr tickMark
+attr tickMarkTint
+attr tickMarkTintMode
+attr tint
+attr tintMode
+attr title
+attr titleEnabled
+attr titleMargin
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextStyle
+attr toolbarId
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr tooltipForegroundColor
+attr tooltipFrameBackground
+attr tooltipText
+attr track
+attr trackTint
+attr trackTintMode
+attr ttcIndex
+attr useCompatPadding
+attr viewAspectRatio
+attr viewInflaterClass
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowFixedHeightMajor
+attr windowFixedHeightMinor
+attr windowFixedWidthMajor
+attr windowFixedWidthMinor
+attr windowMinWidthMajor
+attr windowMinWidthMinor
+attr windowNoTitle
+bool abc_action_bar_embed_tabs
+bool abc_action_bar_embed_tabs_pre_jb
+bool abc_action_bar_expanded_action_views_exclusive
+bool abc_allow_stacked_button_bar
+bool abc_config_actionMenuItemAllCaps
+bool abc_config_allowActionMenuItemTextWithIcon
+bool abc_config_closeDialogWhenTouchOutside
+bool abc_config_showMenuShortcutsWhenKeyboardPresent
+bool mtrl_btn_textappearance_all_caps
+color abc_background_cache_hint_selector_material_dark
+color abc_background_cache_hint_selector_material_light
+color abc_btn_colored_borderless_text_material
+color abc_btn_colored_text_material
+color abc_color_highlight_material
+color abc_hint_foreground_material_dark
+color abc_hint_foreground_material_light
+color abc_input_method_navigation_guard
+color abc_primary_text_disable_only_material_dark
+color abc_primary_text_disable_only_material_light
+color abc_primary_text_material_dark
+color abc_primary_text_material_light
+color abc_search_url_text
+color abc_search_url_text_normal
+color abc_search_url_text_pressed
+color abc_search_url_text_selected
+color abc_secondary_text_material_dark
+color abc_secondary_text_material_light
+color abc_tint_btn_checkable
+color abc_tint_default
+color abc_tint_edittext
+color abc_tint_seek_thumb
+color abc_tint_spinner
+color abc_tint_switch_track
+color accent_material_dark
+color accent_material_light
+color background_floating_material_dark
+color background_floating_material_light
+color background_material_dark
+color background_material_light
+color bright_foreground_disabled_material_dark
+color bright_foreground_disabled_material_light
+color bright_foreground_inverse_material_dark
+color bright_foreground_inverse_material_light
+color bright_foreground_material_dark
+color bright_foreground_material_light
+color button_material_dark
+color button_material_light
+color cardview_dark_background
+color cardview_light_background
+color cardview_shadow_end_color
+color cardview_shadow_start_color
+color catalyst_redbox_background
+color design_bottom_navigation_shadow_color
+color design_default_color_primary
+color design_default_color_primary_dark
+color design_error
+color design_fab_shadow_end_color
+color design_fab_shadow_mid_color
+color design_fab_shadow_start_color
+color design_fab_stroke_end_inner_color
+color design_fab_stroke_end_outer_color
+color design_fab_stroke_top_inner_color
+color design_fab_stroke_top_outer_color
+color design_snackbar_background_color
+color design_tint_password_toggle
+color dim_foreground_disabled_material_dark
+color dim_foreground_disabled_material_light
+color dim_foreground_material_dark
+color dim_foreground_material_light
+color error_color_material_dark
+color error_color_material_light
+color foreground_material_dark
+color foreground_material_light
+color highlighted_text_material_dark
+color highlighted_text_material_light
+color hint_foreground_material_dark
+color hint_foreground_material_light
+color material_blue_grey_800
+color material_blue_grey_900
+color material_blue_grey_950
+color material_deep_teal_200
+color material_deep_teal_500
+color material_grey_100
+color material_grey_300
+color material_grey_50
+color material_grey_600
+color material_grey_800
+color material_grey_850
+color material_grey_900
+color mtrl_bottom_nav_colored_item_tint
+color mtrl_bottom_nav_item_tint
+color mtrl_btn_bg_color_disabled
+color mtrl_btn_bg_color_selector
+color mtrl_btn_ripple_color
+color mtrl_btn_stroke_color_selector
+color mtrl_btn_text_btn_ripple_color
+color mtrl_btn_text_color_disabled
+color mtrl_btn_text_color_selector
+color mtrl_btn_transparent_bg_color
+color mtrl_chip_background_color
+color mtrl_chip_close_icon_tint
+color mtrl_chip_ripple_color
+color mtrl_chip_text_color
+color mtrl_fab_ripple_color
+color mtrl_scrim_color
+color mtrl_tabs_colored_ripple_color
+color mtrl_tabs_icon_color_selector
+color mtrl_tabs_icon_color_selector_colored
+color mtrl_tabs_legacy_text_color_selector
+color mtrl_tabs_ripple_color
+color mtrl_text_btn_text_color_selector
+color mtrl_textinput_default_box_stroke_color
+color mtrl_textinput_disabled_color
+color mtrl_textinput_filled_box_default_background_color
+color mtrl_textinput_hovered_box_stroke_color
+color notification_action_color_filter
+color notification_icon_bg_color
+color primary_dark_material_dark
+color primary_dark_material_light
+color primary_material_dark
+color primary_material_light
+color primary_text_default_material_dark
+color primary_text_default_material_light
+color primary_text_disabled_material_dark
+color primary_text_disabled_material_light
+color ripple_material_dark
+color ripple_material_light
+color secondary_text_default_material_dark
+color secondary_text_default_material_light
+color secondary_text_disabled_material_dark
+color secondary_text_disabled_material_light
+color switch_thumb_disabled_material_dark
+color switch_thumb_disabled_material_light
+color switch_thumb_material_dark
+color switch_thumb_material_light
+color switch_thumb_normal_material_dark
+color switch_thumb_normal_material_light
+color tooltip_background_dark
+color tooltip_background_light
+dimen abc_action_bar_content_inset_material
+dimen abc_action_bar_content_inset_with_nav
+dimen abc_action_bar_default_height_material
+dimen abc_action_bar_default_padding_end_material
+dimen abc_action_bar_default_padding_start_material
+dimen abc_action_bar_elevation_material
+dimen abc_action_bar_icon_vertical_padding_material
+dimen abc_action_bar_overflow_padding_end_material
+dimen abc_action_bar_overflow_padding_start_material
+dimen abc_action_bar_progress_bar_size
+dimen abc_action_bar_stacked_max_height
+dimen abc_action_bar_stacked_tab_max_width
+dimen abc_action_bar_subtitle_bottom_margin_material
+dimen abc_action_bar_subtitle_top_margin_material
+dimen abc_action_button_min_height_material
+dimen abc_action_button_min_width_material
+dimen abc_action_button_min_width_overflow_material
+dimen abc_alert_dialog_button_bar_height
+dimen abc_alert_dialog_button_dimen
+dimen abc_button_inset_horizontal_material
+dimen abc_button_inset_vertical_material
+dimen abc_button_padding_horizontal_material
+dimen abc_button_padding_vertical_material
+dimen abc_cascading_menus_min_smallest_width
+dimen abc_config_prefDialogWidth
+dimen abc_control_corner_material
+dimen abc_control_inset_material
+dimen abc_control_padding_material
+dimen abc_dialog_corner_radius_material
+dimen abc_dialog_fixed_height_major
+dimen abc_dialog_fixed_height_minor
+dimen abc_dialog_fixed_width_major
+dimen abc_dialog_fixed_width_minor
+dimen abc_dialog_list_padding_bottom_no_buttons
+dimen abc_dialog_list_padding_top_no_title
+dimen abc_dialog_list_padding_vertical_material
+dimen abc_dialog_min_width_major
+dimen abc_dialog_min_width_minor
+dimen abc_dialog_padding_material
+dimen abc_dialog_padding_top_material
+dimen abc_dialog_title_divider_material
+dimen abc_disabled_alpha_material_dark
+dimen abc_disabled_alpha_material_light
+dimen abc_dropdownitem_icon_width
+dimen abc_dropdownitem_text_padding_left
+dimen abc_dropdownitem_text_padding_right
+dimen abc_edit_text_inset_bottom_material
+dimen abc_edit_text_inset_horizontal_material
+dimen abc_edit_text_inset_top_material
+dimen abc_floating_window_z
+dimen abc_list_item_padding_horizontal_material
+dimen abc_panel_menu_list_width
+dimen abc_progress_bar_height_material
+dimen abc_search_view_preferred_height
+dimen abc_search_view_preferred_width
+dimen abc_search_view_text_min_width
+dimen abc_seekbar_track_background_height_material
+dimen abc_seekbar_track_progress_height_material
+dimen abc_select_dialog_padding_start_material
+dimen abc_switch_padding
+dimen abc_text_size_body_1_material
+dimen abc_text_size_body_2_material
+dimen abc_text_size_button_material
+dimen abc_text_size_caption_material
+dimen abc_text_size_display_1_material
+dimen abc_text_size_display_2_material
+dimen abc_text_size_display_3_material
+dimen abc_text_size_display_4_material
+dimen abc_text_size_headline_material
+dimen abc_text_size_large_material
+dimen abc_text_size_medium_material
+dimen abc_text_size_menu_header_material
+dimen abc_text_size_menu_material
+dimen abc_text_size_small_material
+dimen abc_text_size_subhead_material
+dimen abc_text_size_subtitle_material_toolbar
+dimen abc_text_size_title_material
+dimen abc_text_size_title_material_toolbar
+dimen cardview_compat_inset_shadow
+dimen cardview_default_elevation
+dimen cardview_default_radius
+dimen compat_button_inset_horizontal_material
+dimen compat_button_inset_vertical_material
+dimen compat_button_padding_horizontal_material
+dimen compat_button_padding_vertical_material
+dimen compat_control_corner_material
+dimen compat_notification_large_icon_max_height
+dimen compat_notification_large_icon_max_width
+dimen design_appbar_elevation
+dimen design_bottom_navigation_active_item_max_width
+dimen design_bottom_navigation_active_item_min_width
+dimen design_bottom_navigation_active_text_size
+dimen design_bottom_navigation_elevation
+dimen design_bottom_navigation_height
+dimen design_bottom_navigation_icon_size
+dimen design_bottom_navigation_item_max_width
+dimen design_bottom_navigation_item_min_width
+dimen design_bottom_navigation_margin
+dimen design_bottom_navigation_shadow_height
+dimen design_bottom_navigation_text_size
+dimen design_bottom_sheet_modal_elevation
+dimen design_bottom_sheet_peek_height_min
+dimen design_fab_border_width
+dimen design_fab_elevation
+dimen design_fab_image_size
+dimen design_fab_size_mini
+dimen design_fab_size_normal
+dimen design_fab_translation_z_hovered_focused
+dimen design_fab_translation_z_pressed
+dimen design_navigation_elevation
+dimen design_navigation_icon_padding
+dimen design_navigation_icon_size
+dimen design_navigation_item_horizontal_padding
+dimen design_navigation_item_icon_padding
+dimen design_navigation_max_width
+dimen design_navigation_padding_bottom
+dimen design_navigation_separator_vertical_padding
+dimen design_snackbar_action_inline_max_width
+dimen design_snackbar_background_corner_radius
+dimen design_snackbar_elevation
+dimen design_snackbar_extra_spacing_horizontal
+dimen design_snackbar_max_width
+dimen design_snackbar_min_width
+dimen design_snackbar_padding_horizontal
+dimen design_snackbar_padding_vertical
+dimen design_snackbar_padding_vertical_2lines
+dimen design_snackbar_text_size
+dimen design_tab_max_width
+dimen design_tab_scrollable_min_width
+dimen design_tab_text_size
+dimen design_tab_text_size_2line
+dimen design_textinput_caption_translate_y
+dimen dialog_fixed_height_major
+dimen dialog_fixed_height_minor
+dimen dialog_fixed_width_major
+dimen dialog_fixed_width_minor
+dimen disabled_alpha_material_dark
+dimen disabled_alpha_material_light
+dimen fastscroll_default_thickness
+dimen fastscroll_margin
+dimen fastscroll_minimum_range
+dimen highlight_alpha_material_colored
+dimen highlight_alpha_material_dark
+dimen highlight_alpha_material_light
+dimen hint_alpha_material_dark
+dimen hint_alpha_material_light
+dimen hint_pressed_alpha_material_dark
+dimen hint_pressed_alpha_material_light
+dimen item_touch_helper_max_drag_scroll_per_frame
+dimen item_touch_helper_swipe_escape_max_velocity
+dimen item_touch_helper_swipe_escape_velocity
+dimen mtrl_bottomappbar_fabOffsetEndMode
+dimen mtrl_bottomappbar_fab_cradle_margin
+dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius
+dimen mtrl_bottomappbar_fab_cradle_vertical_offset
+dimen mtrl_bottomappbar_height
+dimen mtrl_btn_corner_radius
+dimen mtrl_btn_dialog_btn_min_width
+dimen mtrl_btn_disabled_elevation
+dimen mtrl_btn_disabled_z
+dimen mtrl_btn_elevation
+dimen mtrl_btn_focused_z
+dimen mtrl_btn_hovered_z
+dimen mtrl_btn_icon_btn_padding_left
+dimen mtrl_btn_icon_padding
+dimen mtrl_btn_inset
+dimen mtrl_btn_letter_spacing
+dimen mtrl_btn_padding_bottom
+dimen mtrl_btn_padding_left
+dimen mtrl_btn_padding_right
+dimen mtrl_btn_padding_top
+dimen mtrl_btn_pressed_z
+dimen mtrl_btn_stroke_size
+dimen mtrl_btn_text_btn_icon_padding
+dimen mtrl_btn_text_btn_padding_left
+dimen mtrl_btn_text_btn_padding_right
+dimen mtrl_btn_text_size
+dimen mtrl_btn_z
+dimen mtrl_card_elevation
+dimen mtrl_card_spacing
+dimen mtrl_chip_pressed_translation_z
+dimen mtrl_chip_text_size
+dimen mtrl_fab_elevation
+dimen mtrl_fab_translation_z_hovered_focused
+dimen mtrl_fab_translation_z_pressed
+dimen mtrl_navigation_elevation
+dimen mtrl_navigation_item_horizontal_padding
+dimen mtrl_navigation_item_icon_padding
+dimen mtrl_snackbar_background_corner_radius
+dimen mtrl_snackbar_margin
+dimen mtrl_textinput_box_bottom_offset
+dimen mtrl_textinput_box_corner_radius_medium
+dimen mtrl_textinput_box_corner_radius_small
+dimen mtrl_textinput_box_label_cutout_padding
+dimen mtrl_textinput_box_padding_end
+dimen mtrl_textinput_box_stroke_width_default
+dimen mtrl_textinput_box_stroke_width_focused
+dimen mtrl_textinput_outline_box_expanded_padding
+dimen mtrl_toolbar_default_height
+dimen notification_action_icon_size
+dimen notification_action_text_size
+dimen notification_big_circle_margin
+dimen notification_content_margin_start
+dimen notification_large_icon_height
+dimen notification_large_icon_width
+dimen notification_main_column_padding_top
+dimen notification_media_narrow_margin
+dimen notification_right_icon_size
+dimen notification_right_side_padding_top
+dimen notification_small_icon_background_padding
+dimen notification_small_icon_size_as_large
+dimen notification_subtext_size
+dimen notification_top_pad
+dimen notification_top_pad_large_text
+dimen tooltip_corner_radius
+dimen tooltip_horizontal_padding
+dimen tooltip_margin
+dimen tooltip_precise_anchor_extra_offset
+dimen tooltip_precise_anchor_threshold
+dimen tooltip_vertical_padding
+dimen tooltip_y_offset_non_touch
+dimen tooltip_y_offset_touch
+drawable abc_ab_share_pack_mtrl_alpha
+drawable abc_action_bar_item_background_material
+drawable abc_btn_borderless_material
+drawable abc_btn_check_material
+drawable abc_btn_check_to_on_mtrl_000
+drawable abc_btn_check_to_on_mtrl_015
+drawable abc_btn_colored_material
+drawable abc_btn_default_mtrl_shape
+drawable abc_btn_radio_material
+drawable abc_btn_radio_to_on_mtrl_000
+drawable abc_btn_radio_to_on_mtrl_015
+drawable abc_btn_rating_star_off_mtrl_alpha
+drawable abc_btn_rating_star_on_mtrl_alpha
+drawable abc_btn_switch_to_on_mtrl_00001
+drawable abc_btn_switch_to_on_mtrl_00012
+drawable abc_cab_background_internal_bg
+drawable abc_cab_background_top_material
+drawable abc_cab_background_top_mtrl_alpha
+drawable abc_control_background_material
+drawable abc_dialog_material_background
+drawable abc_dialog_material_background_dark
+drawable abc_dialog_material_background_light
+drawable abc_edit_text_material
+drawable abc_ic_ab_back_material
+drawable abc_ic_ab_back_mtrl_am_alpha
+drawable abc_ic_arrow_drop_right_black_24dp
+drawable abc_ic_clear_material
+drawable abc_ic_clear_mtrl_alpha
+drawable abc_ic_commit_search_api_mtrl_alpha
+drawable abc_ic_go_search_api_material
+drawable abc_ic_go_search_api_mtrl_alpha
+drawable abc_ic_menu_copy_mtrl_am_alpha
+drawable abc_ic_menu_cut_mtrl_alpha
+drawable abc_ic_menu_moreoverflow_mtrl_alpha
+drawable abc_ic_menu_overflow_material
+drawable abc_ic_menu_paste_mtrl_am_alpha
+drawable abc_ic_menu_selectall_mtrl_alpha
+drawable abc_ic_menu_share_mtrl_alpha
+drawable abc_ic_search_api_material
+drawable abc_ic_search_api_mtrl_alpha
+drawable abc_ic_star_black_16dp
+drawable abc_ic_star_black_36dp
+drawable abc_ic_star_black_48dp
+drawable abc_ic_star_half_black_16dp
+drawable abc_ic_star_half_black_36dp
+drawable abc_ic_star_half_black_48dp
+drawable abc_ic_voice_search_api_material
+drawable abc_ic_voice_search_api_mtrl_alpha
+drawable abc_item_background_holo_dark
+drawable abc_item_background_holo_light
+drawable abc_list_divider_material
+drawable abc_list_divider_mtrl_alpha
+drawable abc_list_focused_holo
+drawable abc_list_longpressed_holo
+drawable abc_list_pressed_holo_dark
+drawable abc_list_pressed_holo_light
+drawable abc_list_selector_background_transition_holo_dark
+drawable abc_list_selector_background_transition_holo_light
+drawable abc_list_selector_disabled_holo_dark
+drawable abc_list_selector_disabled_holo_light
+drawable abc_list_selector_holo_dark
+drawable abc_list_selector_holo_light
+drawable abc_menu_hardkey_panel_mtrl_mult
+drawable abc_popup_background_mtrl_mult
+drawable abc_ratingbar_full_material
+drawable abc_ratingbar_indicator_material
+drawable abc_ratingbar_material
+drawable abc_ratingbar_small_material
+drawable abc_scrubber_control_off_mtrl_alpha
+drawable abc_scrubber_control_to_pressed_mtrl_000
+drawable abc_scrubber_control_to_pressed_mtrl_005
+drawable abc_scrubber_primary_mtrl_alpha
+drawable abc_scrubber_track_mtrl_alpha
+drawable abc_seekbar_thumb_material
+drawable abc_seekbar_tick_mark_material
+drawable abc_seekbar_track_material
+drawable abc_spinner_mtrl_am_alpha
+drawable abc_spinner_textfield_background_material
+drawable abc_switch_thumb_material
+drawable abc_switch_track_mtrl_alpha
+drawable abc_tab_indicator_material
+drawable abc_tab_indicator_mtrl_alpha
+drawable abc_text_cursor_material
+drawable abc_text_select_handle_left_mtrl_dark
+drawable abc_text_select_handle_left_mtrl_light
+drawable abc_text_select_handle_middle_mtrl_dark
+drawable abc_text_select_handle_middle_mtrl_light
+drawable abc_text_select_handle_right_mtrl_dark
+drawable abc_text_select_handle_right_mtrl_light
+drawable abc_textfield_activated_mtrl_alpha
+drawable abc_textfield_default_mtrl_alpha
+drawable abc_textfield_search_activated_mtrl_alpha
+drawable abc_textfield_search_default_mtrl_alpha
+drawable abc_textfield_search_material
+drawable abc_vector_test
+drawable avd_hide_password
+drawable avd_show_password
+drawable design_bottom_navigation_item_background
+drawable design_fab_background
+drawable design_ic_visibility
+drawable design_ic_visibility_off
+drawable design_password_eye
+drawable design_snackbar_background
+drawable ic_mtrl_chip_checked_black
+drawable ic_mtrl_chip_checked_circle
+drawable ic_mtrl_chip_close_circle
+drawable mtrl_snackbar_background
+drawable mtrl_tabs_default_indicator
+drawable navigation_empty_icon
+drawable notification_action_background
+drawable notification_bg
+drawable notification_bg_low
+drawable notification_bg_low_normal
+drawable notification_bg_low_pressed
+drawable notification_bg_normal
+drawable notification_bg_normal_pressed
+drawable notification_icon_background
+drawable notification_template_icon_bg
+drawable notification_template_icon_low_bg
+drawable notification_tile_bg
+drawable notify_panel_notification_icon_bg
+drawable tooltip_frame_dark
+drawable tooltip_frame_light
+id action0
+id action_bar
+id action_bar_activity_content
+id action_bar_container
+id action_bar_root
+id action_bar_spinner
+id action_bar_subtitle
+id action_bar_title
+id action_container
+id action_context_bar
+id action_divider
+id action_image
+id action_menu_divider
+id action_menu_presenter
+id action_mode_bar
+id action_mode_bar_stub
+id action_mode_close_button
+id action_text
+id actions
+id activity_chooser_view_content
+id add
+id alertTitle
+id always
+id any
+id async
+id auto
+id back
+id beginning
+id blink_view
+id blocking
+id bottom
+id buttonPanel
+id cancel_action
+id catalyst_redbox_title
+id center
+id centerCrop
+id centerInside
+id checkbox
+id chronometer
+id collapseActionView
+id container
+id content
+id contentPanel
+id coordinator
+id custom
+id customPanel
+id decor_content_parent
+id default_activity_button
+id design_bottom_sheet
+id design_menu_item_action_area
+id design_menu_item_action_area_stub
+id design_menu_item_text
+id design_navigation_view
+id disableHome
+id edit_query
+id end
+id end_padder
+id expand_activities_button
+id expanded_menu
+id fill
+id filled
+id fitCenter
+id fitEnd
+id fitStart
+id fitXY
+id fixed
+id focusCrop
+id forever
+id fps_text
+id front
+id ghost_view
+id group_divider
+id home
+id homeAsUp
+id hud
+id icon
+id icon_group
+id ifRoom
+id image
+id info
+id italic
+id item_touch_helper_previous_elevation
+id labeled
+id largeLabel
+id left
+id line1
+id line3
+id listMode
+id list_item
+id masked
+id media_actions
+id message
+id middle
+id mini
+id mtrl_child_content_container
+id mtrl_internal_children_alpha_tag
+id multiply
+id navigation_header_container
+id never
+id none
+id normal
+id notification_background
+id notification_main_column
+id notification_main_column_container
+id outline
+id parallax
+id parentPanel
+id parent_matrix
+id pin
+id progress_circular
+id progress_horizontal
+id radio
+id right
+id right_icon
+id right_side
+id rn_frame_file
+id rn_frame_method
+id rn_redbox_reloadjs
+id rn_redbox_stack
+id save_image_matrix
+id save_non_transition_alpha
+id save_scale_type
+id scannedAnimation
+id screen
+id scrollIndicatorDown
+id scrollIndicatorUp
+id scrollView
+id scrollable
+id search_badge
+id search_bar
+id search_button
+id search_close_btn
+id search_edit_frame
+id search_go_btn
+id search_mag_icon
+id search_plate
+id search_src_text
+id search_voice_btn
+id select_dialog_listview
+id selected
+id shortcut
+id showCustom
+id showHome
+id showTitle
+id smallLabel
+id snackbar_action
+id snackbar_text
+id spacer
+id split_action_bar
+id src_atop
+id src_in
+id src_over
+id start
+id status_bar_latest_event_content
+id stretch
+id submenuarrow
+id submit_area
+id surfaceView
+id tabMode
+id tag_transition_group
+id tag_unhandled_key_event_manager
+id tag_unhandled_key_listeners
+id text
+id text2
+id textSpacerNoButtons
+id textSpacerNoTitle
+id text_input_password_toggle
+id textinput_counter
+id textinput_error
+id textinput_helper_text
+id time
+id title
+id titleDividerNoCustom
+id title_template
+id top
+id topPanel
+id touch_outside
+id transition_current_scene
+id transition_layout_save
+id transition_position
+id transition_scene_layoutid_cache
+id transition_transform
+id uniform
+id unlabeled
+id up
+id useLogo
+id view_offset_helper
+id visible
+id wait_spinner
+id withText
+id wrap_content
+integer abc_config_activityDefaultDur
+integer abc_config_activityShortDur
+integer abc_max_action_buttons
+integer app_bar_elevation_anim_duration
+integer bottom_sheet_slide_duration
+integer cancel_button_image_alpha
+integer config_tooltipAnimTime
+integer design_snackbar_text_max_lines
+integer design_tab_indicator_anim_duration_ms
+integer hide_password_duration
+integer mtrl_btn_anim_delay_ms
+integer mtrl_btn_anim_duration_ms
+integer mtrl_chip_anim_duration
+integer mtrl_tab_indicator_anim_duration_ms
+integer show_password_duration
+integer status_bar_notification_info_maxnum
+interpolator mtrl_fast_out_linear_in
+interpolator mtrl_fast_out_slow_in
+interpolator mtrl_linear
+interpolator mtrl_linear_out_slow_in
+layout abc_action_bar_title_item
+layout abc_action_bar_up_container
+layout abc_action_bar_view_list_nav_layout
+layout abc_action_menu_item_layout
+layout abc_action_menu_layout
+layout abc_action_mode_bar
+layout abc_action_mode_close_item_material
+layout abc_activity_chooser_view
+layout abc_activity_chooser_view_list_item
+layout abc_alert_dialog_button_bar_material
+layout abc_alert_dialog_material
+layout abc_alert_dialog_title_material
+layout abc_cascading_menu_item_layout
+layout abc_dialog_title_material
+layout abc_expanded_menu_layout
+layout abc_list_menu_item_checkbox
+layout abc_list_menu_item_icon
+layout abc_list_menu_item_layout
+layout abc_list_menu_item_radio
+layout abc_popup_menu_header_item_layout
+layout abc_popup_menu_item_layout
+layout abc_screen_content_include
+layout abc_screen_simple
+layout abc_screen_simple_overlay_action_mode
+layout abc_screen_toolbar
+layout abc_search_dropdown_item_icons_2line
+layout abc_search_view
+layout abc_select_dialog_material
+layout abc_tooltip
+layout activity_open_note_scanner
+layout design_bottom_navigation_item
+layout design_bottom_sheet_dialog
+layout design_layout_snackbar
+layout design_layout_snackbar_include
+layout design_layout_tab_icon
+layout design_layout_tab_text
+layout design_menu_item_action_area
+layout design_navigation_item
+layout design_navigation_item_header
+layout design_navigation_item_separator
+layout design_navigation_item_subheader
+layout design_navigation_menu
+layout design_navigation_menu_item
+layout design_text_input_password_icon
+layout fps_view
+layout mtrl_layout_snackbar
+layout mtrl_layout_snackbar_include
+layout notification_action
+layout notification_action_tombstone
+layout notification_media_action
+layout notification_media_cancel_action
+layout notification_template_big_media
+layout notification_template_big_media_narrow
+layout notification_template_custom_big
+layout notification_template_icon_group
+layout notification_template_lines
+layout notification_template_media
+layout notification_template_part_chronometer
+layout notification_template_part_time
+layout redbox_item_frame
+layout redbox_item_title
+layout redbox_view
+layout select_dialog_item_material
+layout select_dialog_multichoice_material
+layout select_dialog_singlechoice_material
+layout support_simple_spinner_dropdown_item
+string abc_action_bar_home_description
+string abc_action_bar_home_description_format
+string abc_action_bar_home_subtitle_description_format
+string abc_action_bar_up_description
+string abc_action_menu_overflow_description
+string abc_action_mode_done
+string abc_activity_chooser_view_see_all
+string abc_activitychooserview_choose_application
+string abc_capital_off
+string abc_capital_on
+string abc_font_family_body_1_material
+string abc_font_family_body_2_material
+string abc_font_family_button_material
+string abc_font_family_caption_material
+string abc_font_family_display_1_material
+string abc_font_family_display_2_material
+string abc_font_family_display_3_material
+string abc_font_family_display_4_material
+string abc_font_family_headline_material
+string abc_font_family_menu_material
+string abc_font_family_subhead_material
+string abc_font_family_title_material
+string abc_menu_alt_shortcut_label
+string abc_menu_ctrl_shortcut_label
+string abc_menu_delete_shortcut_label
+string abc_menu_enter_shortcut_label
+string abc_menu_function_shortcut_label
+string abc_menu_meta_shortcut_label
+string abc_menu_shift_shortcut_label
+string abc_menu_space_shortcut_label
+string abc_menu_sym_shortcut_label
+string abc_prepend_shortcut_label
+string abc_search_hint
+string abc_searchview_description_clear
+string abc_searchview_description_query
+string abc_searchview_description_search
+string abc_searchview_description_submit
+string abc_searchview_description_voice
+string abc_shareactionprovider_share_with
+string abc_shareactionprovider_share_with_application
+string abc_toolbar_collapse_description
+string app_name
+string appbar_scrolling_view_behavior
+string bottom_sheet_behavior
+string catalyst_debugjs
+string catalyst_debugjs_off
+string catalyst_element_inspector
+string catalyst_element_inspector_off
+string catalyst_hot_module_replacement
+string catalyst_hot_module_replacement_off
+string catalyst_jsload_error
+string catalyst_jsload_message
+string catalyst_jsload_title
+string catalyst_live_reload
+string catalyst_live_reload_off
+string catalyst_perf_monitor
+string catalyst_perf_monitor_off
+string catalyst_reloadjs
+string catalyst_remotedbg_error
+string catalyst_remotedbg_message
+string catalyst_settings
+string catalyst_settings_title
+string catalyst_start_profile
+string catalyst_stop_profile
+string character_counter_content_description
+string character_counter_pattern
+string fab_transformation_scrim_behavior
+string fab_transformation_sheet_behavior
+string hide_bottom_view_on_scroll_behavior
+string mtrl_chip_close_icon_content_description
+string password_toggle_content_description
+string path_password_eye
+string path_password_eye_mask_strike_through
+string path_password_eye_mask_visible
+string path_password_strike_through
+string search_menu_title
+string status_bar_notification_info_overflow
+style AlertDialog_AppCompat
+style AlertDialog_AppCompat_Light
+style Animation_AppCompat_Dialog
+style Animation_AppCompat_DropDownUp
+style Animation_AppCompat_Tooltip
+style Animation_Catalyst_RedBox
+style Animation_Design_BottomSheetDialog
+style Base_AlertDialog_AppCompat
+style Base_AlertDialog_AppCompat_Light
+style Base_Animation_AppCompat_Dialog
+style Base_Animation_AppCompat_DropDownUp
+style Base_Animation_AppCompat_Tooltip
+style Base_CardView
+style Base_DialogWindowTitleBackground_AppCompat
+style Base_DialogWindowTitle_AppCompat
+style Base_TextAppearance_AppCompat
+style Base_TextAppearance_AppCompat_Body1
+style Base_TextAppearance_AppCompat_Body2
+style Base_TextAppearance_AppCompat_Button
+style Base_TextAppearance_AppCompat_Caption
+style Base_TextAppearance_AppCompat_Display1
+style Base_TextAppearance_AppCompat_Display2
+style Base_TextAppearance_AppCompat_Display3
+style Base_TextAppearance_AppCompat_Display4
+style Base_TextAppearance_AppCompat_Headline
+style Base_TextAppearance_AppCompat_Inverse
+style Base_TextAppearance_AppCompat_Large
+style Base_TextAppearance_AppCompat_Large_Inverse
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Medium
+style Base_TextAppearance_AppCompat_Medium_Inverse
+style Base_TextAppearance_AppCompat_Menu
+style Base_TextAppearance_AppCompat_SearchResult
+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
+style Base_TextAppearance_AppCompat_SearchResult_Title
+style Base_TextAppearance_AppCompat_Small
+style Base_TextAppearance_AppCompat_Small_Inverse
+style Base_TextAppearance_AppCompat_Subhead
+style Base_TextAppearance_AppCompat_Subhead_Inverse
+style Base_TextAppearance_AppCompat_Title
+style Base_TextAppearance_AppCompat_Title_Inverse
+style Base_TextAppearance_AppCompat_Tooltip
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
+style Base_TextAppearance_AppCompat_Widget_Button
+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Inverse
+style Base_TextAppearance_AppCompat_Widget_DropDownItem
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Widget_Switch
+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
+style Base_ThemeOverlay_AppCompat
+style Base_ThemeOverlay_AppCompat_ActionBar
+style Base_ThemeOverlay_AppCompat_Dark
+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
+style Base_ThemeOverlay_AppCompat_Dialog
+style Base_ThemeOverlay_AppCompat_Dialog_Alert
+style Base_ThemeOverlay_AppCompat_Light
+style Base_ThemeOverlay_MaterialComponents_Dialog
+style Base_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_Theme_AppCompat
+style Base_Theme_AppCompat_CompactMenu
+style Base_Theme_AppCompat_Dialog
+style Base_Theme_AppCompat_DialogWhenLarge
+style Base_Theme_AppCompat_Dialog_Alert
+style Base_Theme_AppCompat_Dialog_FixedSize
+style Base_Theme_AppCompat_Dialog_MinWidth
+style Base_Theme_AppCompat_Light
+style Base_Theme_AppCompat_Light_DarkActionBar
+style Base_Theme_AppCompat_Light_Dialog
+style Base_Theme_AppCompat_Light_DialogWhenLarge
+style Base_Theme_AppCompat_Light_Dialog_Alert
+style Base_Theme_AppCompat_Light_Dialog_FixedSize
+style Base_Theme_AppCompat_Light_Dialog_MinWidth
+style Base_Theme_MaterialComponents
+style Base_Theme_MaterialComponents_Bridge
+style Base_Theme_MaterialComponents_CompactMenu
+style Base_Theme_MaterialComponents_Dialog
+style Base_Theme_MaterialComponents_DialogWhenLarge
+style Base_Theme_MaterialComponents_Dialog_Alert
+style Base_Theme_MaterialComponents_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Dialog_MinWidth
+style Base_Theme_MaterialComponents_Light
+style Base_Theme_MaterialComponents_Light_Bridge
+style Base_Theme_MaterialComponents_Light_DarkActionBar
+style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_Theme_MaterialComponents_Light_Dialog
+style Base_Theme_MaterialComponents_Light_DialogWhenLarge
+style Base_Theme_MaterialComponents_Light_Dialog_Alert
+style Base_Theme_MaterialComponents_Light_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Light_Dialog_MinWidth
+style Base_V11_Theme_AppCompat_Dialog
+style Base_V11_Theme_AppCompat_Light_Dialog
+style Base_V12_Widget_AppCompat_AutoCompleteTextView
+style Base_V12_Widget_AppCompat_EditText
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_V14_Theme_MaterialComponents
+style Base_V14_Theme_MaterialComponents_Bridge
+style Base_V14_Theme_MaterialComponents_Dialog
+style Base_V14_Theme_MaterialComponents_Light
+style Base_V14_Theme_MaterialComponents_Light_Bridge
+style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_V14_Theme_MaterialComponents_Light_Dialog
+style Base_V21_ThemeOverlay_AppCompat_Dialog
+style Base_V21_Theme_AppCompat
+style Base_V21_Theme_AppCompat_Dialog
+style Base_V21_Theme_AppCompat_Light
+style Base_V21_Theme_AppCompat_Light_Dialog
+style Base_V22_Theme_AppCompat
+style Base_V22_Theme_AppCompat_Light
+style Base_V23_Theme_AppCompat
+style Base_V23_Theme_AppCompat_Light
+style Base_V26_Theme_AppCompat
+style Base_V26_Theme_AppCompat_Light
+style Base_V26_Widget_AppCompat_Toolbar
+style Base_V28_Theme_AppCompat
+style Base_V28_Theme_AppCompat_Light
+style Base_V7_ThemeOverlay_AppCompat_Dialog
+style Base_V7_Theme_AppCompat
+style Base_V7_Theme_AppCompat_Dialog
+style Base_V7_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat_Light_Dialog
+style Base_V7_Widget_AppCompat_AutoCompleteTextView
+style Base_V7_Widget_AppCompat_EditText
+style Base_V7_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_ActionBar
+style Base_Widget_AppCompat_ActionBar_Solid
+style Base_Widget_AppCompat_ActionBar_TabBar
+style Base_Widget_AppCompat_ActionBar_TabText
+style Base_Widget_AppCompat_ActionBar_TabView
+style Base_Widget_AppCompat_ActionButton
+style Base_Widget_AppCompat_ActionButton_CloseMode
+style Base_Widget_AppCompat_ActionButton_Overflow
+style Base_Widget_AppCompat_ActionMode
+style Base_Widget_AppCompat_ActivityChooserView
+style Base_Widget_AppCompat_AutoCompleteTextView
+style Base_Widget_AppCompat_Button
+style Base_Widget_AppCompat_ButtonBar
+style Base_Widget_AppCompat_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Borderless
+style Base_Widget_AppCompat_Button_Borderless_Colored
+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Colored
+style Base_Widget_AppCompat_Button_Small
+style Base_Widget_AppCompat_CompoundButton_CheckBox
+style Base_Widget_AppCompat_CompoundButton_RadioButton
+style Base_Widget_AppCompat_CompoundButton_Switch
+style Base_Widget_AppCompat_DrawerArrowToggle
+style Base_Widget_AppCompat_DrawerArrowToggle_Common
+style Base_Widget_AppCompat_DropDownItem_Spinner
+style Base_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ImageButton
+style Base_Widget_AppCompat_Light_ActionBar
+style Base_Widget_AppCompat_Light_ActionBar_Solid
+style Base_Widget_AppCompat_Light_ActionBar_TabBar
+style Base_Widget_AppCompat_Light_ActionBar_TabText
+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Base_Widget_AppCompat_Light_ActionBar_TabView
+style Base_Widget_AppCompat_Light_PopupMenu
+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
+style Base_Widget_AppCompat_ListMenuView
+style Base_Widget_AppCompat_ListPopupWindow
+style Base_Widget_AppCompat_ListView
+style Base_Widget_AppCompat_ListView_DropDown
+style Base_Widget_AppCompat_ListView_Menu
+style Base_Widget_AppCompat_PopupMenu
+style Base_Widget_AppCompat_PopupMenu_Overflow
+style Base_Widget_AppCompat_PopupWindow
+style Base_Widget_AppCompat_ProgressBar
+style Base_Widget_AppCompat_ProgressBar_Horizontal
+style Base_Widget_AppCompat_RatingBar
+style Base_Widget_AppCompat_RatingBar_Indicator
+style Base_Widget_AppCompat_RatingBar_Small
+style Base_Widget_AppCompat_SearchView
+style Base_Widget_AppCompat_SearchView_ActionBar
+style Base_Widget_AppCompat_SeekBar
+style Base_Widget_AppCompat_SeekBar_Discrete
+style Base_Widget_AppCompat_Spinner
+style Base_Widget_AppCompat_Spinner_Underlined
+style Base_Widget_AppCompat_TextView_SpinnerItem
+style Base_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_Toolbar_Button_Navigation
+style Base_Widget_Design_TabLayout
+style Base_Widget_MaterialComponents_Chip
+style Base_Widget_MaterialComponents_TextInputEditText
+style Base_Widget_MaterialComponents_TextInputLayout
+style CardView
+style CardView_Dark
+style CardView_Light
+style Platform_AppCompat
+style Platform_AppCompat_Light
+style Platform_MaterialComponents
+style Platform_MaterialComponents_Dialog
+style Platform_MaterialComponents_Light
+style Platform_MaterialComponents_Light_Dialog
+style Platform_ThemeOverlay_AppCompat
+style Platform_ThemeOverlay_AppCompat_Dark
+style Platform_ThemeOverlay_AppCompat_Light
+style Platform_V11_AppCompat
+style Platform_V11_AppCompat_Light
+style Platform_V14_AppCompat
+style Platform_V14_AppCompat_Light
+style Platform_V21_AppCompat
+style Platform_V21_AppCompat_Light
+style Platform_V25_AppCompat
+style Platform_V25_AppCompat_Light
+style Platform_Widget_AppCompat_Spinner
+style RtlOverlay_DialogWindowTitle_AppCompat
+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
+style RtlOverlay_Widget_AppCompat_ActionButton_Overflow
+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
+style RtlOverlay_Widget_AppCompat_PopupMenuItem
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
+style RtlOverlay_Widget_AppCompat_Search_DropDown
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
+style RtlUnderlay_Widget_AppCompat_ActionButton
+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
+style TextAppearance_AppCompat
+style TextAppearance_AppCompat_Body1
+style TextAppearance_AppCompat_Body2
+style TextAppearance_AppCompat_Button
+style TextAppearance_AppCompat_Caption
+style TextAppearance_AppCompat_Display1
+style TextAppearance_AppCompat_Display2
+style TextAppearance_AppCompat_Display3
+style TextAppearance_AppCompat_Display4
+style TextAppearance_AppCompat_Headline
+style TextAppearance_AppCompat_Inverse
+style TextAppearance_AppCompat_Large
+style TextAppearance_AppCompat_Large_Inverse
+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
+style TextAppearance_AppCompat_Light_SearchResult_Title
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Medium
+style TextAppearance_AppCompat_Medium_Inverse
+style TextAppearance_AppCompat_Menu
+style TextAppearance_AppCompat_SearchResult_Subtitle
+style TextAppearance_AppCompat_SearchResult_Title
+style TextAppearance_AppCompat_Small
+style TextAppearance_AppCompat_Small_Inverse
+style TextAppearance_AppCompat_Subhead
+style TextAppearance_AppCompat_Subhead_Inverse
+style TextAppearance_AppCompat_Title
+style TextAppearance_AppCompat_Title_Inverse
+style TextAppearance_AppCompat_Tooltip
+style TextAppearance_AppCompat_Widget_ActionBar_Menu
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Title
+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Title
+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
+style TextAppearance_AppCompat_Widget_Button
+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style TextAppearance_AppCompat_Widget_Button_Colored
+style TextAppearance_AppCompat_Widget_Button_Inverse
+style TextAppearance_AppCompat_Widget_DropDownItem
+style TextAppearance_AppCompat_Widget_PopupMenu_Header
+style TextAppearance_AppCompat_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Widget_Switch
+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style TextAppearance_Compat_Notification
+style TextAppearance_Compat_Notification_Info
+style TextAppearance_Compat_Notification_Line2
+style TextAppearance_Compat_Notification_Time
+style TextAppearance_Compat_Notification_Title
+style TextAppearance_Design_CollapsingToolbar_Expanded
+style TextAppearance_Design_Counter
+style TextAppearance_Design_Counter_Overflow
+style TextAppearance_Design_Error
+style TextAppearance_Design_HelperText
+style TextAppearance_Design_Hint
+style TextAppearance_Design_Snackbar_Message
+style TextAppearance_Design_Tab
+style TextAppearance_MaterialComponents_Body1
+style TextAppearance_MaterialComponents_Body2
+style TextAppearance_MaterialComponents_Button
+style TextAppearance_MaterialComponents_Caption
+style TextAppearance_MaterialComponents_Chip
+style TextAppearance_MaterialComponents_Headline1
+style TextAppearance_MaterialComponents_Headline2
+style TextAppearance_MaterialComponents_Headline3
+style TextAppearance_MaterialComponents_Headline4
+style TextAppearance_MaterialComponents_Headline5
+style TextAppearance_MaterialComponents_Headline6
+style TextAppearance_MaterialComponents_Overline
+style TextAppearance_MaterialComponents_Subtitle1
+style TextAppearance_MaterialComponents_Subtitle2
+style TextAppearance_MaterialComponents_Tab
+style TextAppearance_StatusBar_EventContent
+style TextAppearance_StatusBar_EventContent_Info
+style TextAppearance_StatusBar_EventContent_Line2
+style TextAppearance_StatusBar_EventContent_Time
+style TextAppearance_StatusBar_EventContent_Title
+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style TextAppearance_Widget_AppCompat_Toolbar_Title
+style Theme
+style ThemeOverlay_AppCompat
+style ThemeOverlay_AppCompat_ActionBar
+style ThemeOverlay_AppCompat_Dark
+style ThemeOverlay_AppCompat_Dark_ActionBar
+style ThemeOverlay_AppCompat_Dialog
+style ThemeOverlay_AppCompat_Dialog_Alert
+style ThemeOverlay_AppCompat_Light
+style ThemeOverlay_MaterialComponents
+style ThemeOverlay_MaterialComponents_ActionBar
+style ThemeOverlay_MaterialComponents_Dark
+style ThemeOverlay_MaterialComponents_Dark_ActionBar
+style ThemeOverlay_MaterialComponents_Dialog
+style ThemeOverlay_MaterialComponents_Dialog_Alert
+style ThemeOverlay_MaterialComponents_Light
+style ThemeOverlay_MaterialComponents_TextInputEditText
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style Theme_AppCompat
+style Theme_AppCompat_CompactMenu
+style Theme_AppCompat_DayNight
+style Theme_AppCompat_DayNight_DarkActionBar
+style Theme_AppCompat_DayNight_Dialog
+style Theme_AppCompat_DayNight_DialogWhenLarge
+style Theme_AppCompat_DayNight_Dialog_Alert
+style Theme_AppCompat_DayNight_Dialog_MinWidth
+style Theme_AppCompat_DayNight_NoActionBar
+style Theme_AppCompat_Dialog
+style Theme_AppCompat_DialogWhenLarge
+style Theme_AppCompat_Dialog_Alert
+style Theme_AppCompat_Dialog_MinWidth
+style Theme_AppCompat_Light
+style Theme_AppCompat_Light_DarkActionBar
+style Theme_AppCompat_Light_Dialog
+style Theme_AppCompat_Light_DialogWhenLarge
+style Theme_AppCompat_Light_Dialog_Alert
+style Theme_AppCompat_Light_Dialog_MinWidth
+style Theme_AppCompat_Light_NoActionBar
+style Theme_AppCompat_NoActionBar
+style Theme_Catalyst
+style Theme_Catalyst_RedBox
+style Theme_Design
+style Theme_Design_BottomSheetDialog
+style Theme_Design_Light
+style Theme_Design_Light_BottomSheetDialog
+style Theme_Design_Light_NoActionBar
+style Theme_Design_NoActionBar
+style Theme_MaterialComponents
+style Theme_MaterialComponents_BottomSheetDialog
+style Theme_MaterialComponents_Bridge
+style Theme_MaterialComponents_CompactMenu
+style Theme_MaterialComponents_Dialog
+style Theme_MaterialComponents_DialogWhenLarge
+style Theme_MaterialComponents_Dialog_Alert
+style Theme_MaterialComponents_Dialog_MinWidth
+style Theme_MaterialComponents_Light
+style Theme_MaterialComponents_Light_BottomSheetDialog
+style Theme_MaterialComponents_Light_Bridge
+style Theme_MaterialComponents_Light_DarkActionBar
+style Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Theme_MaterialComponents_Light_Dialog
+style Theme_MaterialComponents_Light_DialogWhenLarge
+style Theme_MaterialComponents_Light_Dialog_Alert
+style Theme_MaterialComponents_Light_Dialog_MinWidth
+style Theme_MaterialComponents_Light_NoActionBar
+style Theme_MaterialComponents_Light_NoActionBar_Bridge
+style Theme_MaterialComponents_NoActionBar
+style Theme_MaterialComponents_NoActionBar_Bridge
+style Theme_ReactNative_AppCompat_Light
+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen
+style Widget_AppCompat_ActionBar
+style Widget_AppCompat_ActionBar_Solid
+style Widget_AppCompat_ActionBar_TabBar
+style Widget_AppCompat_ActionBar_TabText
+style Widget_AppCompat_ActionBar_TabView
+style Widget_AppCompat_ActionButton
+style Widget_AppCompat_ActionButton_CloseMode
+style Widget_AppCompat_ActionButton_Overflow
+style Widget_AppCompat_ActionMode
+style Widget_AppCompat_ActivityChooserView
+style Widget_AppCompat_AutoCompleteTextView
+style Widget_AppCompat_Button
+style Widget_AppCompat_ButtonBar
+style Widget_AppCompat_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Borderless
+style Widget_AppCompat_Button_Borderless_Colored
+style Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Colored
+style Widget_AppCompat_Button_Small
+style Widget_AppCompat_CompoundButton_CheckBox
+style Widget_AppCompat_CompoundButton_RadioButton
+style Widget_AppCompat_CompoundButton_Switch
+style Widget_AppCompat_DrawerArrowToggle
+style Widget_AppCompat_DropDownItem_Spinner
+style Widget_AppCompat_EditText
+style Widget_AppCompat_ImageButton
+style Widget_AppCompat_Light_ActionBar
+style Widget_AppCompat_Light_ActionBar_Solid
+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
+style Widget_AppCompat_Light_ActionBar_TabBar
+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
+style Widget_AppCompat_Light_ActionBar_TabText
+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Widget_AppCompat_Light_ActionBar_TabView
+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
+style Widget_AppCompat_Light_ActionButton
+style Widget_AppCompat_Light_ActionButton_CloseMode
+style Widget_AppCompat_Light_ActionButton_Overflow
+style Widget_AppCompat_Light_ActionMode_Inverse
+style Widget_AppCompat_Light_ActivityChooserView
+style Widget_AppCompat_Light_AutoCompleteTextView
+style Widget_AppCompat_Light_DropDownItem_Spinner
+style Widget_AppCompat_Light_ListPopupWindow
+style Widget_AppCompat_Light_ListView_DropDown
+style Widget_AppCompat_Light_PopupMenu
+style Widget_AppCompat_Light_PopupMenu_Overflow
+style Widget_AppCompat_Light_SearchView
+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
+style Widget_AppCompat_ListMenuView
+style Widget_AppCompat_ListPopupWindow
+style Widget_AppCompat_ListView
+style Widget_AppCompat_ListView_DropDown
+style Widget_AppCompat_ListView_Menu
+style Widget_AppCompat_PopupMenu
+style Widget_AppCompat_PopupMenu_Overflow
+style Widget_AppCompat_PopupWindow
+style Widget_AppCompat_ProgressBar
+style Widget_AppCompat_ProgressBar_Horizontal
+style Widget_AppCompat_RatingBar
+style Widget_AppCompat_RatingBar_Indicator
+style Widget_AppCompat_RatingBar_Small
+style Widget_AppCompat_SearchView
+style Widget_AppCompat_SearchView_ActionBar
+style Widget_AppCompat_SeekBar
+style Widget_AppCompat_SeekBar_Discrete
+style Widget_AppCompat_Spinner
+style Widget_AppCompat_Spinner_DropDown
+style Widget_AppCompat_Spinner_DropDown_ActionBar
+style Widget_AppCompat_Spinner_Underlined
+style Widget_AppCompat_TextView_SpinnerItem
+style Widget_AppCompat_Toolbar
+style Widget_AppCompat_Toolbar_Button_Navigation
+style Widget_Compat_NotificationActionContainer
+style Widget_Compat_NotificationActionText
+style Widget_Design_AppBarLayout
+style Widget_Design_BottomNavigationView
+style Widget_Design_BottomSheet_Modal
+style Widget_Design_CollapsingToolbar
+style Widget_Design_FloatingActionButton
+style Widget_Design_NavigationView
+style Widget_Design_ScrimInsetsFrameLayout
+style Widget_Design_Snackbar
+style Widget_Design_TabLayout
+style Widget_Design_TextInputLayout
+style Widget_MaterialComponents_BottomAppBar
+style Widget_MaterialComponents_BottomAppBar_Colored
+style Widget_MaterialComponents_BottomNavigationView
+style Widget_MaterialComponents_BottomNavigationView_Colored
+style Widget_MaterialComponents_BottomSheet_Modal
+style Widget_MaterialComponents_Button
+style Widget_MaterialComponents_Button_Icon
+style Widget_MaterialComponents_Button_OutlinedButton
+style Widget_MaterialComponents_Button_OutlinedButton_Icon
+style Widget_MaterialComponents_Button_TextButton
+style Widget_MaterialComponents_Button_TextButton_Dialog
+style Widget_MaterialComponents_Button_TextButton_Dialog_Icon
+style Widget_MaterialComponents_Button_TextButton_Icon
+style Widget_MaterialComponents_Button_UnelevatedButton
+style Widget_MaterialComponents_Button_UnelevatedButton_Icon
+style Widget_MaterialComponents_CardView
+style Widget_MaterialComponents_ChipGroup
+style Widget_MaterialComponents_Chip_Action
+style Widget_MaterialComponents_Chip_Choice
+style Widget_MaterialComponents_Chip_Entry
+style Widget_MaterialComponents_Chip_Filter
+style Widget_MaterialComponents_FloatingActionButton
+style Widget_MaterialComponents_NavigationView
+style Widget_MaterialComponents_Snackbar
+style Widget_MaterialComponents_Snackbar_FullWidth
+style Widget_MaterialComponents_TabLayout
+style Widget_MaterialComponents_TabLayout_Colored
+style Widget_MaterialComponents_TextInputEditText_FilledBox
+style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style Widget_MaterialComponents_TextInputLayout_FilledBox
+style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
+style Widget_MaterialComponents_Toolbar
+style Widget_Support_CoordinatorLayout
+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
+styleable ActionBarLayout android_layout_gravity
+styleable ActionMenuItemView android_minWidth
+styleable ActionMenuView
+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
+styleable AnimatedStateListDrawableItem android_drawable android_id
+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
+styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll
+styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted
+styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator
+styleable AppCompatImageView android_src srcCompat tint tintMode
+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps
+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable BottomAppBar backgroundTint fabAlignmentMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll
+styleable BottomNavigationView elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu
+styleable BottomSheetBehavior_Layout behavior_fitToContents behavior_hideable behavior_peekHeight behavior_skipCollapsed
+styleable ButtonBarLayout allowStacking
+styleable CameraBridgeViewBase camera_id show_fps
+styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop
+styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance checkedIcon checkedIconEnabled checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipStartPadding chipStrokeColor chipStrokeWidth closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible hideMotionSpec iconEndPadding iconStartPadding rippleColor showMotionSpec textEndPadding textStartPadding
+styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical singleLine singleSelection
+styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleEnabled toolbarId
+styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier
+styleable ColorStateListItem alpha android_alpha android_color
+styleable CompoundButton android_button buttonTint buttonTintMode
+styleable CoordinatorLayout keylines statusBarBackground
+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
+styleable DesignTheme bottomSheetDialogTheme bottomSheetStyle
+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
+styleable FloatingActionButton backgroundTint backgroundTintMode borderWidth elevation fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor showMotionSpec useCompatPadding
+styleable FloatingActionButton_Behavior_Layout behavior_autoHide
+styleable FlowLayout itemSpacing lineSpacing
+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
+styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding
+styleable GenericDraweeView actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomLeft roundBottomRight roundTopLeft roundTopRight roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderWidth viewAspectRatio
+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
+styleable GradientColorItem android_color android_offset
+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
+styleable MaterialButton android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor strokeColor strokeWidth
+styleable MaterialCardView strokeColor strokeWidth
+styleable MaterialComponentsTheme bottomSheetDialogTheme bottomSheetStyle chipGroupStyle chipStandaloneStyle chipStyle colorAccent colorBackgroundFloating colorPrimary colorPrimaryDark colorSecondary editTextStyle floatingActionButtonStyle materialButtonStyle materialCardViewStyle navigationViewStyle scrimBackground snackbarButtonStyle tabStyle textAppearanceBody1 textAppearanceBody2 textAppearanceButton textAppearanceCaption textAppearanceHeadline1 textAppearanceHeadline2 textAppearanceHeadline3 textAppearanceHeadline4 textAppearanceHeadline5 textAppearanceHeadline6 textAppearanceOverline textAppearanceSubtitle1 textAppearanceSubtitle2 textInputStyle
+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
+styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconTint itemTextAppearance itemTextColor menu
+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
+styleable PopupWindowBackgroundState state_above_anchor
+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
+styleable RecyclerView android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd
+styleable ScrimInsetsFrameLayout insetForeground
+styleable ScrollingViewBehavior_Layout behavior_overlapTop
+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
+styleable Snackbar snackbarButtonStyle snackbarStyle
+styleable SnackbarLayout android_maxWidth elevation maxActionInlineWidth
+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
+styleable StateListDrawableItem android_drawable
+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
+styleable TabItem android_icon android_layout android_text
+styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple
+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textSize android_textStyle android_typeface fontFamily textAllCaps
+styleable TextInputLayout android_hint android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeWidth counterEnabled counterMaxLength counterOverflowTextAppearance counterTextAppearance errorEnabled errorTextAppearance helperText helperTextEnabled helperTextTextAppearance hintAnimationEnabled hintEnabled hintTextAppearance passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode
+styleable Theme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSmall textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance
+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
+styleable View android_focusable android_theme paddingEnd paddingStart theme
+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
+styleable ViewStubCompat android_id android_inflatedId android_layout
+xml preferences
diff --git a/android/build/intermediates/symbols/androidTest/debug/R.txt b/android/build/intermediates/symbols/androidTest/debug/R.txt
new file mode 100644
index 000000000..dd62ef01e
--- /dev/null
+++ b/android/build/intermediates/symbols/androidTest/debug/R.txt
@@ -0,0 +1,1817 @@
+int anim abc_fade_in 0x7f050000
+int anim abc_fade_out 0x7f050001
+int anim abc_grow_fade_in_from_bottom 0x7f050002
+int anim abc_popup_enter 0x7f050003
+int anim abc_popup_exit 0x7f050004
+int anim abc_shrink_fade_out_from_bottom 0x7f050005
+int anim abc_slide_in_bottom 0x7f050006
+int anim abc_slide_in_top 0x7f050007
+int anim abc_slide_out_bottom 0x7f050008
+int anim abc_slide_out_top 0x7f050009
+int anim catalyst_push_up_in 0x7f05000a
+int anim catalyst_push_up_out 0x7f05000b
+int anim design_bottom_sheet_slide_in 0x7f05000c
+int anim design_bottom_sheet_slide_out 0x7f05000d
+int anim design_fab_in 0x7f05000e
+int anim design_fab_out 0x7f05000f
+int anim design_snackbar_in 0x7f050010
+int anim design_snackbar_out 0x7f050011
+int attr actionBarDivider 0x7f01003e
+int attr actionBarItemBackground 0x7f01003f
+int attr actionBarPopupTheme 0x7f010038
+int attr actionBarSize 0x7f01003d
+int attr actionBarSplitStyle 0x7f01003a
+int attr actionBarStyle 0x7f010039
+int attr actionBarTabBarStyle 0x7f010034
+int attr actionBarTabStyle 0x7f010033
+int attr actionBarTabTextStyle 0x7f010035
+int attr actionBarTheme 0x7f01003b
+int attr actionBarWidgetTheme 0x7f01003c
+int attr actionButtonStyle 0x7f010058
+int attr actionDropDownStyle 0x7f010054
+int attr actionLayout 0x7f0100e2
+int attr actionMenuTextAppearance 0x7f010040
+int attr actionMenuTextColor 0x7f010041
+int attr actionModeBackground 0x7f010044
+int attr actionModeCloseButtonStyle 0x7f010043
+int attr actionModeCloseDrawable 0x7f010046
+int attr actionModeCopyDrawable 0x7f010048
+int attr actionModeCutDrawable 0x7f010047
+int attr actionModeFindDrawable 0x7f01004c
+int attr actionModePasteDrawable 0x7f010049
+int attr actionModePopupWindowStyle 0x7f01004e
+int attr actionModeSelectAllDrawable 0x7f01004a
+int attr actionModeShareDrawable 0x7f01004b
+int attr actionModeSplitBackground 0x7f010045
+int attr actionModeStyle 0x7f010042
+int attr actionModeWebSearchDrawable 0x7f01004d
+int attr actionOverflowButtonStyle 0x7f010036
+int attr actionOverflowMenuStyle 0x7f010037
+int attr actionProviderClass 0x7f0100e4
+int attr actionViewClass 0x7f0100e3
+int attr activityChooserViewStyle 0x7f010060
+int attr actualImageScaleType 0x7f0100d1
+int attr alertDialogButtonGroupStyle 0x7f010083
+int attr alertDialogCenterButtons 0x7f010084
+int attr alertDialogStyle 0x7f010082
+int attr alertDialogTheme 0x7f010085
+int attr allowStacking 0x7f01009b
+int attr arrowHeadLength 0x7f0100bc
+int attr arrowShaftLength 0x7f0100bd
+int attr autoCompleteTextViewStyle 0x7f01008a
+int attr background 0x7f01000c
+int attr backgroundImage 0x7f0100d2
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f010134
+int attr backgroundTintMode 0x7f010135
+int attr barLength 0x7f0100be
+int attr behavior_hideable 0x7f010098
+int attr behavior_overlapTop 0x7f0100f3
+int attr behavior_peekHeight 0x7f010097
+int attr borderWidth 0x7f0100c3
+int attr borderlessButtonStyle 0x7f01005d
+int attr bottomSheetDialogTheme 0x7f0100b5
+int attr bottomSheetStyle 0x7f0100b6
+int attr buttonBarButtonStyle 0x7f01005a
+int attr buttonBarNegativeButtonStyle 0x7f010088
+int attr buttonBarNeutralButtonStyle 0x7f010089
+int attr buttonBarPositiveButtonStyle 0x7f010087
+int attr buttonBarStyle 0x7f010059
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f01008b
+int attr buttonStyleSmall 0x7f01008c
+int attr buttonTint 0x7f0100ad
+int attr buttonTintMode 0x7f0100ae
+int attr camera_id 0x7f01009d
+int attr checkboxStyle 0x7f01008d
+int attr checkedTextViewStyle 0x7f01008e
+int attr closeIcon 0x7f0100f8
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f01012b
+int attr collapseIcon 0x7f01012a
+int attr collapsedTitleGravity 0x7f0100aa
+int attr collapsedTitleTextAppearance 0x7f0100a6
+int attr color 0x7f0100b8
+int attr colorAccent 0x7f01007b
+int attr colorButtonNormal 0x7f01007f
+int attr colorControlActivated 0x7f01007d
+int attr colorControlHighlight 0x7f01007e
+int attr colorControlNormal 0x7f01007c
+int attr colorPrimary 0x7f010079
+int attr colorPrimaryDark 0x7f01007a
+int attr colorSwitchThumbNormal 0x7f010080
+int attr commitIcon 0x7f0100fd
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr contentScrim 0x7f0100a7
+int attr controlBackground 0x7f010081
+int attr counterEnabled 0x7f01011d
+int attr counterMaxLength 0x7f01011e
+int attr counterOverflowTextAppearance 0x7f010120
+int attr counterTextAppearance 0x7f01011f
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f0100f7
+int attr dialogPreferredPadding 0x7f010052
+int attr dialogTheme 0x7f010051
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01005f
+int attr dividerPadding 0x7f0100e0
+int attr dividerVertical 0x7f01005e
+int attr drawableSize 0x7f0100ba
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010071
+int attr dropdownListPreferredItemHeight 0x7f010055
+int attr editTextBackground 0x7f010066
+int attr editTextColor 0x7f010065
+int attr editTextStyle 0x7f01008f
+int attr elevation 0x7f01001a
+int attr errorEnabled 0x7f01011b
+int attr errorTextAppearance 0x7f01011c
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr expanded 0x7f010024
+int attr expandedTitleGravity 0x7f0100ab
+int attr expandedTitleMargin 0x7f0100a0
+int attr expandedTitleMarginBottom 0x7f0100a4
+int attr expandedTitleMarginEnd 0x7f0100a3
+int attr expandedTitleMarginStart 0x7f0100a1
+int attr expandedTitleMarginTop 0x7f0100a2
+int attr expandedTitleTextAppearance 0x7f0100a5
+int attr fabSize 0x7f0100c1
+int attr fadeDuration 0x7f0100c6
+int attr failureImage 0x7f0100cc
+int attr failureImageScaleType 0x7f0100cd
+int attr foregroundInsidePadding 0x7f0100c5
+int attr gapBetweenBars 0x7f0100bb
+int attr goIcon 0x7f0100f9
+int attr headerLayout 0x7f0100eb
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr hintAnimationEnabled 0x7f010121
+int attr hintEnabled 0x7f01011a
+int attr hintTextAppearance 0x7f010119
+int attr homeAsUpIndicator 0x7f010057
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f0100f5
+int attr imageButtonStyle 0x7f010067
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr insetForeground 0x7f0100f2
+int attr isLightTheme 0x7f010002
+int attr itemBackground 0x7f0100e9
+int attr itemIconTint 0x7f0100e7
+int attr itemPadding 0x7f010014
+int attr itemTextAppearance 0x7f0100ea
+int attr itemTextColor 0x7f0100e8
+int attr keylines 0x7f0100af
+int attr layout 0x7f0100f4
+int attr layoutManager 0x7f0100ee
+int attr layout_anchor 0x7f0100b2
+int attr layout_anchorGravity 0x7f0100b4
+int attr layout_behavior 0x7f0100b1
+int attr layout_collapseMode 0x7f01009e
+int attr layout_collapseParallaxMultiplier 0x7f01009f
+int attr layout_keyline 0x7f0100b3
+int attr layout_scrollFlags 0x7f010025
+int attr layout_scrollInterpolator 0x7f010026
+int attr listChoiceBackgroundIndicator 0x7f010078
+int attr listDividerAlertDialog 0x7f010053
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010072
+int attr listPreferredItemHeight 0x7f01006c
+int attr listPreferredItemHeightLarge 0x7f01006e
+int attr listPreferredItemHeightSmall 0x7f01006d
+int attr listPreferredItemPaddingLeft 0x7f01006f
+int attr listPreferredItemPaddingRight 0x7f010070
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f01012e
+int attr maxActionInlineWidth 0x7f010101
+int attr maxButtonHeight 0x7f010129
+int attr measureWithLargestChild 0x7f0100de
+int attr menu 0x7f0100e6
+int attr metaButtonBarButtonStyle 0x7f01009a
+int attr metaButtonBarStyle 0x7f010099
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f01012d
+int attr navigationIcon 0x7f01012c
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f0100ec
+int attr overlayImage 0x7f0100d3
+int attr paddingEnd 0x7f010132
+int attr paddingStart 0x7f010131
+int attr panelBackground 0x7f010075
+int attr panelMenuListTheme 0x7f010077
+int attr panelMenuListWidth 0x7f010076
+int attr placeholderImage 0x7f0100c8
+int attr placeholderImageScaleType 0x7f0100c9
+int attr popupMenuStyle 0x7f010063
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010064
+int attr preserveIconSpacing 0x7f0100e5
+int attr pressedStateOverlayImage 0x7f0100d4
+int attr pressedTranslationZ 0x7f0100c2
+int attr progressBarAutoRotateInterval 0x7f0100d0
+int attr progressBarImage 0x7f0100ce
+int attr progressBarImageScaleType 0x7f0100cf
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f0100ff
+int attr queryHint 0x7f0100f6
+int attr radioButtonStyle 0x7f010090
+int attr ratingBarStyle 0x7f010091
+int attr ratingBarStyleIndicator 0x7f010092
+int attr ratingBarStyleSmall 0x7f010093
+int attr retryImage 0x7f0100ca
+int attr retryImageScaleType 0x7f0100cb
+int attr reverseLayout 0x7f0100f0
+int attr rippleColor 0x7f0100c0
+int attr roundAsCircle 0x7f0100d5
+int attr roundBottomLeft 0x7f0100da
+int attr roundBottomRight 0x7f0100d9
+int attr roundTopLeft 0x7f0100d7
+int attr roundTopRight 0x7f0100d8
+int attr roundWithOverlayColor 0x7f0100db
+int attr roundedCornerRadius 0x7f0100d6
+int attr roundingBorderColor 0x7f0100dd
+int attr roundingBorderWidth 0x7f0100dc
+int attr searchHintIcon 0x7f0100fb
+int attr searchIcon 0x7f0100fa
+int attr searchViewStyle 0x7f01006b
+int attr seekBarStyle 0x7f010094
+int attr selectableItemBackground 0x7f01005b
+int attr selectableItemBackgroundBorderless 0x7f01005c
+int attr showAsAction 0x7f0100e1
+int attr showDividers 0x7f0100df
+int attr showText 0x7f010108
+int attr show_fps 0x7f01009c
+int attr singleChoiceItemLayout 0x7f010022
+int attr spanCount 0x7f0100ef
+int attr spinBars 0x7f0100b9
+int attr spinnerDropDownItemStyle 0x7f010056
+int attr spinnerStyle 0x7f010095
+int attr splitTrack 0x7f010107
+int attr srcCompat 0x7f010027
+int attr stackFromEnd 0x7f0100f1
+int attr state_above_anchor 0x7f0100ed
+int attr statusBarBackground 0x7f0100b0
+int attr statusBarScrim 0x7f0100a8
+int attr submitBackground 0x7f010100
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f010123
+int attr subtitleTextColor 0x7f010130
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f0100fe
+int attr switchMinWidth 0x7f010105
+int attr switchPadding 0x7f010106
+int attr switchStyle 0x7f010096
+int attr switchTextAppearance 0x7f010104
+int attr tabBackground 0x7f01010c
+int attr tabContentStart 0x7f01010b
+int attr tabGravity 0x7f01010e
+int attr tabIndicatorColor 0x7f010109
+int attr tabIndicatorHeight 0x7f01010a
+int attr tabMaxWidth 0x7f010110
+int attr tabMinWidth 0x7f01010f
+int attr tabMode 0x7f01010d
+int attr tabPadding 0x7f010118
+int attr tabPaddingBottom 0x7f010117
+int attr tabPaddingEnd 0x7f010116
+int attr tabPaddingStart 0x7f010114
+int attr tabPaddingTop 0x7f010115
+int attr tabSelectedTextColor 0x7f010113
+int attr tabTextAppearance 0x7f010111
+int attr tabTextColor 0x7f010112
+int attr textAllCaps 0x7f010028
+int attr textAppearanceLargePopupMenu 0x7f01004f
+int attr textAppearanceListItem 0x7f010073
+int attr textAppearanceListItemSmall 0x7f010074
+int attr textAppearanceSearchResultSubtitle 0x7f010069
+int attr textAppearanceSearchResultTitle 0x7f010068
+int attr textAppearanceSmallPopupMenu 0x7f010050
+int attr textColorAlertDialogListItem 0x7f010086
+int attr textColorError 0x7f0100b7
+int attr textColorSearchUrl 0x7f01006a
+int attr theme 0x7f010133
+int attr thickness 0x7f0100bf
+int attr thumbTextPadding 0x7f010103
+int attr title 0x7f010003
+int attr titleEnabled 0x7f0100ac
+int attr titleMarginBottom 0x7f010128
+int attr titleMarginEnd 0x7f010126
+int attr titleMarginStart 0x7f010125
+int attr titleMarginTop 0x7f010127
+int attr titleMargins 0x7f010124
+int attr titleTextAppearance 0x7f010122
+int attr titleTextColor 0x7f01012f
+int attr titleTextStyle 0x7f010007
+int attr toolbarId 0x7f0100a9
+int attr toolbarNavigationButtonStyle 0x7f010062
+int attr toolbarStyle 0x7f010061
+int attr track 0x7f010102
+int attr useCompatPadding 0x7f0100c4
+int attr viewAspectRatio 0x7f0100c7
+int attr voiceIcon 0x7f0100fc
+int attr windowActionBar 0x7f010029
+int attr windowActionBarOverlay 0x7f01002b
+int attr windowActionModeOverlay 0x7f01002c
+int attr windowFixedHeightMajor 0x7f010030
+int attr windowFixedHeightMinor 0x7f01002e
+int attr windowFixedWidthMajor 0x7f01002d
+int attr windowFixedWidthMinor 0x7f01002f
+int attr windowMinWidthMajor 0x7f010031
+int attr windowMinWidthMinor 0x7f010032
+int attr windowNoTitle 0x7f01002a
+int bool abc_action_bar_embed_tabs 0x7f080003
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f080001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f080004
+int bool abc_allow_stacked_button_bar 0x7f080000
+int bool abc_config_actionMenuItemAllCaps 0x7f080005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f080002
+int bool abc_config_closeDialogWhenTouchOutside 0x7f080006
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080007
+int color abc_background_cache_hint_selector_material_dark 0x7f0c0049
+int color abc_background_cache_hint_selector_material_light 0x7f0c004a
+int color abc_color_highlight_material 0x7f0c004b
+int color abc_input_method_navigation_guard 0x7f0c0000
+int color abc_primary_text_disable_only_material_dark 0x7f0c004c
+int color abc_primary_text_disable_only_material_light 0x7f0c004d
+int color abc_primary_text_material_dark 0x7f0c004e
+int color abc_primary_text_material_light 0x7f0c004f
+int color abc_search_url_text 0x7f0c0050
+int color abc_search_url_text_normal 0x7f0c0001
+int color abc_search_url_text_pressed 0x7f0c0002
+int color abc_search_url_text_selected 0x7f0c0003
+int color abc_secondary_text_material_dark 0x7f0c0051
+int color abc_secondary_text_material_light 0x7f0c0052
+int color accent_material_dark 0x7f0c0004
+int color accent_material_light 0x7f0c0005
+int color background_floating_material_dark 0x7f0c0006
+int color background_floating_material_light 0x7f0c0007
+int color background_material_dark 0x7f0c0008
+int color background_material_light 0x7f0c0009
+int color black_overlay 0x7f0c000a
+int color bright_foreground_disabled_material_dark 0x7f0c000b
+int color bright_foreground_disabled_material_light 0x7f0c000c
+int color bright_foreground_inverse_material_dark 0x7f0c000d
+int color bright_foreground_inverse_material_light 0x7f0c000e
+int color bright_foreground_material_dark 0x7f0c000f
+int color bright_foreground_material_light 0x7f0c0010
+int color button_material_dark 0x7f0c0011
+int color button_material_light 0x7f0c0012
+int color catalyst_redbox_background 0x7f0c0013
+int color colorAccent 0x7f0c0014
+int color colorPrimary 0x7f0c0015
+int color colorPrimaryDark 0x7f0c0016
+int color design_fab_shadow_end_color 0x7f0c0017
+int color design_fab_shadow_mid_color 0x7f0c0018
+int color design_fab_shadow_start_color 0x7f0c0019
+int color design_fab_stroke_end_inner_color 0x7f0c001a
+int color design_fab_stroke_end_outer_color 0x7f0c001b
+int color design_fab_stroke_top_inner_color 0x7f0c001c
+int color design_fab_stroke_top_outer_color 0x7f0c001d
+int color design_snackbar_background_color 0x7f0c001e
+int color design_textinput_error_color_dark 0x7f0c001f
+int color design_textinput_error_color_light 0x7f0c0020
+int color dim_foreground_disabled_material_dark 0x7f0c0021
+int color dim_foreground_disabled_material_light 0x7f0c0022
+int color dim_foreground_material_dark 0x7f0c0023
+int color dim_foreground_material_light 0x7f0c0024
+int color foreground_material_dark 0x7f0c0025
+int color foreground_material_light 0x7f0c0026
+int color highlighted_text_material_dark 0x7f0c0027
+int color highlighted_text_material_light 0x7f0c0028
+int color hint_foreground_material_dark 0x7f0c0029
+int color hint_foreground_material_light 0x7f0c002a
+int color material_blue_grey_800 0x7f0c002b
+int color material_blue_grey_900 0x7f0c002c
+int color material_blue_grey_950 0x7f0c002d
+int color material_deep_teal_200 0x7f0c002e
+int color material_deep_teal_500 0x7f0c002f
+int color material_grey_100 0x7f0c0030
+int color material_grey_300 0x7f0c0031
+int color material_grey_50 0x7f0c0032
+int color material_grey_600 0x7f0c0033
+int color material_grey_800 0x7f0c0034
+int color material_grey_850 0x7f0c0035
+int color material_grey_900 0x7f0c0036
+int color primary_dark_material_dark 0x7f0c0037
+int color primary_dark_material_light 0x7f0c0038
+int color primary_material_dark 0x7f0c0039
+int color primary_material_light 0x7f0c003a
+int color primary_text_default_material_dark 0x7f0c003b
+int color primary_text_default_material_light 0x7f0c003c
+int color primary_text_disabled_material_dark 0x7f0c003d
+int color primary_text_disabled_material_light 0x7f0c003e
+int color ripple_material_dark 0x7f0c003f
+int color ripple_material_light 0x7f0c0040
+int color secondary_text_default_material_dark 0x7f0c0041
+int color secondary_text_default_material_light 0x7f0c0042
+int color secondary_text_disabled_material_dark 0x7f0c0043
+int color secondary_text_disabled_material_light 0x7f0c0044
+int color switch_thumb_disabled_material_dark 0x7f0c0045
+int color switch_thumb_disabled_material_light 0x7f0c0046
+int color switch_thumb_material_dark 0x7f0c0053
+int color switch_thumb_material_light 0x7f0c0054
+int color switch_thumb_normal_material_dark 0x7f0c0047
+int color switch_thumb_normal_material_light 0x7f0c0048
+int dimen abc_action_bar_content_inset_material 0x7f09000d
+int dimen abc_action_bar_default_height_material 0x7f090001
+int dimen abc_action_bar_default_padding_end_material 0x7f09000e
+int dimen abc_action_bar_default_padding_start_material 0x7f09000f
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f09001a
+int dimen abc_action_bar_overflow_padding_end_material 0x7f09001b
+int dimen abc_action_bar_overflow_padding_start_material 0x7f09001c
+int dimen abc_action_bar_progress_bar_size 0x7f090002
+int dimen abc_action_bar_stacked_max_height 0x7f09001d
+int dimen abc_action_bar_stacked_tab_max_width 0x7f09001e
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f09001f
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f090020
+int dimen abc_action_button_min_height_material 0x7f090021
+int dimen abc_action_button_min_width_material 0x7f090022
+int dimen abc_action_button_min_width_overflow_material 0x7f090023
+int dimen abc_alert_dialog_button_bar_height 0x7f090000
+int dimen abc_button_inset_horizontal_material 0x7f090024
+int dimen abc_button_inset_vertical_material 0x7f090025
+int dimen abc_button_padding_horizontal_material 0x7f090026
+int dimen abc_button_padding_vertical_material 0x7f090027
+int dimen abc_config_prefDialogWidth 0x7f090005
+int dimen abc_control_corner_material 0x7f090028
+int dimen abc_control_inset_material 0x7f090029
+int dimen abc_control_padding_material 0x7f09002a
+int dimen abc_dialog_fixed_height_major 0x7f090006
+int dimen abc_dialog_fixed_height_minor 0x7f090007
+int dimen abc_dialog_fixed_width_major 0x7f090008
+int dimen abc_dialog_fixed_width_minor 0x7f090009
+int dimen abc_dialog_list_padding_vertical_material 0x7f09002b
+int dimen abc_dialog_min_width_major 0x7f09000a
+int dimen abc_dialog_min_width_minor 0x7f09000b
+int dimen abc_dialog_padding_material 0x7f09002c
+int dimen abc_dialog_padding_top_material 0x7f09002d
+int dimen abc_disabled_alpha_material_dark 0x7f09002e
+int dimen abc_disabled_alpha_material_light 0x7f09002f
+int dimen abc_dropdownitem_icon_width 0x7f090030
+int dimen abc_dropdownitem_text_padding_left 0x7f090031
+int dimen abc_dropdownitem_text_padding_right 0x7f090032
+int dimen abc_edit_text_inset_bottom_material 0x7f090033
+int dimen abc_edit_text_inset_horizontal_material 0x7f090034
+int dimen abc_edit_text_inset_top_material 0x7f090035
+int dimen abc_floating_window_z 0x7f090036
+int dimen abc_list_item_padding_horizontal_material 0x7f090037
+int dimen abc_panel_menu_list_width 0x7f090038
+int dimen abc_search_view_preferred_width 0x7f090039
+int dimen abc_search_view_text_min_width 0x7f09000c
+int dimen abc_seekbar_track_background_height_material 0x7f09003a
+int dimen abc_seekbar_track_progress_height_material 0x7f09003b
+int dimen abc_select_dialog_padding_start_material 0x7f09003c
+int dimen abc_switch_padding 0x7f090018
+int dimen abc_text_size_body_1_material 0x7f09003d
+int dimen abc_text_size_body_2_material 0x7f09003e
+int dimen abc_text_size_button_material 0x7f09003f
+int dimen abc_text_size_caption_material 0x7f090040
+int dimen abc_text_size_display_1_material 0x7f090041
+int dimen abc_text_size_display_2_material 0x7f090042
+int dimen abc_text_size_display_3_material 0x7f090043
+int dimen abc_text_size_display_4_material 0x7f090044
+int dimen abc_text_size_headline_material 0x7f090045
+int dimen abc_text_size_large_material 0x7f090046
+int dimen abc_text_size_medium_material 0x7f090047
+int dimen abc_text_size_menu_material 0x7f090048
+int dimen abc_text_size_small_material 0x7f090049
+int dimen abc_text_size_subhead_material 0x7f09004a
+int dimen abc_text_size_subtitle_material_toolbar 0x7f090003
+int dimen abc_text_size_title_material 0x7f09004b
+int dimen abc_text_size_title_material_toolbar 0x7f090004
+int dimen activity_horizontal_margin 0x7f090019
+int dimen activity_vertical_margin 0x7f09004c
+int dimen design_appbar_elevation 0x7f09004d
+int dimen design_bottom_sheet_modal_elevation 0x7f09004e
+int dimen design_bottom_sheet_modal_peek_height 0x7f09004f
+int dimen design_fab_border_width 0x7f090050
+int dimen design_fab_elevation 0x7f090051
+int dimen design_fab_image_size 0x7f090052
+int dimen design_fab_size_mini 0x7f090053
+int dimen design_fab_size_normal 0x7f090054
+int dimen design_fab_translation_z_pressed 0x7f090055
+int dimen design_navigation_elevation 0x7f090056
+int dimen design_navigation_icon_padding 0x7f090057
+int dimen design_navigation_icon_size 0x7f090058
+int dimen design_navigation_max_width 0x7f090010
+int dimen design_navigation_padding_bottom 0x7f090059
+int dimen design_navigation_separator_vertical_padding 0x7f09005a
+int dimen design_snackbar_action_inline_max_width 0x7f090011
+int dimen design_snackbar_background_corner_radius 0x7f090012
+int dimen design_snackbar_elevation 0x7f09005b
+int dimen design_snackbar_extra_spacing_horizontal 0x7f090013
+int dimen design_snackbar_max_width 0x7f090014
+int dimen design_snackbar_min_width 0x7f090015
+int dimen design_snackbar_padding_horizontal 0x7f09005c
+int dimen design_snackbar_padding_vertical 0x7f09005d
+int dimen design_snackbar_padding_vertical_2lines 0x7f090016
+int dimen design_snackbar_text_size 0x7f09005e
+int dimen design_tab_max_width 0x7f09005f
+int dimen design_tab_scrollable_min_width 0x7f090017
+int dimen design_tab_text_size 0x7f090060
+int dimen design_tab_text_size_2line 0x7f090061
+int dimen disabled_alpha_material_dark 0x7f090062
+int dimen disabled_alpha_material_light 0x7f090063
+int dimen fab_margin 0x7f090064
+int dimen highlight_alpha_material_colored 0x7f090065
+int dimen highlight_alpha_material_dark 0x7f090066
+int dimen highlight_alpha_material_light 0x7f090067
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f090068
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f090069
+int dimen item_touch_helper_swipe_escape_velocity 0x7f09006a
+int dimen nav_header_height 0x7f09006b
+int dimen nav_header_vertical_spacing 0x7f09006c
+int dimen notification_large_icon_height 0x7f09006d
+int dimen notification_large_icon_width 0x7f09006e
+int dimen notification_subtext_size 0x7f09006f
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_star_black_16dp 0x7f020021
+int drawable abc_ic_star_black_36dp 0x7f020022
+int drawable abc_ic_star_half_black_16dp 0x7f020023
+int drawable abc_ic_star_half_black_36dp 0x7f020024
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
+int drawable abc_item_background_holo_dark 0x7f020026
+int drawable abc_item_background_holo_light 0x7f020027
+int drawable abc_list_divider_mtrl_alpha 0x7f020028
+int drawable abc_list_focused_holo 0x7f020029
+int drawable abc_list_longpressed_holo 0x7f02002a
+int drawable abc_list_pressed_holo_dark 0x7f02002b
+int drawable abc_list_pressed_holo_light 0x7f02002c
+int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
+int drawable abc_list_selector_disabled_holo_light 0x7f020030
+int drawable abc_list_selector_holo_dark 0x7f020031
+int drawable abc_list_selector_holo_light 0x7f020032
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
+int drawable abc_popup_background_mtrl_mult 0x7f020034
+int drawable abc_ratingbar_full_material 0x7f020035
+int drawable abc_ratingbar_indicator_material 0x7f020036
+int drawable abc_ratingbar_small_material 0x7f020037
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
+int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
+int drawable abc_seekbar_thumb_material 0x7f02003d
+int drawable abc_seekbar_track_material 0x7f02003e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
+int drawable abc_spinner_textfield_background_material 0x7f020040
+int drawable abc_switch_thumb_material 0x7f020041
+int drawable abc_switch_track_mtrl_alpha 0x7f020042
+int drawable abc_tab_indicator_material 0x7f020043
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
+int drawable abc_text_cursor_material 0x7f020045
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
+int drawable abc_textfield_default_mtrl_alpha 0x7f020047
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
+int drawable abc_textfield_search_material 0x7f02004a
+int drawable angle 0x7f02004b
+int drawable button_background 0x7f02004c
+int drawable design_fab_background 0x7f02004d
+int drawable design_snackbar_background 0x7f02004e
+int drawable ic_arrow_back_24dp 0x7f02004f
+int drawable ic_camera_green 0x7f020050
+int drawable ic_delete_white_24dp 0x7f020051
+int drawable ic_done_all_24dp 0x7f020052
+int drawable ic_find_in_page 0x7f020053
+int drawable ic_flash_on_24dp 0x7f020054
+int drawable ic_info_outline_white_24px 0x7f020055
+int drawable ic_launcher_background 0x7f020056
+int drawable ic_launcher_foreground 0x7f020057
+int drawable ic_menu_camera 0x7f020058
+int drawable ic_menu_gallery 0x7f020059
+int drawable ic_menu_manage 0x7f02005a
+int drawable ic_menu_send 0x7f02005b
+int drawable ic_menu_share 0x7f02005c
+int drawable ic_menu_slideshow 0x7f02005d
+int drawable ic_menu_tag 0x7f02005e
+int drawable ic_monochrome 0x7f02005f
+int drawable ic_palette 0x7f020060
+int drawable ic_photo_filter_white_24dp 0x7f020061
+int drawable ic_settings 0x7f020062
+int drawable ic_tag_bell 0x7f020063
+int drawable ic_tag_game 0x7f020064
+int drawable ic_tag_gift 0x7f020065
+int drawable ic_tag_magnet 0x7f020066
+int drawable ic_tag_rocket 0x7f020067
+int drawable ic_tag_star 0x7f020068
+int drawable ic_tag_tv 0x7f020069
+int drawable notification_template_icon_bg 0x7f02006c
+int drawable round_button 0x7f02006a
+int drawable side_nav_bar 0x7f02006b
+int id about_container 0x7f0d0074
+int id about_markdown 0x7f0d0075
+int id about_shareapp 0x7f0d0076
+int id about_view 0x7f0d0073
+int id action0 0x7f0d008a
+int id action_about 0x7f0d00a9
+int id action_bar 0x7f0d0064
+int id action_bar_activity_content 0x7f0d0000
+int id action_bar_container 0x7f0d0063
+int id action_bar_root 0x7f0d005f
+int id action_bar_spinner 0x7f0d0001
+int id action_bar_subtitle 0x7f0d0045
+int id action_bar_title 0x7f0d0044
+int id action_context_bar 0x7f0d0065
+int id action_delete 0x7f0d00a6
+int id action_divider 0x7f0d008e
+int id action_menu_divider 0x7f0d0002
+int id action_menu_presenter 0x7f0d0003
+int id action_mode_bar 0x7f0d0061
+int id action_mode_bar_stub 0x7f0d0060
+int id action_mode_close_button 0x7f0d0046
+int id action_share 0x7f0d00a8
+int id action_tag 0x7f0d00a7
+int id activity_chooser_view_content 0x7f0d0047
+int id alertTitle 0x7f0d0053
+int id always 0x7f0d003d
+int id any 0x7f0d001b
+int id back 0x7f0d001c
+int id beginning 0x7f0d003b
+int id bottom 0x7f0d0020
+int id buttonBell 0x7f0d00a1
+int id buttonGame 0x7f0d00a2
+int id buttonGift 0x7f0d009f
+int id buttonMagnet 0x7f0d00a4
+int id buttonPanel 0x7f0d004e
+int id buttonRocket 0x7f0d009e
+int id buttonStar 0x7f0d00a3
+int id buttonTv 0x7f0d00a0
+int id cancel_action 0x7f0d008b
+int id catalyst_redbox_title 0x7f0d0099
+int id center 0x7f0d0021
+int id centerCrop 0x7f0d0034
+int id centerInside 0x7f0d0035
+int id center_horizontal 0x7f0d0022
+int id center_vertical 0x7f0d0023
+int id checkbox 0x7f0d005c
+int id chronometer 0x7f0d0091
+int id clip_horizontal 0x7f0d002f
+int id clip_vertical 0x7f0d0030
+int id collapseActionView 0x7f0d003e
+int id colorSquare 0x7f0d0087
+int id contentPanel 0x7f0d0054
+int id custom 0x7f0d005a
+int id customPanel 0x7f0d0059
+int id decor_content_parent 0x7f0d0062
+int id default_activity_button 0x7f0d004a
+int id design_bottom_sheet 0x7f0d007e
+int id design_menu_item_action_area 0x7f0d0085
+int id design_menu_item_action_area_stub 0x7f0d0084
+int id design_menu_item_text 0x7f0d0083
+int id design_navigation_view 0x7f0d0082
+int id disableHome 0x7f0d000e
+int id edit_query 0x7f0d0066
+int id end 0x7f0d0024
+int id end_padder 0x7f0d0096
+int id enterAlways 0x7f0d0015
+int id enterAlwaysCollapsed 0x7f0d0016
+int id exitUntilCollapsed 0x7f0d0017
+int id expand_activities_button 0x7f0d0048
+int id expanded_menu 0x7f0d005b
+int id fill 0x7f0d0031
+int id fill_horizontal 0x7f0d0032
+int id fill_vertical 0x7f0d0025
+int id fitCenter 0x7f0d0036
+int id fitEnd 0x7f0d0037
+int id fitStart 0x7f0d0038
+int id fitXY 0x7f0d0039
+int id fixed 0x7f0d0042
+int id focusCrop 0x7f0d003a
+int id fps_text 0x7f0d0086
+int id front 0x7f0d001d
+int id gallery_image 0x7f0d0088
+int id home 0x7f0d0004
+int id homeAsUp 0x7f0d000f
+int id hud 0x7f0d007b
+int id icon 0x7f0d004c
+int id ifRoom 0x7f0d003f
+int id image 0x7f0d0049
+int id imgDisplay 0x7f0d0089
+int id info 0x7f0d0095
+int id item_touch_helper_previous_elevation 0x7f0d0005
+int id left 0x7f0d0026
+int id line1 0x7f0d008f
+int id line3 0x7f0d0093
+int id linearLayout 0x7f0d009d
+int id listMode 0x7f0d000b
+int id list_item 0x7f0d004b
+int id media_actions 0x7f0d008d
+int id middle 0x7f0d003c
+int id mini 0x7f0d0033
+int id multiply 0x7f0d002a
+int id navigation_header_container 0x7f0d0081
+int id never 0x7f0d0040
+int id none 0x7f0d0010
+int id normal 0x7f0d000c
+int id pager 0x7f0d0077
+int id parallax 0x7f0d001e
+int id parentPanel 0x7f0d0050
+int id pin 0x7f0d001f
+int id progress_circular 0x7f0d0006
+int id progress_horizontal 0x7f0d0007
+int id radio 0x7f0d005e
+int id recyclerview 0x7f0d0078
+int id right 0x7f0d0027
+int id rn_frame_file 0x7f0d0098
+int id rn_frame_method 0x7f0d0097
+int id rn_redbox_reloadjs 0x7f0d009b
+int id rn_redbox_stack 0x7f0d009a
+int id scannedAnimation 0x7f0d007a
+int id screen 0x7f0d002b
+int id scroll 0x7f0d0018
+int id scrollIndicatorDown 0x7f0d0058
+int id scrollIndicatorUp 0x7f0d0055
+int id scrollView 0x7f0d0056
+int id scrollable 0x7f0d0043
+int id search_badge 0x7f0d0068
+int id search_bar 0x7f0d0067
+int id search_button 0x7f0d0069
+int id search_close_btn 0x7f0d006e
+int id search_edit_frame 0x7f0d006a
+int id search_go_btn 0x7f0d0070
+int id search_mag_icon 0x7f0d006b
+int id search_plate 0x7f0d006c
+int id search_src_text 0x7f0d006d
+int id search_voice_btn 0x7f0d0071
+int id select_dialog_listview 0x7f0d0072
+int id shortcut 0x7f0d005d
+int id showCustom 0x7f0d0011
+int id showHome 0x7f0d0012
+int id showTitle 0x7f0d0013
+int id snackbar_action 0x7f0d0080
+int id snackbar_text 0x7f0d007f
+int id snap 0x7f0d0019
+int id spacer 0x7f0d004f
+int id split_action_bar 0x7f0d0008
+int id src_atop 0x7f0d002c
+int id src_in 0x7f0d002d
+int id src_over 0x7f0d002e
+int id start 0x7f0d0028
+int id status_bar_latest_event_content 0x7f0d008c
+int id submit_area 0x7f0d006f
+int id surfaceView 0x7f0d0079
+int id tabMode 0x7f0d000d
+int id tag_done 0x7f0d00a5
+int id text 0x7f0d0094
+int id text2 0x7f0d0092
+int id textSpacerNoButtons 0x7f0d0057
+int id textView 0x7f0d009c
+int id time 0x7f0d0090
+int id title 0x7f0d004d
+int id title_template 0x7f0d0052
+int id top 0x7f0d0029
+int id topPanel 0x7f0d0051
+int id touch_outside 0x7f0d007d
+int id up 0x7f0d0009
+int id useLogo 0x7f0d0014
+int id view_offset_helper 0x7f0d000a
+int id wait_spinner 0x7f0d007c
+int id withText 0x7f0d0041
+int id wrap_content 0x7f0d001a
+int integer abc_config_activityDefaultDur 0x7f0b0002
+int integer abc_config_activityShortDur 0x7f0b0003
+int integer abc_max_action_buttons 0x7f0b0000
+int integer bottom_sheet_slide_duration 0x7f0b0004
+int integer cancel_button_image_alpha 0x7f0b0005
+int integer design_snackbar_text_max_lines 0x7f0b0001
+int integer status_bar_notification_info_maxnum 0x7f0b0006
+int layout abc_action_bar_title_item 0x7f040000
+int layout abc_action_bar_up_container 0x7f040001
+int layout abc_action_bar_view_list_nav_layout 0x7f040002
+int layout abc_action_menu_item_layout 0x7f040003
+int layout abc_action_menu_layout 0x7f040004
+int layout abc_action_mode_bar 0x7f040005
+int layout abc_action_mode_close_item_material 0x7f040006
+int layout abc_activity_chooser_view 0x7f040007
+int layout abc_activity_chooser_view_list_item 0x7f040008
+int layout abc_alert_dialog_button_bar_material 0x7f040009
+int layout abc_alert_dialog_material 0x7f04000a
+int layout abc_dialog_title_material 0x7f04000b
+int layout abc_expanded_menu_layout 0x7f04000c
+int layout abc_list_menu_item_checkbox 0x7f04000d
+int layout abc_list_menu_item_icon 0x7f04000e
+int layout abc_list_menu_item_layout 0x7f04000f
+int layout abc_list_menu_item_radio 0x7f040010
+int layout abc_popup_menu_item_layout 0x7f040011
+int layout abc_screen_content_include 0x7f040012
+int layout abc_screen_simple 0x7f040013
+int layout abc_screen_simple_overlay_action_mode 0x7f040014
+int layout abc_screen_toolbar 0x7f040015
+int layout abc_search_dropdown_item_icons_2line 0x7f040016
+int layout abc_search_view 0x7f040017
+int layout abc_select_dialog_material 0x7f040018
+int layout about_view 0x7f040019
+int layout activity_fullscreen_view 0x7f04001a
+int layout activity_gallery 0x7f04001b
+int layout activity_main 0x7f04001c
+int layout activity_open_note_scanner 0x7f04001d
+int layout activity_settings 0x7f04001e
+int layout design_bottom_sheet_dialog 0x7f04001f
+int layout design_layout_snackbar 0x7f040020
+int layout design_layout_snackbar_include 0x7f040021
+int layout design_layout_tab_icon 0x7f040022
+int layout design_layout_tab_text 0x7f040023
+int layout design_menu_item_action_area 0x7f040024
+int layout design_navigation_item 0x7f040025
+int layout design_navigation_item_header 0x7f040026
+int layout design_navigation_item_separator 0x7f040027
+int layout design_navigation_item_subheader 0x7f040028
+int layout design_navigation_menu 0x7f040029
+int layout design_navigation_menu_item 0x7f04002a
+int layout fps_view 0x7f04002b
+int layout gallery_item 0x7f04002c
+int layout layout_fullscreen_image 0x7f04002d
+int layout notification_media_action 0x7f04002e
+int layout notification_media_cancel_action 0x7f04002f
+int layout notification_template_big_media 0x7f040030
+int layout notification_template_big_media_narrow 0x7f040031
+int layout notification_template_lines 0x7f040032
+int layout notification_template_media 0x7f040033
+int layout notification_template_part_chronometer 0x7f040034
+int layout notification_template_part_time 0x7f040035
+int layout redbox_item_frame 0x7f040036
+int layout redbox_item_title 0x7f040037
+int layout redbox_view 0x7f040038
+int layout select_dialog_item_material 0x7f040039
+int layout select_dialog_multichoice_material 0x7f04003a
+int layout select_dialog_singlechoice_material 0x7f04003b
+int layout support_simple_spinner_dropdown_item 0x7f04003c
+int layout tageditor_view 0x7f04003d
+int menu menu_gallery 0x7f0e0000
+int menu menu_imagepager 0x7f0e0001
+int mipmap ic_launcher 0x7f030000
+int mipmap ic_launcher_round 0x7f030001
+int string abc_action_bar_home_description 0x7f070000
+int string abc_action_bar_home_description_format 0x7f070001
+int string abc_action_bar_home_subtitle_description_format 0x7f070002
+int string abc_action_bar_up_description 0x7f070003
+int string abc_action_menu_overflow_description 0x7f070004
+int string abc_action_mode_done 0x7f070005
+int string abc_activity_chooser_view_see_all 0x7f070006
+int string abc_activitychooserview_choose_application 0x7f070007
+int string abc_capital_off 0x7f070008
+int string abc_capital_on 0x7f070009
+int string abc_search_hint 0x7f07000a
+int string abc_searchview_description_clear 0x7f07000b
+int string abc_searchview_description_query 0x7f07000c
+int string abc_searchview_description_search 0x7f07000d
+int string abc_searchview_description_submit 0x7f07000e
+int string abc_searchview_description_voice 0x7f07000f
+int string abc_shareactionprovider_share_with 0x7f070010
+int string abc_shareactionprovider_share_with_application 0x7f070011
+int string abc_toolbar_collapse_description 0x7f070012
+int string about_filename 0x7f070014
+int string action_about 0x7f070015
+int string action_delete 0x7f070016
+int string action_share 0x7f070017
+int string action_tag 0x7f070018
+int string activateunknown 0x7f070019
+int string answer_cancel 0x7f07001a
+int string answer_later 0x7f07001b
+int string answer_no 0x7f07001c
+int string answer_yes 0x7f07001d
+int string app_name 0x7f07001e
+int string appbar_scrolling_view_behavior 0x7f07005a
+int string ask_install_opencv 0x7f07001f
+int string autoMode 0x7f070020
+int string automatic_tagging 0x7f070021
+int string automatic_tagging_summary 0x7f070022
+int string basic_settings 0x7f070023
+int string bitcoin_summary 0x7f070024
+int string bottom_sheet_behavior 0x7f07005b
+int string bug_rotate 0x7f070025
+int string bug_rotate_summary 0x7f070026
+int string bwMode 0x7f070027
+int string catalyst_debugjs 0x7f070028
+int string catalyst_debugjs_off 0x7f07005c
+int string catalyst_element_inspector 0x7f070029
+int string catalyst_element_inspector_off 0x7f07005d
+int string catalyst_hot_module_replacement 0x7f07005e
+int string catalyst_hot_module_replacement_off 0x7f07005f
+int string catalyst_jsload_error 0x7f07002a
+int string catalyst_jsload_message 0x7f07002b
+int string catalyst_jsload_title 0x7f07002c
+int string catalyst_live_reload 0x7f070060
+int string catalyst_live_reload_off 0x7f070061
+int string catalyst_perf_monitor 0x7f070062
+int string catalyst_perf_monitor_off 0x7f070063
+int string catalyst_reloadjs 0x7f07002d
+int string catalyst_remotedbg_error 0x7f070064
+int string catalyst_remotedbg_message 0x7f070065
+int string catalyst_settings 0x7f07002e
+int string catalyst_settings_title 0x7f07002f
+int string catalyst_start_profile 0x7f070066
+int string catalyst_stop_profile 0x7f070067
+int string character_counter_pattern 0x7f070068
+int string colorMode 0x7f070030
+int string confirm_delete_multiple_text 0x7f070031
+int string confirm_delete_text 0x7f070032
+int string confirm_install_opencv 0x7f070033
+int string confirm_title 0x7f070034
+int string dogecoin_summary 0x7f070069
+int string donate 0x7f070035
+int string donate_summary 0x7f070036
+int string downloading 0x7f070037
+int string downloading_opencv 0x7f070038
+int string feedback_and_contributions 0x7f070039
+int string filterModeOff 0x7f07003a
+int string filterModeOn 0x7f07003b
+int string github_project 0x7f07003c
+int string github_project_summary 0x7f07003d
+int string githubdownload 0x7f07003e
+int string googleplay 0x7f07003f
+int string images_scanned 0x7f070040
+int string install_opencv 0x7f070041
+int string manualMode 0x7f070042
+int string match_aspect 0x7f070043
+int string match_aspect_summary 0x7f070044
+int string messageactivateunknown 0x7f070045
+int string paypal_summary 0x7f070046
+int string scanningToast 0x7f070047
+int string send_message 0x7f070048
+int string send_message_summary 0x7f070049
+int string settings 0x7f07004a
+int string share_app 0x7f07004b
+int string share_app_body 0x7f07004c
+int string share_app_subject 0x7f07004d
+int string share_app_using 0x7f07004e
+int string share_snackbar 0x7f07004f
+int string stats_optin_text 0x7f070050
+int string stats_optin_title 0x7f070051
+int string status_bar_notification_info_overflow 0x7f070013
+int string storage_folder 0x7f070052
+int string storage_folder_summary 0x7f070053
+int string telegram 0x7f070054
+int string telegram_summary 0x7f070055
+int string title_activity_full_image 0x7f070056
+int string title_activity_gallery 0x7f070057
+int string title_activity_open_note_scanner 0x7f07006a
+int string usage_stats 0x7f070058
+int string usage_stats_summary 0x7f070059
+int style AlertDialog_AppCompat 0x7f0a0088
+int style AlertDialog_AppCompat_Light 0x7f0a0089
+int style Animation_AppCompat_Dialog 0x7f0a008a
+int style Animation_AppCompat_DropDownUp 0x7f0a008b
+int style Animation_Catalyst_RedBox 0x7f0a008c
+int style Animation_Design_BottomSheetDialog 0x7f0a008d
+int style AppTheme 0x7f0a008e
+int style AppTheme_AppBarOverlay 0x7f0a008f
+int style AppTheme_NoActionBar 0x7f0a0037
+int style AppTheme_PopupOverlay 0x7f0a0090
+int style Base_AlertDialog_AppCompat 0x7f0a0091
+int style Base_AlertDialog_AppCompat_Light 0x7f0a0092
+int style Base_Animation_AppCompat_Dialog 0x7f0a0093
+int style Base_Animation_AppCompat_DropDownUp 0x7f0a0094
+int style Base_DialogWindowTitle_AppCompat 0x7f0a0095
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f0a0096
+int style Base_TextAppearance_AppCompat 0x7f0a0038
+int style Base_TextAppearance_AppCompat_Body1 0x7f0a0039
+int style Base_TextAppearance_AppCompat_Body2 0x7f0a003a
+int style Base_TextAppearance_AppCompat_Button 0x7f0a0021
+int style Base_TextAppearance_AppCompat_Caption 0x7f0a003b
+int style Base_TextAppearance_AppCompat_Display1 0x7f0a003c
+int style Base_TextAppearance_AppCompat_Display2 0x7f0a003d
+int style Base_TextAppearance_AppCompat_Display3 0x7f0a003e
+int style Base_TextAppearance_AppCompat_Display4 0x7f0a003f
+int style Base_TextAppearance_AppCompat_Headline 0x7f0a0040
+int style Base_TextAppearance_AppCompat_Inverse 0x7f0a000c
+int style Base_TextAppearance_AppCompat_Large 0x7f0a0041
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0a000d
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0a0042
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0a0043
+int style Base_TextAppearance_AppCompat_Medium 0x7f0a0044
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0a000e
+int style Base_TextAppearance_AppCompat_Menu 0x7f0a0045
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f0a0097
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0a0046
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0a0047
+int style Base_TextAppearance_AppCompat_Small 0x7f0a0048
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0a000f
+int style Base_TextAppearance_AppCompat_Subhead 0x7f0a0049
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0a0010
+int style Base_TextAppearance_AppCompat_Title 0x7f0a004a
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0a0011
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0a0081
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0a004b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0a004c
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0a004d
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0a004e
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0a004f
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0a0050
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0a0051
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0a0082
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0a0098
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0a0052
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0a0053
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0a0054
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0a0055
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0a0099
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0a0056
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0a0057
+int style Base_Theme_AppCompat 0x7f0a0058
+int style Base_Theme_AppCompat_CompactMenu 0x7f0a009a
+int style Base_Theme_AppCompat_Dialog 0x7f0a0012
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f0a009b
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0a009c
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0a009d
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0a0002
+int style Base_Theme_AppCompat_Light 0x7f0a0059
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0a009e
+int style Base_Theme_AppCompat_Light_Dialog 0x7f0a0013
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0a009f
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0a00a0
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0a00a1
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0a0003
+int style Base_ThemeOverlay_AppCompat 0x7f0a00a2
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0a00a3
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f0a00a4
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0a00a5
+int style Base_ThemeOverlay_AppCompat_Light 0x7f0a00a6
+int style Base_V11_Theme_AppCompat_Dialog 0x7f0a0014
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0a0015
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0a001d
+int style Base_V12_Widget_AppCompat_EditText 0x7f0a001e
+int style Base_V21_Theme_AppCompat 0x7f0a005a
+int style Base_V21_Theme_AppCompat_Dialog 0x7f0a005b
+int style Base_V21_Theme_AppCompat_Light 0x7f0a005c
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0a005d
+int style Base_V22_Theme_AppCompat 0x7f0a007f
+int style Base_V22_Theme_AppCompat_Light 0x7f0a0080
+int style Base_V23_Theme_AppCompat 0x7f0a0083
+int style Base_V23_Theme_AppCompat_Light 0x7f0a0084
+int style Base_V7_Theme_AppCompat 0x7f0a00a7
+int style Base_V7_Theme_AppCompat_Dialog 0x7f0a00a8
+int style Base_V7_Theme_AppCompat_Light 0x7f0a00a9
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0a00aa
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0a00ab
+int style Base_V7_Widget_AppCompat_EditText 0x7f0a00ac
+int style Base_Widget_AppCompat_ActionBar 0x7f0a00ad
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0a00ae
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0a00af
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0a005e
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0a005f
+int style Base_Widget_AppCompat_ActionButton 0x7f0a0060
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0a0061
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0a0062
+int style Base_Widget_AppCompat_ActionMode 0x7f0a00b0
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0a00b1
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0a001f
+int style Base_Widget_AppCompat_Button 0x7f0a0063
+int style Base_Widget_AppCompat_Button_Borderless 0x7f0a0064
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0a0065
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0a00b2
+int style Base_Widget_AppCompat_Button_Colored 0x7f0a0085
+int style Base_Widget_AppCompat_Button_Small 0x7f0a0066
+int style Base_Widget_AppCompat_ButtonBar 0x7f0a0067
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0a00b3
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0a0068
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0a0069
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0a00b4
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0a0000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0a00b5
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0a006a
+int style Base_Widget_AppCompat_EditText 0x7f0a0020
+int style Base_Widget_AppCompat_ImageButton 0x7f0a006b
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0a00b6
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0a00b7
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0a00b8
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0a006c
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0a006d
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0a006e
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0a006f
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0a0070
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f0a0071
+int style Base_Widget_AppCompat_ListView 0x7f0a0072
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f0a0073
+int style Base_Widget_AppCompat_ListView_Menu 0x7f0a0074
+int style Base_Widget_AppCompat_PopupMenu 0x7f0a0075
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0a0076
+int style Base_Widget_AppCompat_PopupWindow 0x7f0a00b9
+int style Base_Widget_AppCompat_ProgressBar 0x7f0a0016
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0a0017
+int style Base_Widget_AppCompat_RatingBar 0x7f0a0077
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0a0086
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f0a0087
+int style Base_Widget_AppCompat_SearchView 0x7f0a00ba
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0a00bb
+int style Base_Widget_AppCompat_SeekBar 0x7f0a0078
+int style Base_Widget_AppCompat_Spinner 0x7f0a0079
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0a0004
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0a007a
+int style Base_Widget_AppCompat_Toolbar 0x7f0a00bc
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0a007b
+int style Base_Widget_Design_TabLayout 0x7f0a00bd
+int style FullscreenActionBarStyle 0x7f0a00be
+int style Platform_AppCompat 0x7f0a0018
+int style Platform_AppCompat_Light 0x7f0a0019
+int style Platform_ThemeOverlay_AppCompat 0x7f0a007c
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0a007d
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f0a007e
+int style Platform_V11_AppCompat 0x7f0a001a
+int style Platform_V11_AppCompat_Light 0x7f0a001b
+int style Platform_V14_AppCompat 0x7f0a0022
+int style Platform_V14_AppCompat_Light 0x7f0a0023
+int style Platform_Widget_AppCompat_Spinner 0x7f0a001c
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0a0029
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0a002a
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0a002b
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0a002c
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0a002d
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0a002e
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0a002f
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0a0030
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0a0031
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0a0032
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0a0033
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0a0034
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0a0035
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0a0036
+int style TextAppearance_AppCompat 0x7f0a00bf
+int style TextAppearance_AppCompat_Body1 0x7f0a00c0
+int style TextAppearance_AppCompat_Body2 0x7f0a00c1
+int style TextAppearance_AppCompat_Button 0x7f0a00c2
+int style TextAppearance_AppCompat_Caption 0x7f0a00c3
+int style TextAppearance_AppCompat_Display1 0x7f0a00c4
+int style TextAppearance_AppCompat_Display2 0x7f0a00c5
+int style TextAppearance_AppCompat_Display3 0x7f0a00c6
+int style TextAppearance_AppCompat_Display4 0x7f0a00c7
+int style TextAppearance_AppCompat_Headline 0x7f0a00c8
+int style TextAppearance_AppCompat_Inverse 0x7f0a00c9
+int style TextAppearance_AppCompat_Large 0x7f0a00ca
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0a00cb
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0a00cc
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0a00cd
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0a00ce
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0a00cf
+int style TextAppearance_AppCompat_Medium 0x7f0a00d0
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0a00d1
+int style TextAppearance_AppCompat_Menu 0x7f0a00d2
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0a00d3
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0a00d4
+int style TextAppearance_AppCompat_Small 0x7f0a00d5
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0a00d6
+int style TextAppearance_AppCompat_Subhead 0x7f0a00d7
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0a00d8
+int style TextAppearance_AppCompat_Title 0x7f0a00d9
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0a00da
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0a00db
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0a00dc
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0a00dd
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0a00de
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0a00df
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0a00e0
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0a00e1
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0a00e2
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0a00e3
+int style TextAppearance_AppCompat_Widget_Button 0x7f0a00e4
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0a00e5
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0a00e6
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0a00e7
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0a00e8
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0a00e9
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0a00ea
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0a00eb
+int style TextAppearance_Design_Counter 0x7f0a00ec
+int style TextAppearance_Design_Counter_Overflow 0x7f0a00ed
+int style TextAppearance_Design_Error 0x7f0a00ee
+int style TextAppearance_Design_Hint 0x7f0a00ef
+int style TextAppearance_Design_Snackbar_Message 0x7f0a00f0
+int style TextAppearance_Design_Tab 0x7f0a00f1
+int style TextAppearance_StatusBar_EventContent 0x7f0a0024
+int style TextAppearance_StatusBar_EventContent_Info 0x7f0a0025
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f0a0026
+int style TextAppearance_StatusBar_EventContent_Time 0x7f0a0027
+int style TextAppearance_StatusBar_EventContent_Title 0x7f0a0028
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0a00f2
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0a00f3
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0a00f4
+int style Theme 0x7f0a00f5
+int style Theme_AppCompat 0x7f0a00f6
+int style Theme_AppCompat_CompactMenu 0x7f0a00f7
+int style Theme_AppCompat_DayNight 0x7f0a0005
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0a0006
+int style Theme_AppCompat_DayNight_Dialog 0x7f0a0007
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0a0008
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0a0009
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0a000a
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f0a000b
+int style Theme_AppCompat_Dialog 0x7f0a00f8
+int style Theme_AppCompat_Dialog_Alert 0x7f0a00f9
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0a00fa
+int style Theme_AppCompat_DialogWhenLarge 0x7f0a00fb
+int style Theme_AppCompat_Light 0x7f0a00fc
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0a00fd
+int style Theme_AppCompat_Light_Dialog 0x7f0a00fe
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0a00ff
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0a0100
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0a0101
+int style Theme_AppCompat_Light_NoActionBar 0x7f0a0102
+int style Theme_AppCompat_NoActionBar 0x7f0a0103
+int style Theme_Catalyst 0x7f0a0104
+int style Theme_Catalyst_RedBox 0x7f0a0105
+int style Theme_Design 0x7f0a0106
+int style Theme_Design_BottomSheetDialog 0x7f0a0107
+int style Theme_Design_Light 0x7f0a0108
+int style Theme_Design_Light_BottomSheetDialog 0x7f0a0109
+int style Theme_Design_Light_NoActionBar 0x7f0a010a
+int style Theme_Design_NoActionBar 0x7f0a010b
+int style Theme_ReactNative_AppCompat_Light 0x7f0a010c
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0a010d
+int style ThemeOverlay_AppCompat 0x7f0a010e
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0a010f
+int style ThemeOverlay_AppCompat_Dark 0x7f0a0110
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0a0111
+int style ThemeOverlay_AppCompat_Light 0x7f0a0112
+int style Widget_AppCompat_ActionBar 0x7f0a0113
+int style Widget_AppCompat_ActionBar_Solid 0x7f0a0114
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0a0115
+int style Widget_AppCompat_ActionBar_TabText 0x7f0a0116
+int style Widget_AppCompat_ActionBar_TabView 0x7f0a0117
+int style Widget_AppCompat_ActionButton 0x7f0a0118
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0a0119
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0a011a
+int style Widget_AppCompat_ActionMode 0x7f0a011b
+int style Widget_AppCompat_ActivityChooserView 0x7f0a011c
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0a011d
+int style Widget_AppCompat_Button 0x7f0a011e
+int style Widget_AppCompat_Button_Borderless 0x7f0a011f
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0a0120
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0a0121
+int style Widget_AppCompat_Button_Colored 0x7f0a0122
+int style Widget_AppCompat_Button_Small 0x7f0a0123
+int style Widget_AppCompat_ButtonBar 0x7f0a0124
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0a0125
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0a0126
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0a0127
+int style Widget_AppCompat_CompoundButton_Switch 0x7f0a0128
+int style Widget_AppCompat_DrawerArrowToggle 0x7f0a0129
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f0a012a
+int style Widget_AppCompat_EditText 0x7f0a012b
+int style Widget_AppCompat_ImageButton 0x7f0a012c
+int style Widget_AppCompat_Light_ActionBar 0x7f0a012d
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0a012e
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0a012f
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0a0130
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0a0131
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0a0132
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0a0133
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0a0134
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0a0135
+int style Widget_AppCompat_Light_ActionButton 0x7f0a0136
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0a0137
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0a0138
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0a0139
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f0a013a
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0a013b
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0a013c
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f0a013d
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f0a013e
+int style Widget_AppCompat_Light_PopupMenu 0x7f0a013f
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0a0140
+int style Widget_AppCompat_Light_SearchView 0x7f0a0141
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0a0142
+int style Widget_AppCompat_ListPopupWindow 0x7f0a0143
+int style Widget_AppCompat_ListView 0x7f0a0144
+int style Widget_AppCompat_ListView_DropDown 0x7f0a0145
+int style Widget_AppCompat_ListView_Menu 0x7f0a0146
+int style Widget_AppCompat_PopupMenu 0x7f0a0147
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f0a0148
+int style Widget_AppCompat_PopupWindow 0x7f0a0149
+int style Widget_AppCompat_ProgressBar 0x7f0a014a
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0a014b
+int style Widget_AppCompat_RatingBar 0x7f0a014c
+int style Widget_AppCompat_RatingBar_Indicator 0x7f0a014d
+int style Widget_AppCompat_RatingBar_Small 0x7f0a014e
+int style Widget_AppCompat_SearchView 0x7f0a014f
+int style Widget_AppCompat_SearchView_ActionBar 0x7f0a0150
+int style Widget_AppCompat_SeekBar 0x7f0a0151
+int style Widget_AppCompat_Spinner 0x7f0a0152
+int style Widget_AppCompat_Spinner_DropDown 0x7f0a0153
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0a0154
+int style Widget_AppCompat_Spinner_Underlined 0x7f0a0155
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f0a0156
+int style Widget_AppCompat_Toolbar 0x7f0a0157
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0a0158
+int style Widget_Design_AppBarLayout 0x7f0a0159
+int style Widget_Design_BottomSheet_Modal 0x7f0a015a
+int style Widget_Design_CollapsingToolbar 0x7f0a015b
+int style Widget_Design_CoordinatorLayout 0x7f0a015c
+int style Widget_Design_FloatingActionButton 0x7f0a015d
+int style Widget_Design_NavigationView 0x7f0a015e
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f0a015f
+int style Widget_Design_Snackbar 0x7f0a0160
+int style Widget_Design_TabLayout 0x7f0a0001
+int style Widget_Design_TextInputLayout 0x7f0a0161
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_elevation 1
+int styleable AppBarLayout_expanded 2
+int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
+int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
+int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
+int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
+int styleable AppCompatTheme_actionBarDivider 23
+int styleable AppCompatTheme_actionBarItemBackground 24
+int styleable AppCompatTheme_actionBarPopupTheme 17
+int styleable AppCompatTheme_actionBarSize 22
+int styleable AppCompatTheme_actionBarSplitStyle 19
+int styleable AppCompatTheme_actionBarStyle 18
+int styleable AppCompatTheme_actionBarTabBarStyle 13
+int styleable AppCompatTheme_actionBarTabStyle 12
+int styleable AppCompatTheme_actionBarTabTextStyle 14
+int styleable AppCompatTheme_actionBarTheme 20
+int styleable AppCompatTheme_actionBarWidgetTheme 21
+int styleable AppCompatTheme_actionButtonStyle 49
+int styleable AppCompatTheme_actionDropDownStyle 45
+int styleable AppCompatTheme_actionMenuTextAppearance 25
+int styleable AppCompatTheme_actionMenuTextColor 26
+int styleable AppCompatTheme_actionModeBackground 29
+int styleable AppCompatTheme_actionModeCloseButtonStyle 28
+int styleable AppCompatTheme_actionModeCloseDrawable 31
+int styleable AppCompatTheme_actionModeCopyDrawable 33
+int styleable AppCompatTheme_actionModeCutDrawable 32
+int styleable AppCompatTheme_actionModeFindDrawable 37
+int styleable AppCompatTheme_actionModePasteDrawable 34
+int styleable AppCompatTheme_actionModePopupWindowStyle 39
+int styleable AppCompatTheme_actionModeSelectAllDrawable 35
+int styleable AppCompatTheme_actionModeShareDrawable 36
+int styleable AppCompatTheme_actionModeSplitBackground 30
+int styleable AppCompatTheme_actionModeStyle 27
+int styleable AppCompatTheme_actionModeWebSearchDrawable 38
+int styleable AppCompatTheme_actionOverflowButtonStyle 15
+int styleable AppCompatTheme_actionOverflowMenuStyle 16
+int styleable AppCompatTheme_activityChooserViewStyle 57
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
+int styleable AppCompatTheme_alertDialogCenterButtons 93
+int styleable AppCompatTheme_alertDialogStyle 91
+int styleable AppCompatTheme_alertDialogTheme 94
+int styleable AppCompatTheme_android_windowAnimationStyle 1
+int styleable AppCompatTheme_android_windowIsFloating 0
+int styleable AppCompatTheme_autoCompleteTextViewStyle 99
+int styleable AppCompatTheme_borderlessButtonStyle 54
+int styleable AppCompatTheme_buttonBarButtonStyle 51
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
+int styleable AppCompatTheme_buttonBarStyle 50
+int styleable AppCompatTheme_buttonStyle 100
+int styleable AppCompatTheme_buttonStyleSmall 101
+int styleable AppCompatTheme_checkboxStyle 102
+int styleable AppCompatTheme_checkedTextViewStyle 103
+int styleable AppCompatTheme_colorAccent 84
+int styleable AppCompatTheme_colorButtonNormal 88
+int styleable AppCompatTheme_colorControlActivated 86
+int styleable AppCompatTheme_colorControlHighlight 87
+int styleable AppCompatTheme_colorControlNormal 85
+int styleable AppCompatTheme_colorPrimary 82
+int styleable AppCompatTheme_colorPrimaryDark 83
+int styleable AppCompatTheme_colorSwitchThumbNormal 89
+int styleable AppCompatTheme_controlBackground 90
+int styleable AppCompatTheme_dialogPreferredPadding 43
+int styleable AppCompatTheme_dialogTheme 42
+int styleable AppCompatTheme_dividerHorizontal 56
+int styleable AppCompatTheme_dividerVertical 55
+int styleable AppCompatTheme_dropDownListViewStyle 74
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
+int styleable AppCompatTheme_editTextBackground 63
+int styleable AppCompatTheme_editTextColor 62
+int styleable AppCompatTheme_editTextStyle 104
+int styleable AppCompatTheme_homeAsUpIndicator 48
+int styleable AppCompatTheme_imageButtonStyle 64
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
+int styleable AppCompatTheme_listDividerAlertDialog 44
+int styleable AppCompatTheme_listPopupWindowStyle 75
+int styleable AppCompatTheme_listPreferredItemHeight 69
+int styleable AppCompatTheme_listPreferredItemHeightLarge 71
+int styleable AppCompatTheme_listPreferredItemHeightSmall 70
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
+int styleable AppCompatTheme_listPreferredItemPaddingRight 73
+int styleable AppCompatTheme_panelBackground 78
+int styleable AppCompatTheme_panelMenuListTheme 80
+int styleable AppCompatTheme_panelMenuListWidth 79
+int styleable AppCompatTheme_popupMenuStyle 60
+int styleable AppCompatTheme_popupWindowStyle 61
+int styleable AppCompatTheme_radioButtonStyle 105
+int styleable AppCompatTheme_ratingBarStyle 106
+int styleable AppCompatTheme_ratingBarStyleIndicator 107
+int styleable AppCompatTheme_ratingBarStyleSmall 108
+int styleable AppCompatTheme_searchViewStyle 68
+int styleable AppCompatTheme_seekBarStyle 109
+int styleable AppCompatTheme_selectableItemBackground 52
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
+int styleable AppCompatTheme_spinnerDropDownItemStyle 47
+int styleable AppCompatTheme_spinnerStyle 110
+int styleable AppCompatTheme_switchStyle 111
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
+int styleable AppCompatTheme_textAppearanceListItem 76
+int styleable AppCompatTheme_textAppearanceListItemSmall 77
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
+int styleable AppCompatTheme_textColorAlertDialogListItem 95
+int styleable AppCompatTheme_textColorSearchUrl 67
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
+int styleable AppCompatTheme_toolbarStyle 58
+int styleable AppCompatTheme_windowActionBar 2
+int styleable AppCompatTheme_windowActionBarOverlay 4
+int styleable AppCompatTheme_windowActionModeOverlay 5
+int styleable AppCompatTheme_windowFixedHeightMajor 9
+int styleable AppCompatTheme_windowFixedHeightMinor 7
+int styleable AppCompatTheme_windowFixedWidthMajor 6
+int styleable AppCompatTheme_windowFixedWidthMinor 8
+int styleable AppCompatTheme_windowMinWidthMajor 10
+int styleable AppCompatTheme_windowMinWidthMinor 11
+int styleable AppCompatTheme_windowNoTitle 3
+int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 }
+int styleable BottomSheetBehavior_Params_behavior_hideable 1
+int styleable BottomSheetBehavior_Params_behavior_peekHeight 0
+int[] styleable ButtonBarContainerTheme { 0x7f010099, 0x7f01009a }
+int styleable ButtonBarContainerTheme_metaButtonBarButtonStyle 1
+int styleable ButtonBarContainerTheme_metaButtonBarStyle 0
+int[] styleable ButtonBarLayout { 0x7f01009b }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CameraBridgeViewBase { 0x7f01009c, 0x7f01009d }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
+int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009e, 0x7f01009f }
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
+int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
+int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac }
+int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
+int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
+int styleable CollapsingToolbarLayout_contentScrim 8
+int styleable CollapsingToolbarLayout_expandedTitleGravity 12
+int styleable CollapsingToolbarLayout_expandedTitleMargin 1
+int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
+int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
+int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
+int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
+int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
+int styleable CollapsingToolbarLayout_statusBarScrim 9
+int styleable CollapsingToolbarLayout_title 0
+int styleable CollapsingToolbarLayout_titleEnabled 13
+int styleable CollapsingToolbarLayout_toolbarId 10
+int[] styleable CompoundButton { 0x01010107, 0x7f0100ad, 0x7f0100ae }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x7f0100af, 0x7f0100b0 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4 }
+int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
+int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
+int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
+int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
+int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
+int[] styleable DesignTheme { 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 }
+int styleable DesignTheme_bottomSheetDialogTheme 0
+int styleable DesignTheme_bottomSheetStyle 1
+int styleable DesignTheme_textColorError 2
+int[] styleable DrawerArrowToggle { 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 }
+int styleable FloatingActionButton_backgroundTint 6
+int styleable FloatingActionButton_backgroundTintMode 7
+int styleable FloatingActionButton_borderWidth 4
+int styleable FloatingActionButton_elevation 0
+int styleable FloatingActionButton_fabSize 2
+int styleable FloatingActionButton_pressedTranslationZ 3
+int styleable FloatingActionButton_rippleColor 1
+int styleable FloatingActionButton_useCompatPadding 5
+int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c5 }
+int styleable ForegroundLinearLayout_android_foreground 0
+int styleable ForegroundLinearLayout_android_foregroundGravity 1
+int styleable ForegroundLinearLayout_foregroundInsidePadding 2
+int[] styleable GenericDraweeView { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd }
+int styleable GenericDraweeView_actualImageScaleType 11
+int styleable GenericDraweeView_backgroundImage 12
+int styleable GenericDraweeView_fadeDuration 0
+int styleable GenericDraweeView_failureImage 6
+int styleable GenericDraweeView_failureImageScaleType 7
+int styleable GenericDraweeView_overlayImage 13
+int styleable GenericDraweeView_placeholderImage 2
+int styleable GenericDraweeView_placeholderImageScaleType 3
+int styleable GenericDraweeView_pressedStateOverlayImage 14
+int styleable GenericDraweeView_progressBarAutoRotateInterval 10
+int styleable GenericDraweeView_progressBarImage 8
+int styleable GenericDraweeView_progressBarImageScaleType 9
+int styleable GenericDraweeView_retryImage 4
+int styleable GenericDraweeView_retryImageScaleType 5
+int styleable GenericDraweeView_roundAsCircle 15
+int styleable GenericDraweeView_roundBottomLeft 20
+int styleable GenericDraweeView_roundBottomRight 19
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 21
+int styleable GenericDraweeView_roundedCornerRadius 16
+int styleable GenericDraweeView_roundingBorderColor 23
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 1
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+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_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb }
+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 9
+int styleable NavigationView_itemBackground 7
+int styleable NavigationView_itemIconTint 5
+int styleable NavigationView_itemTextAppearance 8
+int styleable NavigationView_itemTextColor 6
+int styleable NavigationView_menu 4
+int[] styleable PopupWindow { 0x01010176, 0x7f0100ec }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f0100ed }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecyclerView { 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1 }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_layoutManager 1
+int styleable RecyclerView_reverseLayout 3
+int styleable RecyclerView_spanCount 2
+int styleable RecyclerView_stackFromEnd 4
+int[] styleable ScrimInsetsFrameLayout { 0x7f0100f2 }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Params { 0x7f0100f3 }
+int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f010101 }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_elevation 1
+int styleable SnackbarLayout_maxActionInlineWidth 2
+int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 3
+int styleable Spinner_android_entries 0
+int styleable Spinner_android_popupBackground 1
+int styleable Spinner_android_prompt 2
+int styleable Spinner_popupTheme 4
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+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 { 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 }
+int styleable TabLayout_tabBackground 3
+int styleable TabLayout_tabContentStart 2
+int styleable TabLayout_tabGravity 5
+int styleable TabLayout_tabIndicatorColor 0
+int styleable TabLayout_tabIndicatorHeight 1
+int styleable TabLayout_tabMaxWidth 7
+int styleable TabLayout_tabMinWidth 6
+int styleable TabLayout_tabMode 4
+int styleable TabLayout_tabPadding 15
+int styleable TabLayout_tabPaddingBottom 14
+int styleable TabLayout_tabPaddingEnd 13
+int styleable TabLayout_tabPaddingStart 11
+int styleable TabLayout_tabPaddingTop 12
+int styleable TabLayout_tabSelectedTextColor 10
+int styleable TabLayout_tabTextAppearance 8
+int styleable TabLayout_tabTextColor 9
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 }
+int styleable TextInputLayout_android_hint 1
+int styleable TextInputLayout_android_textColorHint 0
+int styleable TextInputLayout_counterEnabled 6
+int styleable TextInputLayout_counterMaxLength 7
+int styleable TextInputLayout_counterOverflowTextAppearance 9
+int styleable TextInputLayout_counterTextAppearance 8
+int styleable TextInputLayout_errorEnabled 4
+int styleable TextInputLayout_errorTextAppearance 5
+int styleable TextInputLayout_hintAnimationEnabled 10
+int styleable TextInputLayout_hintEnabled 3
+int styleable TextInputLayout_hintTextAppearance 2
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, 0x7f010133 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010134, 0x7f010135 }
+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_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml preferences 0x7f060000
+int xml settings 0x7f060001
diff --git a/android/build/intermediates/symbols/debug/R.txt b/android/build/intermediates/symbols/debug/R.txt
new file mode 100644
index 000000000..0747608f3
--- /dev/null
+++ b/android/build/intermediates/symbols/debug/R.txt
@@ -0,0 +1,2776 @@
+int anim abc_fade_in 0x7f010001
+int anim abc_fade_out 0x7f010002
+int anim abc_grow_fade_in_from_bottom 0x7f010003
+int anim abc_popup_enter 0x7f010004
+int anim abc_popup_exit 0x7f010005
+int anim abc_shrink_fade_out_from_bottom 0x7f010006
+int anim abc_slide_in_bottom 0x7f010007
+int anim abc_slide_in_top 0x7f010008
+int anim abc_slide_out_bottom 0x7f010009
+int anim abc_slide_out_top 0x7f01000a
+int anim abc_tooltip_enter 0x7f01000b
+int anim abc_tooltip_exit 0x7f01000c
+int anim blink 0x7f01000d
+int anim catalyst_push_up_in 0x7f01000e
+int anim catalyst_push_up_out 0x7f01000f
+int anim design_bottom_sheet_slide_in 0x7f010010
+int anim design_bottom_sheet_slide_out 0x7f010011
+int anim design_snackbar_in 0x7f010012
+int anim design_snackbar_out 0x7f010013
+int animator design_appbar_state_list_animator 0x7f020001
+int animator design_fab_hide_motion_spec 0x7f020002
+int animator design_fab_show_motion_spec 0x7f020003
+int animator mtrl_btn_state_list_anim 0x7f020004
+int animator mtrl_btn_unelevated_state_list_anim 0x7f020005
+int animator mtrl_chip_state_list_anim 0x7f020006
+int animator mtrl_fab_hide_motion_spec 0x7f020007
+int animator mtrl_fab_show_motion_spec 0x7f020008
+int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020009
+int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02000a
+int attr actionBarDivider 0x7f040001
+int attr actionBarItemBackground 0x7f040002
+int attr actionBarPopupTheme 0x7f040003
+int attr actionBarSize 0x7f040004
+int attr actionBarSplitStyle 0x7f040005
+int attr actionBarStyle 0x7f040006
+int attr actionBarTabBarStyle 0x7f040007
+int attr actionBarTabStyle 0x7f040008
+int attr actionBarTabTextStyle 0x7f040009
+int attr actionBarTheme 0x7f04000a
+int attr actionBarWidgetTheme 0x7f04000b
+int attr actionButtonStyle 0x7f04000c
+int attr actionDropDownStyle 0x7f04000d
+int attr actionLayout 0x7f04000e
+int attr actionMenuTextAppearance 0x7f04000f
+int attr actionMenuTextColor 0x7f040010
+int attr actionModeBackground 0x7f040011
+int attr actionModeCloseButtonStyle 0x7f040012
+int attr actionModeCloseDrawable 0x7f040013
+int attr actionModeCopyDrawable 0x7f040014
+int attr actionModeCutDrawable 0x7f040015
+int attr actionModeFindDrawable 0x7f040016
+int attr actionModePasteDrawable 0x7f040017
+int attr actionModePopupWindowStyle 0x7f040018
+int attr actionModeSelectAllDrawable 0x7f040019
+int attr actionModeShareDrawable 0x7f04001a
+int attr actionModeSplitBackground 0x7f04001b
+int attr actionModeStyle 0x7f04001c
+int attr actionModeWebSearchDrawable 0x7f04001d
+int attr actionOverflowButtonStyle 0x7f04001e
+int attr actionOverflowMenuStyle 0x7f04001f
+int attr actionProviderClass 0x7f040020
+int attr actionViewClass 0x7f040021
+int attr activityChooserViewStyle 0x7f040022
+int attr actualImageScaleType 0x7f040023
+int attr alertDialogButtonGroupStyle 0x7f040024
+int attr alertDialogCenterButtons 0x7f040025
+int attr alertDialogStyle 0x7f040026
+int attr alertDialogTheme 0x7f040027
+int attr allowStacking 0x7f040028
+int attr alpha 0x7f040029
+int attr alphabeticModifiers 0x7f04002a
+int attr arrowHeadLength 0x7f04002b
+int attr arrowShaftLength 0x7f04002c
+int attr autoCompleteTextViewStyle 0x7f04002d
+int attr autoSizeMaxTextSize 0x7f04002e
+int attr autoSizeMinTextSize 0x7f04002f
+int attr autoSizePresetSizes 0x7f040030
+int attr autoSizeStepGranularity 0x7f040031
+int attr autoSizeTextType 0x7f040032
+int attr background 0x7f040033
+int attr backgroundImage 0x7f040034
+int attr backgroundSplit 0x7f040035
+int attr backgroundStacked 0x7f040036
+int attr backgroundTint 0x7f040037
+int attr backgroundTintMode 0x7f040038
+int attr barLength 0x7f040039
+int attr behavior_autoHide 0x7f04003a
+int attr behavior_fitToContents 0x7f04003b
+int attr behavior_hideable 0x7f04003c
+int attr behavior_overlapTop 0x7f04003d
+int attr behavior_peekHeight 0x7f04003e
+int attr behavior_skipCollapsed 0x7f04003f
+int attr borderWidth 0x7f040040
+int attr borderlessButtonStyle 0x7f040041
+int attr bottomAppBarStyle 0x7f040042
+int attr bottomNavigationStyle 0x7f040043
+int attr bottomSheetDialogTheme 0x7f040044
+int attr bottomSheetStyle 0x7f040045
+int attr boxBackgroundColor 0x7f040046
+int attr boxBackgroundMode 0x7f040047
+int attr boxCollapsedPaddingTop 0x7f040048
+int attr boxCornerRadiusBottomEnd 0x7f040049
+int attr boxCornerRadiusBottomStart 0x7f04004a
+int attr boxCornerRadiusTopEnd 0x7f04004b
+int attr boxCornerRadiusTopStart 0x7f04004c
+int attr boxStrokeColor 0x7f04004d
+int attr boxStrokeWidth 0x7f04004e
+int attr buttonBarButtonStyle 0x7f04004f
+int attr buttonBarNegativeButtonStyle 0x7f040050
+int attr buttonBarNeutralButtonStyle 0x7f040051
+int attr buttonBarPositiveButtonStyle 0x7f040052
+int attr buttonBarStyle 0x7f040053
+int attr buttonGravity 0x7f040054
+int attr buttonIconDimen 0x7f040055
+int attr buttonPanelSideLayout 0x7f040056
+int attr buttonStyle 0x7f040057
+int attr buttonStyleSmall 0x7f040058
+int attr buttonTint 0x7f040059
+int attr buttonTintMode 0x7f04005a
+int attr camera_id 0x7f04005b
+int attr cardBackgroundColor 0x7f04005c
+int attr cardCornerRadius 0x7f04005d
+int attr cardElevation 0x7f04005e
+int attr cardMaxElevation 0x7f04005f
+int attr cardPreventCornerOverlap 0x7f040060
+int attr cardUseCompatPadding 0x7f040061
+int attr cardViewStyle 0x7f040062
+int attr checkboxStyle 0x7f040063
+int attr checkedChip 0x7f040064
+int attr checkedIcon 0x7f040065
+int attr checkedIconEnabled 0x7f040066
+int attr checkedIconVisible 0x7f040067
+int attr checkedTextViewStyle 0x7f040068
+int attr chipBackgroundColor 0x7f040069
+int attr chipCornerRadius 0x7f04006a
+int attr chipEndPadding 0x7f04006b
+int attr chipGroupStyle 0x7f04006c
+int attr chipIcon 0x7f04006d
+int attr chipIconEnabled 0x7f04006e
+int attr chipIconSize 0x7f04006f
+int attr chipIconTint 0x7f040070
+int attr chipIconVisible 0x7f040071
+int attr chipMinHeight 0x7f040072
+int attr chipSpacing 0x7f040073
+int attr chipSpacingHorizontal 0x7f040074
+int attr chipSpacingVertical 0x7f040075
+int attr chipStandaloneStyle 0x7f040076
+int attr chipStartPadding 0x7f040077
+int attr chipStrokeColor 0x7f040078
+int attr chipStrokeWidth 0x7f040079
+int attr chipStyle 0x7f04007a
+int attr closeIcon 0x7f04007b
+int attr closeIconEnabled 0x7f04007c
+int attr closeIconEndPadding 0x7f04007d
+int attr closeIconSize 0x7f04007e
+int attr closeIconStartPadding 0x7f04007f
+int attr closeIconTint 0x7f040080
+int attr closeIconVisible 0x7f040081
+int attr closeItemLayout 0x7f040082
+int attr collapseContentDescription 0x7f040083
+int attr collapseIcon 0x7f040084
+int attr collapsedTitleGravity 0x7f040085
+int attr collapsedTitleTextAppearance 0x7f040086
+int attr color 0x7f040087
+int attr colorAccent 0x7f040088
+int attr colorBackgroundFloating 0x7f040089
+int attr colorButtonNormal 0x7f04008a
+int attr colorControlActivated 0x7f04008b
+int attr colorControlHighlight 0x7f04008c
+int attr colorControlNormal 0x7f04008d
+int attr colorError 0x7f04008e
+int attr colorPrimary 0x7f04008f
+int attr colorPrimaryDark 0x7f040090
+int attr colorSecondary 0x7f040091
+int attr colorSwitchThumbNormal 0x7f040092
+int attr commitIcon 0x7f040093
+int attr contentDescription 0x7f040094
+int attr contentInsetEnd 0x7f040095
+int attr contentInsetEndWithActions 0x7f040096
+int attr contentInsetLeft 0x7f040097
+int attr contentInsetRight 0x7f040098
+int attr contentInsetStart 0x7f040099
+int attr contentInsetStartWithNavigation 0x7f04009a
+int attr contentPadding 0x7f04009b
+int attr contentPaddingBottom 0x7f04009c
+int attr contentPaddingLeft 0x7f04009d
+int attr contentPaddingRight 0x7f04009e
+int attr contentPaddingTop 0x7f04009f
+int attr contentScrim 0x7f0400a0
+int attr controlBackground 0x7f0400a1
+int attr coordinatorLayoutStyle 0x7f0400a2
+int attr cornerRadius 0x7f0400a3
+int attr counterEnabled 0x7f0400a4
+int attr counterMaxLength 0x7f0400a5
+int attr counterOverflowTextAppearance 0x7f0400a6
+int attr counterTextAppearance 0x7f0400a7
+int attr customNavigationLayout 0x7f0400a8
+int attr defaultQueryHint 0x7f0400a9
+int attr dialogCornerRadius 0x7f0400aa
+int attr dialogPreferredPadding 0x7f0400ab
+int attr dialogTheme 0x7f0400ac
+int attr displayOptions 0x7f0400ad
+int attr divider 0x7f0400ae
+int attr dividerHorizontal 0x7f0400af
+int attr dividerPadding 0x7f0400b0
+int attr dividerVertical 0x7f0400b1
+int attr drawableSize 0x7f0400b2
+int attr drawerArrowStyle 0x7f0400b3
+int attr dropDownListViewStyle 0x7f0400b4
+int attr dropdownListPreferredItemHeight 0x7f0400b5
+int attr editTextBackground 0x7f0400b6
+int attr editTextColor 0x7f0400b7
+int attr editTextStyle 0x7f0400b8
+int attr elevation 0x7f0400b9
+int attr enforceMaterialTheme 0x7f0400ba
+int attr enforceTextAppearance 0x7f0400bb
+int attr errorEnabled 0x7f0400bc
+int attr errorTextAppearance 0x7f0400bd
+int attr expandActivityOverflowButtonDrawable 0x7f0400be
+int attr expanded 0x7f0400bf
+int attr expandedTitleGravity 0x7f0400c0
+int attr expandedTitleMargin 0x7f0400c1
+int attr expandedTitleMarginBottom 0x7f0400c2
+int attr expandedTitleMarginEnd 0x7f0400c3
+int attr expandedTitleMarginStart 0x7f0400c4
+int attr expandedTitleMarginTop 0x7f0400c5
+int attr expandedTitleTextAppearance 0x7f0400c6
+int attr fabAlignmentMode 0x7f0400c7
+int attr fabCradleMargin 0x7f0400c8
+int attr fabCradleRoundedCornerRadius 0x7f0400c9
+int attr fabCradleVerticalOffset 0x7f0400ca
+int attr fabCustomSize 0x7f0400cb
+int attr fabSize 0x7f0400cc
+int attr fadeDuration 0x7f0400cd
+int attr failureImage 0x7f0400ce
+int attr failureImageScaleType 0x7f0400cf
+int attr fastScrollEnabled 0x7f0400d0
+int attr fastScrollHorizontalThumbDrawable 0x7f0400d1
+int attr fastScrollHorizontalTrackDrawable 0x7f0400d2
+int attr fastScrollVerticalThumbDrawable 0x7f0400d3
+int attr fastScrollVerticalTrackDrawable 0x7f0400d4
+int attr firstBaselineToTopHeight 0x7f0400d5
+int attr floatingActionButtonStyle 0x7f0400d6
+int attr font 0x7f0400d7
+int attr fontFamily 0x7f0400d8
+int attr fontProviderAuthority 0x7f0400d9
+int attr fontProviderCerts 0x7f0400da
+int attr fontProviderFetchStrategy 0x7f0400db
+int attr fontProviderFetchTimeout 0x7f0400dc
+int attr fontProviderPackage 0x7f0400dd
+int attr fontProviderQuery 0x7f0400de
+int attr fontStyle 0x7f0400df
+int attr fontVariationSettings 0x7f0400e0
+int attr fontWeight 0x7f0400e1
+int attr foregroundInsidePadding 0x7f0400e2
+int attr gapBetweenBars 0x7f0400e3
+int attr goIcon 0x7f0400e4
+int attr headerLayout 0x7f0400e5
+int attr height 0x7f0400e6
+int attr helperText 0x7f0400e7
+int attr helperTextEnabled 0x7f0400e8
+int attr helperTextTextAppearance 0x7f0400e9
+int attr hideMotionSpec 0x7f0400ea
+int attr hideOnContentScroll 0x7f0400eb
+int attr hideOnScroll 0x7f0400ec
+int attr hintAnimationEnabled 0x7f0400ed
+int attr hintEnabled 0x7f0400ee
+int attr hintTextAppearance 0x7f0400ef
+int attr homeAsUpIndicator 0x7f0400f0
+int attr homeLayout 0x7f0400f1
+int attr hoveredFocusedTranslationZ 0x7f0400f2
+int attr icon 0x7f0400f3
+int attr iconEndPadding 0x7f0400f4
+int attr iconGravity 0x7f0400f5
+int attr iconPadding 0x7f0400f6
+int attr iconSize 0x7f0400f7
+int attr iconStartPadding 0x7f0400f8
+int attr iconTint 0x7f0400f9
+int attr iconTintMode 0x7f0400fa
+int attr iconifiedByDefault 0x7f0400fb
+int attr imageButtonStyle 0x7f0400fc
+int attr indeterminateProgressStyle 0x7f0400fd
+int attr initialActivityCount 0x7f0400fe
+int attr insetForeground 0x7f0400ff
+int attr isLightTheme 0x7f040100
+int attr itemBackground 0x7f040101
+int attr itemHorizontalPadding 0x7f040102
+int attr itemHorizontalTranslationEnabled 0x7f040103
+int attr itemIconPadding 0x7f040104
+int attr itemIconSize 0x7f040105
+int attr itemIconTint 0x7f040106
+int attr itemPadding 0x7f040107
+int attr itemSpacing 0x7f040108
+int attr itemTextAppearance 0x7f040109
+int attr itemTextAppearanceActive 0x7f04010a
+int attr itemTextAppearanceInactive 0x7f04010b
+int attr itemTextColor 0x7f04010c
+int attr keylines 0x7f04010d
+int attr labelVisibilityMode 0x7f04010e
+int attr lastBaselineToBottomHeight 0x7f04010f
+int attr layout 0x7f040110
+int attr layoutManager 0x7f040111
+int attr layout_anchor 0x7f040112
+int attr layout_anchorGravity 0x7f040113
+int attr layout_behavior 0x7f040114
+int attr layout_collapseMode 0x7f040115
+int attr layout_collapseParallaxMultiplier 0x7f040116
+int attr layout_dodgeInsetEdges 0x7f040117
+int attr layout_insetEdge 0x7f040118
+int attr layout_keyline 0x7f040119
+int attr layout_scrollFlags 0x7f04011a
+int attr layout_scrollInterpolator 0x7f04011b
+int attr liftOnScroll 0x7f04011c
+int attr lineHeight 0x7f04011d
+int attr lineSpacing 0x7f04011e
+int attr listChoiceBackgroundIndicator 0x7f04011f
+int attr listDividerAlertDialog 0x7f040120
+int attr listItemLayout 0x7f040121
+int attr listLayout 0x7f040122
+int attr listMenuViewStyle 0x7f040123
+int attr listPopupWindowStyle 0x7f040124
+int attr listPreferredItemHeight 0x7f040125
+int attr listPreferredItemHeightLarge 0x7f040126
+int attr listPreferredItemHeightSmall 0x7f040127
+int attr listPreferredItemPaddingLeft 0x7f040128
+int attr listPreferredItemPaddingRight 0x7f040129
+int attr logo 0x7f04012a
+int attr logoDescription 0x7f04012b
+int attr materialButtonStyle 0x7f04012c
+int attr materialCardViewStyle 0x7f04012d
+int attr maxActionInlineWidth 0x7f04012e
+int attr maxButtonHeight 0x7f04012f
+int attr maxImageSize 0x7f040130
+int attr measureWithLargestChild 0x7f040131
+int attr menu 0x7f040132
+int attr multiChoiceItemLayout 0x7f040133
+int attr navigationContentDescription 0x7f040134
+int attr navigationIcon 0x7f040135
+int attr navigationMode 0x7f040136
+int attr navigationViewStyle 0x7f040137
+int attr numericModifiers 0x7f040138
+int attr overlapAnchor 0x7f040139
+int attr overlayImage 0x7f04013a
+int attr paddingBottomNoButtons 0x7f04013b
+int attr paddingEnd 0x7f04013c
+int attr paddingStart 0x7f04013d
+int attr paddingTopNoTitle 0x7f04013e
+int attr panelBackground 0x7f04013f
+int attr panelMenuListTheme 0x7f040140
+int attr panelMenuListWidth 0x7f040141
+int attr passwordToggleContentDescription 0x7f040142
+int attr passwordToggleDrawable 0x7f040143
+int attr passwordToggleEnabled 0x7f040144
+int attr passwordToggleTint 0x7f040145
+int attr passwordToggleTintMode 0x7f040146
+int attr placeholderImage 0x7f040147
+int attr placeholderImageScaleType 0x7f040148
+int attr popupMenuStyle 0x7f040149
+int attr popupTheme 0x7f04014a
+int attr popupWindowStyle 0x7f04014b
+int attr preserveIconSpacing 0x7f04014c
+int attr pressedStateOverlayImage 0x7f04014d
+int attr pressedTranslationZ 0x7f04014e
+int attr progressBarAutoRotateInterval 0x7f04014f
+int attr progressBarImage 0x7f040150
+int attr progressBarImageScaleType 0x7f040151
+int attr progressBarPadding 0x7f040152
+int attr progressBarStyle 0x7f040153
+int attr queryBackground 0x7f040154
+int attr queryHint 0x7f040155
+int attr radioButtonStyle 0x7f040156
+int attr ratingBarStyle 0x7f040157
+int attr ratingBarStyleIndicator 0x7f040158
+int attr ratingBarStyleSmall 0x7f040159
+int attr retryImage 0x7f04015a
+int attr retryImageScaleType 0x7f04015b
+int attr reverseLayout 0x7f04015c
+int attr rippleColor 0x7f04015d
+int attr roundAsCircle 0x7f04015e
+int attr roundBottomLeft 0x7f04015f
+int attr roundBottomRight 0x7f040160
+int attr roundTopLeft 0x7f040161
+int attr roundTopRight 0x7f040162
+int attr roundWithOverlayColor 0x7f040163
+int attr roundedCornerRadius 0x7f040164
+int attr roundingBorderColor 0x7f040165
+int attr roundingBorderWidth 0x7f040166
+int attr scrimAnimationDuration 0x7f040167
+int attr scrimBackground 0x7f040168
+int attr scrimVisibleHeightTrigger 0x7f040169
+int attr searchHintIcon 0x7f04016a
+int attr searchIcon 0x7f04016b
+int attr searchViewStyle 0x7f04016c
+int attr seekBarStyle 0x7f04016d
+int attr selectableItemBackground 0x7f04016e
+int attr selectableItemBackgroundBorderless 0x7f04016f
+int attr showAsAction 0x7f040170
+int attr showDividers 0x7f040171
+int attr showMotionSpec 0x7f040172
+int attr showText 0x7f040173
+int attr showTitle 0x7f040174
+int attr show_fps 0x7f040175
+int attr singleChoiceItemLayout 0x7f040176
+int attr singleLine 0x7f040177
+int attr singleSelection 0x7f040178
+int attr snackbarButtonStyle 0x7f040179
+int attr snackbarStyle 0x7f04017a
+int attr spanCount 0x7f04017b
+int attr spinBars 0x7f04017c
+int attr spinnerDropDownItemStyle 0x7f04017d
+int attr spinnerStyle 0x7f04017e
+int attr splitTrack 0x7f04017f
+int attr srcCompat 0x7f040180
+int attr stackFromEnd 0x7f040181
+int attr state_above_anchor 0x7f040182
+int attr state_collapsed 0x7f040183
+int attr state_collapsible 0x7f040184
+int attr state_liftable 0x7f040185
+int attr state_lifted 0x7f040186
+int attr statusBarBackground 0x7f040187
+int attr statusBarScrim 0x7f040188
+int attr strokeColor 0x7f040189
+int attr strokeWidth 0x7f04018a
+int attr subMenuArrow 0x7f04018b
+int attr submitBackground 0x7f04018c
+int attr subtitle 0x7f04018d
+int attr subtitleTextAppearance 0x7f04018e
+int attr subtitleTextColor 0x7f04018f
+int attr subtitleTextStyle 0x7f040190
+int attr suggestionRowLayout 0x7f040191
+int attr switchMinWidth 0x7f040192
+int attr switchPadding 0x7f040193
+int attr switchStyle 0x7f040194
+int attr switchTextAppearance 0x7f040195
+int attr tabBackground 0x7f040196
+int attr tabContentStart 0x7f040197
+int attr tabGravity 0x7f040198
+int attr tabIconTint 0x7f040199
+int attr tabIconTintMode 0x7f04019a
+int attr tabIndicator 0x7f04019b
+int attr tabIndicatorAnimationDuration 0x7f04019c
+int attr tabIndicatorColor 0x7f04019d
+int attr tabIndicatorFullWidth 0x7f04019e
+int attr tabIndicatorGravity 0x7f04019f
+int attr tabIndicatorHeight 0x7f0401a0
+int attr tabInlineLabel 0x7f0401a1
+int attr tabMaxWidth 0x7f0401a2
+int attr tabMinWidth 0x7f0401a3
+int attr tabMode 0x7f0401a4
+int attr tabPadding 0x7f0401a5
+int attr tabPaddingBottom 0x7f0401a6
+int attr tabPaddingEnd 0x7f0401a7
+int attr tabPaddingStart 0x7f0401a8
+int attr tabPaddingTop 0x7f0401a9
+int attr tabRippleColor 0x7f0401aa
+int attr tabSelectedTextColor 0x7f0401ab
+int attr tabStyle 0x7f0401ac
+int attr tabTextAppearance 0x7f0401ad
+int attr tabTextColor 0x7f0401ae
+int attr tabUnboundedRipple 0x7f0401af
+int attr textAllCaps 0x7f0401b0
+int attr textAppearanceBody1 0x7f0401b1
+int attr textAppearanceBody2 0x7f0401b2
+int attr textAppearanceButton 0x7f0401b3
+int attr textAppearanceCaption 0x7f0401b4
+int attr textAppearanceHeadline1 0x7f0401b5
+int attr textAppearanceHeadline2 0x7f0401b6
+int attr textAppearanceHeadline3 0x7f0401b7
+int attr textAppearanceHeadline4 0x7f0401b8
+int attr textAppearanceHeadline5 0x7f0401b9
+int attr textAppearanceHeadline6 0x7f0401ba
+int attr textAppearanceLargePopupMenu 0x7f0401bb
+int attr textAppearanceListItem 0x7f0401bc
+int attr textAppearanceListItemSecondary 0x7f0401bd
+int attr textAppearanceListItemSmall 0x7f0401be
+int attr textAppearanceOverline 0x7f0401bf
+int attr textAppearancePopupMenuHeader 0x7f0401c0
+int attr textAppearanceSearchResultSubtitle 0x7f0401c1
+int attr textAppearanceSearchResultTitle 0x7f0401c2
+int attr textAppearanceSmallPopupMenu 0x7f0401c3
+int attr textAppearanceSubtitle1 0x7f0401c4
+int attr textAppearanceSubtitle2 0x7f0401c5
+int attr textColorAlertDialogListItem 0x7f0401c6
+int attr textColorSearchUrl 0x7f0401c7
+int attr textEndPadding 0x7f0401c8
+int attr textInputStyle 0x7f0401c9
+int attr textStartPadding 0x7f0401ca
+int attr theme 0x7f0401cb
+int attr thickness 0x7f0401cc
+int attr thumbTextPadding 0x7f0401cd
+int attr thumbTint 0x7f0401ce
+int attr thumbTintMode 0x7f0401cf
+int attr tickMark 0x7f0401d0
+int attr tickMarkTint 0x7f0401d1
+int attr tickMarkTintMode 0x7f0401d2
+int attr tint 0x7f0401d3
+int attr tintMode 0x7f0401d4
+int attr title 0x7f0401d5
+int attr titleEnabled 0x7f0401d6
+int attr titleMargin 0x7f0401d7
+int attr titleMarginBottom 0x7f0401d8
+int attr titleMarginEnd 0x7f0401d9
+int attr titleMarginStart 0x7f0401da
+int attr titleMarginTop 0x7f0401db
+int attr titleMargins 0x7f0401dc
+int attr titleTextAppearance 0x7f0401dd
+int attr titleTextColor 0x7f0401de
+int attr titleTextStyle 0x7f0401df
+int attr toolbarId 0x7f0401e0
+int attr toolbarNavigationButtonStyle 0x7f0401e1
+int attr toolbarStyle 0x7f0401e2
+int attr tooltipForegroundColor 0x7f0401e3
+int attr tooltipFrameBackground 0x7f0401e4
+int attr tooltipText 0x7f0401e5
+int attr track 0x7f0401e6
+int attr trackTint 0x7f0401e7
+int attr trackTintMode 0x7f0401e8
+int attr ttcIndex 0x7f0401e9
+int attr useCompatPadding 0x7f0401ea
+int attr viewAspectRatio 0x7f0401eb
+int attr viewInflaterClass 0x7f0401ec
+int attr voiceIcon 0x7f0401ed
+int attr windowActionBar 0x7f0401ee
+int attr windowActionBarOverlay 0x7f0401ef
+int attr windowActionModeOverlay 0x7f0401f0
+int attr windowFixedHeightMajor 0x7f0401f1
+int attr windowFixedHeightMinor 0x7f0401f2
+int attr windowFixedWidthMajor 0x7f0401f3
+int attr windowFixedWidthMinor 0x7f0401f4
+int attr windowMinWidthMajor 0x7f0401f5
+int attr windowMinWidthMinor 0x7f0401f6
+int attr windowNoTitle 0x7f0401f7
+int bool abc_action_bar_embed_tabs 0x7f050001
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f050002
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f050003
+int bool abc_allow_stacked_button_bar 0x7f050004
+int bool abc_config_actionMenuItemAllCaps 0x7f050005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050006
+int bool abc_config_closeDialogWhenTouchOutside 0x7f050007
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050008
+int bool mtrl_btn_textappearance_all_caps 0x7f050009
+int color abc_background_cache_hint_selector_material_dark 0x7f060001
+int color abc_background_cache_hint_selector_material_light 0x7f060002
+int color abc_btn_colored_borderless_text_material 0x7f060003
+int color abc_btn_colored_text_material 0x7f060004
+int color abc_color_highlight_material 0x7f060005
+int color abc_hint_foreground_material_dark 0x7f060006
+int color abc_hint_foreground_material_light 0x7f060007
+int color abc_input_method_navigation_guard 0x7f060008
+int color abc_primary_text_disable_only_material_dark 0x7f060009
+int color abc_primary_text_disable_only_material_light 0x7f06000a
+int color abc_primary_text_material_dark 0x7f06000b
+int color abc_primary_text_material_light 0x7f06000c
+int color abc_search_url_text 0x7f06000d
+int color abc_search_url_text_normal 0x7f06000e
+int color abc_search_url_text_pressed 0x7f06000f
+int color abc_search_url_text_selected 0x7f060010
+int color abc_secondary_text_material_dark 0x7f060011
+int color abc_secondary_text_material_light 0x7f060012
+int color abc_tint_btn_checkable 0x7f060013
+int color abc_tint_default 0x7f060014
+int color abc_tint_edittext 0x7f060015
+int color abc_tint_seek_thumb 0x7f060016
+int color abc_tint_spinner 0x7f060017
+int color abc_tint_switch_track 0x7f060018
+int color accent_material_dark 0x7f060019
+int color accent_material_light 0x7f06001a
+int color background_floating_material_dark 0x7f06001b
+int color background_floating_material_light 0x7f06001c
+int color background_material_dark 0x7f06001d
+int color background_material_light 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 button_material_dark 0x7f060025
+int color button_material_light 0x7f060026
+int color cardview_dark_background 0x7f060027
+int color cardview_light_background 0x7f060028
+int color cardview_shadow_end_color 0x7f060029
+int color cardview_shadow_start_color 0x7f06002a
+int color catalyst_redbox_background 0x7f06002b
+int color design_bottom_navigation_shadow_color 0x7f06002c
+int color design_default_color_primary 0x7f06002d
+int color design_default_color_primary_dark 0x7f06002e
+int color design_error 0x7f06002f
+int color design_fab_shadow_end_color 0x7f060030
+int color design_fab_shadow_mid_color 0x7f060031
+int color design_fab_shadow_start_color 0x7f060032
+int color design_fab_stroke_end_inner_color 0x7f060033
+int color design_fab_stroke_end_outer_color 0x7f060034
+int color design_fab_stroke_top_inner_color 0x7f060035
+int color design_fab_stroke_top_outer_color 0x7f060036
+int color design_snackbar_background_color 0x7f060037
+int color design_tint_password_toggle 0x7f060038
+int color dim_foreground_disabled_material_dark 0x7f060039
+int color dim_foreground_disabled_material_light 0x7f06003a
+int color dim_foreground_material_dark 0x7f06003b
+int color dim_foreground_material_light 0x7f06003c
+int color error_color_material_dark 0x7f06003d
+int color error_color_material_light 0x7f06003e
+int color foreground_material_dark 0x7f06003f
+int color foreground_material_light 0x7f060040
+int color highlighted_text_material_dark 0x7f060041
+int color highlighted_text_material_light 0x7f060042
+int color hint_foreground_material_dark 0x7f060043
+int color hint_foreground_material_light 0x7f060044
+int color material_blue_grey_800 0x7f060045
+int color material_blue_grey_900 0x7f060046
+int color material_blue_grey_950 0x7f060047
+int color material_deep_teal_200 0x7f060048
+int color material_deep_teal_500 0x7f060049
+int color material_grey_100 0x7f06004a
+int color material_grey_300 0x7f06004b
+int color material_grey_50 0x7f06004c
+int color material_grey_600 0x7f06004d
+int color material_grey_800 0x7f06004e
+int color material_grey_850 0x7f06004f
+int color material_grey_900 0x7f060050
+int color mtrl_bottom_nav_colored_item_tint 0x7f060051
+int color mtrl_bottom_nav_item_tint 0x7f060052
+int color mtrl_btn_bg_color_disabled 0x7f060053
+int color mtrl_btn_bg_color_selector 0x7f060054
+int color mtrl_btn_ripple_color 0x7f060055
+int color mtrl_btn_stroke_color_selector 0x7f060056
+int color mtrl_btn_text_btn_ripple_color 0x7f060057
+int color mtrl_btn_text_color_disabled 0x7f060058
+int color mtrl_btn_text_color_selector 0x7f060059
+int color mtrl_btn_transparent_bg_color 0x7f06005a
+int color mtrl_chip_background_color 0x7f06005b
+int color mtrl_chip_close_icon_tint 0x7f06005c
+int color mtrl_chip_ripple_color 0x7f06005d
+int color mtrl_chip_text_color 0x7f06005e
+int color mtrl_fab_ripple_color 0x7f06005f
+int color mtrl_scrim_color 0x7f060060
+int color mtrl_tabs_colored_ripple_color 0x7f060061
+int color mtrl_tabs_icon_color_selector 0x7f060062
+int color mtrl_tabs_icon_color_selector_colored 0x7f060063
+int color mtrl_tabs_legacy_text_color_selector 0x7f060064
+int color mtrl_tabs_ripple_color 0x7f060065
+int color mtrl_text_btn_text_color_selector 0x7f060066
+int color mtrl_textinput_default_box_stroke_color 0x7f060067
+int color mtrl_textinput_disabled_color 0x7f060068
+int color mtrl_textinput_filled_box_default_background_color 0x7f060069
+int color mtrl_textinput_hovered_box_stroke_color 0x7f06006a
+int color notification_action_color_filter 0x7f06006b
+int color notification_icon_bg_color 0x7f06006c
+int color primary_dark_material_dark 0x7f06006d
+int color primary_dark_material_light 0x7f06006e
+int color primary_material_dark 0x7f06006f
+int color primary_material_light 0x7f060070
+int color primary_text_default_material_dark 0x7f060071
+int color primary_text_default_material_light 0x7f060072
+int color primary_text_disabled_material_dark 0x7f060073
+int color primary_text_disabled_material_light 0x7f060074
+int color ripple_material_dark 0x7f060075
+int color ripple_material_light 0x7f060076
+int color secondary_text_default_material_dark 0x7f060077
+int color secondary_text_default_material_light 0x7f060078
+int color secondary_text_disabled_material_dark 0x7f060079
+int color secondary_text_disabled_material_light 0x7f06007a
+int color switch_thumb_disabled_material_dark 0x7f06007b
+int color switch_thumb_disabled_material_light 0x7f06007c
+int color switch_thumb_material_dark 0x7f06007d
+int color switch_thumb_material_light 0x7f06007e
+int color switch_thumb_normal_material_dark 0x7f06007f
+int color switch_thumb_normal_material_light 0x7f060080
+int color tooltip_background_dark 0x7f060081
+int color tooltip_background_light 0x7f060082
+int dimen abc_action_bar_content_inset_material 0x7f070001
+int dimen abc_action_bar_content_inset_with_nav 0x7f070002
+int dimen abc_action_bar_default_height_material 0x7f070003
+int dimen abc_action_bar_default_padding_end_material 0x7f070004
+int dimen abc_action_bar_default_padding_start_material 0x7f070005
+int dimen abc_action_bar_elevation_material 0x7f070006
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
+int dimen abc_action_bar_progress_bar_size 0x7f07000a
+int dimen abc_action_bar_stacked_max_height 0x7f07000b
+int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e
+int dimen abc_action_button_min_height_material 0x7f07000f
+int dimen abc_action_button_min_width_material 0x7f070010
+int dimen abc_action_button_min_width_overflow_material 0x7f070011
+int dimen abc_alert_dialog_button_bar_height 0x7f070012
+int dimen abc_alert_dialog_button_dimen 0x7f070013
+int dimen abc_button_inset_horizontal_material 0x7f070014
+int dimen abc_button_inset_vertical_material 0x7f070015
+int dimen abc_button_padding_horizontal_material 0x7f070016
+int dimen abc_button_padding_vertical_material 0x7f070017
+int dimen abc_cascading_menus_min_smallest_width 0x7f070018
+int dimen abc_config_prefDialogWidth 0x7f070019
+int dimen abc_control_corner_material 0x7f07001a
+int dimen abc_control_inset_material 0x7f07001b
+int dimen abc_control_padding_material 0x7f07001c
+int dimen abc_dialog_corner_radius_material 0x7f07001d
+int dimen abc_dialog_fixed_height_major 0x7f07001e
+int dimen abc_dialog_fixed_height_minor 0x7f07001f
+int dimen abc_dialog_fixed_width_major 0x7f070020
+int dimen abc_dialog_fixed_width_minor 0x7f070021
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022
+int dimen abc_dialog_list_padding_top_no_title 0x7f070023
+int dimen abc_dialog_list_padding_vertical_material 0x7f070024
+int dimen abc_dialog_min_width_major 0x7f070025
+int dimen abc_dialog_min_width_minor 0x7f070026
+int dimen abc_dialog_padding_material 0x7f070027
+int dimen abc_dialog_padding_top_material 0x7f070028
+int dimen abc_dialog_title_divider_material 0x7f070029
+int dimen abc_disabled_alpha_material_dark 0x7f07002a
+int dimen abc_disabled_alpha_material_light 0x7f07002b
+int dimen abc_dropdownitem_icon_width 0x7f07002c
+int dimen abc_dropdownitem_text_padding_left 0x7f07002d
+int dimen abc_dropdownitem_text_padding_right 0x7f07002e
+int dimen abc_edit_text_inset_bottom_material 0x7f07002f
+int dimen abc_edit_text_inset_horizontal_material 0x7f070030
+int dimen abc_edit_text_inset_top_material 0x7f070031
+int dimen abc_floating_window_z 0x7f070032
+int dimen abc_list_item_padding_horizontal_material 0x7f070033
+int dimen abc_panel_menu_list_width 0x7f070034
+int dimen abc_progress_bar_height_material 0x7f070035
+int dimen abc_search_view_preferred_height 0x7f070036
+int dimen abc_search_view_preferred_width 0x7f070037
+int dimen abc_search_view_text_min_width 0x7f070038
+int dimen abc_seekbar_track_background_height_material 0x7f070039
+int dimen abc_seekbar_track_progress_height_material 0x7f07003a
+int dimen abc_select_dialog_padding_start_material 0x7f07003b
+int dimen abc_switch_padding 0x7f07003c
+int dimen abc_text_size_body_1_material 0x7f07003d
+int dimen abc_text_size_body_2_material 0x7f07003e
+int dimen abc_text_size_button_material 0x7f07003f
+int dimen abc_text_size_caption_material 0x7f070040
+int dimen abc_text_size_display_1_material 0x7f070041
+int dimen abc_text_size_display_2_material 0x7f070042
+int dimen abc_text_size_display_3_material 0x7f070043
+int dimen abc_text_size_display_4_material 0x7f070044
+int dimen abc_text_size_headline_material 0x7f070045
+int dimen abc_text_size_large_material 0x7f070046
+int dimen abc_text_size_medium_material 0x7f070047
+int dimen abc_text_size_menu_header_material 0x7f070048
+int dimen abc_text_size_menu_material 0x7f070049
+int dimen abc_text_size_small_material 0x7f07004a
+int dimen abc_text_size_subhead_material 0x7f07004b
+int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c
+int dimen abc_text_size_title_material 0x7f07004d
+int dimen abc_text_size_title_material_toolbar 0x7f07004e
+int dimen cardview_compat_inset_shadow 0x7f07004f
+int dimen cardview_default_elevation 0x7f070050
+int dimen cardview_default_radius 0x7f070051
+int dimen compat_button_inset_horizontal_material 0x7f070052
+int dimen compat_button_inset_vertical_material 0x7f070053
+int dimen compat_button_padding_horizontal_material 0x7f070054
+int dimen compat_button_padding_vertical_material 0x7f070055
+int dimen compat_control_corner_material 0x7f070056
+int dimen compat_notification_large_icon_max_height 0x7f070057
+int dimen compat_notification_large_icon_max_width 0x7f070058
+int dimen design_appbar_elevation 0x7f070059
+int dimen design_bottom_navigation_active_item_max_width 0x7f07005a
+int dimen design_bottom_navigation_active_item_min_width 0x7f07005b
+int dimen design_bottom_navigation_active_text_size 0x7f07005c
+int dimen design_bottom_navigation_elevation 0x7f07005d
+int dimen design_bottom_navigation_height 0x7f07005e
+int dimen design_bottom_navigation_icon_size 0x7f07005f
+int dimen design_bottom_navigation_item_max_width 0x7f070060
+int dimen design_bottom_navigation_item_min_width 0x7f070061
+int dimen design_bottom_navigation_margin 0x7f070062
+int dimen design_bottom_navigation_shadow_height 0x7f070063
+int dimen design_bottom_navigation_text_size 0x7f070064
+int dimen design_bottom_sheet_modal_elevation 0x7f070065
+int dimen design_bottom_sheet_peek_height_min 0x7f070066
+int dimen design_fab_border_width 0x7f070067
+int dimen design_fab_elevation 0x7f070068
+int dimen design_fab_image_size 0x7f070069
+int dimen design_fab_size_mini 0x7f07006a
+int dimen design_fab_size_normal 0x7f07006b
+int dimen design_fab_translation_z_hovered_focused 0x7f07006c
+int dimen design_fab_translation_z_pressed 0x7f07006d
+int dimen design_navigation_elevation 0x7f07006e
+int dimen design_navigation_icon_padding 0x7f07006f
+int dimen design_navigation_icon_size 0x7f070070
+int dimen design_navigation_item_horizontal_padding 0x7f070071
+int dimen design_navigation_item_icon_padding 0x7f070072
+int dimen design_navigation_max_width 0x7f070073
+int dimen design_navigation_padding_bottom 0x7f070074
+int dimen design_navigation_separator_vertical_padding 0x7f070075
+int dimen design_snackbar_action_inline_max_width 0x7f070076
+int dimen design_snackbar_background_corner_radius 0x7f070077
+int dimen design_snackbar_elevation 0x7f070078
+int dimen design_snackbar_extra_spacing_horizontal 0x7f070079
+int dimen design_snackbar_max_width 0x7f07007a
+int dimen design_snackbar_min_width 0x7f07007b
+int dimen design_snackbar_padding_horizontal 0x7f07007c
+int dimen design_snackbar_padding_vertical 0x7f07007d
+int dimen design_snackbar_padding_vertical_2lines 0x7f07007e
+int dimen design_snackbar_text_size 0x7f07007f
+int dimen design_tab_max_width 0x7f070080
+int dimen design_tab_scrollable_min_width 0x7f070081
+int dimen design_tab_text_size 0x7f070082
+int dimen design_tab_text_size_2line 0x7f070083
+int dimen design_textinput_caption_translate_y 0x7f070084
+int dimen dialog_fixed_height_major 0x7f070085
+int dimen dialog_fixed_height_minor 0x7f070086
+int dimen dialog_fixed_width_major 0x7f070087
+int dimen dialog_fixed_width_minor 0x7f070088
+int dimen disabled_alpha_material_dark 0x7f070089
+int dimen disabled_alpha_material_light 0x7f07008a
+int dimen fastscroll_default_thickness 0x7f07008b
+int dimen fastscroll_margin 0x7f07008c
+int dimen fastscroll_minimum_range 0x7f07008d
+int dimen highlight_alpha_material_colored 0x7f07008e
+int dimen highlight_alpha_material_dark 0x7f07008f
+int dimen highlight_alpha_material_light 0x7f070090
+int dimen hint_alpha_material_dark 0x7f070091
+int dimen hint_alpha_material_light 0x7f070092
+int dimen hint_pressed_alpha_material_dark 0x7f070093
+int dimen hint_pressed_alpha_material_light 0x7f070094
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070095
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070096
+int dimen item_touch_helper_swipe_escape_velocity 0x7f070097
+int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f070098
+int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f070099
+int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f07009a
+int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f07009b
+int dimen mtrl_bottomappbar_height 0x7f07009c
+int dimen mtrl_btn_corner_radius 0x7f07009d
+int dimen mtrl_btn_dialog_btn_min_width 0x7f07009e
+int dimen mtrl_btn_disabled_elevation 0x7f07009f
+int dimen mtrl_btn_disabled_z 0x7f0700a0
+int dimen mtrl_btn_elevation 0x7f0700a1
+int dimen mtrl_btn_focused_z 0x7f0700a2
+int dimen mtrl_btn_hovered_z 0x7f0700a3
+int dimen mtrl_btn_icon_btn_padding_left 0x7f0700a4
+int dimen mtrl_btn_icon_padding 0x7f0700a5
+int dimen mtrl_btn_inset 0x7f0700a6
+int dimen mtrl_btn_letter_spacing 0x7f0700a7
+int dimen mtrl_btn_padding_bottom 0x7f0700a8
+int dimen mtrl_btn_padding_left 0x7f0700a9
+int dimen mtrl_btn_padding_right 0x7f0700aa
+int dimen mtrl_btn_padding_top 0x7f0700ab
+int dimen mtrl_btn_pressed_z 0x7f0700ac
+int dimen mtrl_btn_stroke_size 0x7f0700ad
+int dimen mtrl_btn_text_btn_icon_padding 0x7f0700ae
+int dimen mtrl_btn_text_btn_padding_left 0x7f0700af
+int dimen mtrl_btn_text_btn_padding_right 0x7f0700b0
+int dimen mtrl_btn_text_size 0x7f0700b1
+int dimen mtrl_btn_z 0x7f0700b2
+int dimen mtrl_card_elevation 0x7f0700b3
+int dimen mtrl_card_spacing 0x7f0700b4
+int dimen mtrl_chip_pressed_translation_z 0x7f0700b5
+int dimen mtrl_chip_text_size 0x7f0700b6
+int dimen mtrl_fab_elevation 0x7f0700b7
+int dimen mtrl_fab_translation_z_hovered_focused 0x7f0700b8
+int dimen mtrl_fab_translation_z_pressed 0x7f0700b9
+int dimen mtrl_navigation_elevation 0x7f0700ba
+int dimen mtrl_navigation_item_horizontal_padding 0x7f0700bb
+int dimen mtrl_navigation_item_icon_padding 0x7f0700bc
+int dimen mtrl_snackbar_background_corner_radius 0x7f0700bd
+int dimen mtrl_snackbar_margin 0x7f0700be
+int dimen mtrl_textinput_box_bottom_offset 0x7f0700bf
+int dimen mtrl_textinput_box_corner_radius_medium 0x7f0700c0
+int dimen mtrl_textinput_box_corner_radius_small 0x7f0700c1
+int dimen mtrl_textinput_box_label_cutout_padding 0x7f0700c2
+int dimen mtrl_textinput_box_padding_end 0x7f0700c3
+int dimen mtrl_textinput_box_stroke_width_default 0x7f0700c4
+int dimen mtrl_textinput_box_stroke_width_focused 0x7f0700c5
+int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0700c6
+int dimen mtrl_toolbar_default_height 0x7f0700c7
+int dimen notification_action_icon_size 0x7f0700c8
+int dimen notification_action_text_size 0x7f0700c9
+int dimen notification_big_circle_margin 0x7f0700ca
+int dimen notification_content_margin_start 0x7f0700cb
+int dimen notification_large_icon_height 0x7f0700cc
+int dimen notification_large_icon_width 0x7f0700cd
+int dimen notification_main_column_padding_top 0x7f0700ce
+int dimen notification_media_narrow_margin 0x7f0700cf
+int dimen notification_right_icon_size 0x7f0700d0
+int dimen notification_right_side_padding_top 0x7f0700d1
+int dimen notification_small_icon_background_padding 0x7f0700d2
+int dimen notification_small_icon_size_as_large 0x7f0700d3
+int dimen notification_subtext_size 0x7f0700d4
+int dimen notification_top_pad 0x7f0700d5
+int dimen notification_top_pad_large_text 0x7f0700d6
+int dimen tooltip_corner_radius 0x7f0700d7
+int dimen tooltip_horizontal_padding 0x7f0700d8
+int dimen tooltip_margin 0x7f0700d9
+int dimen tooltip_precise_anchor_extra_offset 0x7f0700da
+int dimen tooltip_precise_anchor_threshold 0x7f0700db
+int dimen tooltip_vertical_padding 0x7f0700dc
+int dimen tooltip_y_offset_non_touch 0x7f0700dd
+int dimen tooltip_y_offset_touch 0x7f0700de
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
+int drawable abc_action_bar_item_background_material 0x7f080002
+int drawable abc_btn_borderless_material 0x7f080003
+int drawable abc_btn_check_material 0x7f080004
+int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
+int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
+int drawable abc_btn_colored_material 0x7f080007
+int drawable abc_btn_default_mtrl_shape 0x7f080008
+int drawable abc_btn_radio_material 0x7f080009
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f08000c
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f08000d
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f
+int drawable abc_cab_background_internal_bg 0x7f080010
+int drawable abc_cab_background_top_material 0x7f080011
+int drawable abc_cab_background_top_mtrl_alpha 0x7f080012
+int drawable abc_control_background_material 0x7f080013
+int drawable abc_dialog_material_background 0x7f080014
+int drawable abc_dialog_material_background_dark 0x7f080015
+int drawable abc_dialog_material_background_light 0x7f080016
+int drawable abc_edit_text_material 0x7f080017
+int drawable abc_ic_ab_back_material 0x7f080018
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f080019
+int drawable abc_ic_arrow_drop_right_black_24dp 0x7f08001a
+int drawable abc_ic_clear_material 0x7f08001b
+int drawable abc_ic_clear_mtrl_alpha 0x7f08001c
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f08001d
+int drawable abc_ic_go_search_api_material 0x7f08001e
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f08001f
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080020
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f080021
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f080022
+int drawable abc_ic_menu_overflow_material 0x7f080023
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f080024
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f080025
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f080026
+int drawable abc_ic_search_api_material 0x7f080027
+int drawable abc_ic_search_api_mtrl_alpha 0x7f080028
+int drawable abc_ic_star_black_16dp 0x7f080029
+int drawable abc_ic_star_black_36dp 0x7f08002a
+int drawable abc_ic_star_black_48dp 0x7f08002b
+int drawable abc_ic_star_half_black_16dp 0x7f08002c
+int drawable abc_ic_star_half_black_36dp 0x7f08002d
+int drawable abc_ic_star_half_black_48dp 0x7f08002e
+int drawable abc_ic_voice_search_api_material 0x7f08002f
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f080030
+int drawable abc_item_background_holo_dark 0x7f080031
+int drawable abc_item_background_holo_light 0x7f080032
+int drawable abc_list_divider_material 0x7f080033
+int drawable abc_list_divider_mtrl_alpha 0x7f080034
+int drawable abc_list_focused_holo 0x7f080035
+int drawable abc_list_longpressed_holo 0x7f080036
+int drawable abc_list_pressed_holo_dark 0x7f080037
+int drawable abc_list_pressed_holo_light 0x7f080038
+int drawable abc_list_selector_background_transition_holo_dark 0x7f080039
+int drawable abc_list_selector_background_transition_holo_light 0x7f08003a
+int drawable abc_list_selector_disabled_holo_dark 0x7f08003b
+int drawable abc_list_selector_disabled_holo_light 0x7f08003c
+int drawable abc_list_selector_holo_dark 0x7f08003d
+int drawable abc_list_selector_holo_light 0x7f08003e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f08003f
+int drawable abc_popup_background_mtrl_mult 0x7f080040
+int drawable abc_ratingbar_full_material 0x7f080041
+int drawable abc_ratingbar_indicator_material 0x7f080042
+int drawable abc_ratingbar_material 0x7f080043
+int drawable abc_ratingbar_small_material 0x7f080044
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f080045
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f080046
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f080047
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f080048
+int drawable abc_scrubber_track_mtrl_alpha 0x7f080049
+int drawable abc_seekbar_thumb_material 0x7f08004a
+int drawable abc_seekbar_tick_mark_material 0x7f08004b
+int drawable abc_seekbar_track_material 0x7f08004c
+int drawable abc_spinner_mtrl_am_alpha 0x7f08004d
+int drawable abc_spinner_textfield_background_material 0x7f08004e
+int drawable abc_switch_thumb_material 0x7f08004f
+int drawable abc_switch_track_mtrl_alpha 0x7f080050
+int drawable abc_tab_indicator_material 0x7f080051
+int drawable abc_tab_indicator_mtrl_alpha 0x7f080052
+int drawable abc_text_cursor_material 0x7f080053
+int drawable abc_text_select_handle_left_mtrl_dark 0x7f080054
+int drawable abc_text_select_handle_left_mtrl_light 0x7f080055
+int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080056
+int drawable abc_text_select_handle_middle_mtrl_light 0x7f080057
+int drawable abc_text_select_handle_right_mtrl_dark 0x7f080058
+int drawable abc_text_select_handle_right_mtrl_light 0x7f080059
+int drawable abc_textfield_activated_mtrl_alpha 0x7f08005a
+int drawable abc_textfield_default_mtrl_alpha 0x7f08005b
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f08005c
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f08005d
+int drawable abc_textfield_search_material 0x7f08005e
+int drawable abc_vector_test 0x7f08005f
+int drawable avd_hide_password 0x7f080060
+int drawable avd_show_password 0x7f080061
+int drawable design_bottom_navigation_item_background 0x7f080062
+int drawable design_fab_background 0x7f080063
+int drawable design_ic_visibility 0x7f080064
+int drawable design_ic_visibility_off 0x7f080065
+int drawable design_password_eye 0x7f080066
+int drawable design_snackbar_background 0x7f080067
+int drawable ic_mtrl_chip_checked_black 0x7f080068
+int drawable ic_mtrl_chip_checked_circle 0x7f080069
+int drawable ic_mtrl_chip_close_circle 0x7f08006a
+int drawable mtrl_snackbar_background 0x7f08006b
+int drawable mtrl_tabs_default_indicator 0x7f08006c
+int drawable navigation_empty_icon 0x7f08006d
+int drawable notification_action_background 0x7f08006e
+int drawable notification_bg 0x7f08006f
+int drawable notification_bg_low 0x7f080070
+int drawable notification_bg_low_normal 0x7f080071
+int drawable notification_bg_low_pressed 0x7f080072
+int drawable notification_bg_normal 0x7f080073
+int drawable notification_bg_normal_pressed 0x7f080074
+int drawable notification_icon_background 0x7f080075
+int drawable notification_template_icon_bg 0x7f080076
+int drawable notification_template_icon_low_bg 0x7f080077
+int drawable notification_tile_bg 0x7f080078
+int drawable notify_panel_notification_icon_bg 0x7f080079
+int drawable tooltip_frame_dark 0x7f08007a
+int drawable tooltip_frame_light 0x7f08007b
+int id action0 0x7f0b0001
+int id action_bar 0x7f0b0002
+int id action_bar_activity_content 0x7f0b0003
+int id action_bar_container 0x7f0b0004
+int id action_bar_root 0x7f0b0005
+int id action_bar_spinner 0x7f0b0006
+int id action_bar_subtitle 0x7f0b0007
+int id action_bar_title 0x7f0b0008
+int id action_container 0x7f0b0009
+int id action_context_bar 0x7f0b000a
+int id action_divider 0x7f0b000b
+int id action_image 0x7f0b000c
+int id action_menu_divider 0x7f0b000d
+int id action_menu_presenter 0x7f0b000e
+int id action_mode_bar 0x7f0b000f
+int id action_mode_bar_stub 0x7f0b0010
+int id action_mode_close_button 0x7f0b0011
+int id action_text 0x7f0b0012
+int id actions 0x7f0b0013
+int id activity_chooser_view_content 0x7f0b0014
+int id add 0x7f0b0015
+int id alertTitle 0x7f0b0016
+int id always 0x7f0b0017
+int id any 0x7f0b0018
+int id async 0x7f0b0019
+int id auto 0x7f0b001a
+int id back 0x7f0b001b
+int id beginning 0x7f0b001c
+int id blink_view 0x7f0b001d
+int id blocking 0x7f0b001e
+int id bottom 0x7f0b001f
+int id buttonPanel 0x7f0b0020
+int id cancel_action 0x7f0b0021
+int id catalyst_redbox_title 0x7f0b0022
+int id center 0x7f0b0023
+int id centerCrop 0x7f0b0024
+int id centerInside 0x7f0b0025
+int id checkbox 0x7f0b0026
+int id chronometer 0x7f0b0027
+int id collapseActionView 0x7f0b0028
+int id container 0x7f0b0029
+int id content 0x7f0b002a
+int id contentPanel 0x7f0b002b
+int id coordinator 0x7f0b002c
+int id custom 0x7f0b002d
+int id customPanel 0x7f0b002e
+int id decor_content_parent 0x7f0b002f
+int id default_activity_button 0x7f0b0030
+int id design_bottom_sheet 0x7f0b0031
+int id design_menu_item_action_area 0x7f0b0032
+int id design_menu_item_action_area_stub 0x7f0b0033
+int id design_menu_item_text 0x7f0b0034
+int id design_navigation_view 0x7f0b0035
+int id disableHome 0x7f0b0036
+int id edit_query 0x7f0b0037
+int id end 0x7f0b0038
+int id end_padder 0x7f0b0039
+int id expand_activities_button 0x7f0b003a
+int id expanded_menu 0x7f0b003b
+int id fill 0x7f0b003c
+int id filled 0x7f0b003d
+int id fitCenter 0x7f0b003e
+int id fitEnd 0x7f0b003f
+int id fitStart 0x7f0b0040
+int id fitXY 0x7f0b0041
+int id fixed 0x7f0b0042
+int id focusCrop 0x7f0b0043
+int id forever 0x7f0b0044
+int id fps_text 0x7f0b0045
+int id front 0x7f0b0046
+int id ghost_view 0x7f0b0047
+int id group_divider 0x7f0b0048
+int id home 0x7f0b0049
+int id homeAsUp 0x7f0b004a
+int id hud 0x7f0b004b
+int id icon 0x7f0b004c
+int id icon_group 0x7f0b004d
+int id ifRoom 0x7f0b004e
+int id image 0x7f0b004f
+int id info 0x7f0b0050
+int id italic 0x7f0b0051
+int id item_touch_helper_previous_elevation 0x7f0b0052
+int id labeled 0x7f0b0053
+int id largeLabel 0x7f0b0054
+int id left 0x7f0b0055
+int id line1 0x7f0b0056
+int id line3 0x7f0b0057
+int id listMode 0x7f0b0058
+int id list_item 0x7f0b0059
+int id masked 0x7f0b005a
+int id media_actions 0x7f0b005b
+int id message 0x7f0b005c
+int id middle 0x7f0b005d
+int id mini 0x7f0b005e
+int id mtrl_child_content_container 0x7f0b005f
+int id mtrl_internal_children_alpha_tag 0x7f0b0060
+int id multiply 0x7f0b0061
+int id navigation_header_container 0x7f0b0062
+int id never 0x7f0b0063
+int id none 0x7f0b0064
+int id normal 0x7f0b0065
+int id notification_background 0x7f0b0066
+int id notification_main_column 0x7f0b0067
+int id notification_main_column_container 0x7f0b0068
+int id outline 0x7f0b0069
+int id parallax 0x7f0b006a
+int id parentPanel 0x7f0b006b
+int id parent_matrix 0x7f0b006c
+int id pin 0x7f0b006d
+int id progress_circular 0x7f0b006e
+int id progress_horizontal 0x7f0b006f
+int id radio 0x7f0b0070
+int id right 0x7f0b0071
+int id right_icon 0x7f0b0072
+int id right_side 0x7f0b0073
+int id rn_frame_file 0x7f0b0074
+int id rn_frame_method 0x7f0b0075
+int id rn_redbox_reloadjs 0x7f0b0076
+int id rn_redbox_stack 0x7f0b0077
+int id save_image_matrix 0x7f0b0078
+int id save_non_transition_alpha 0x7f0b0079
+int id save_scale_type 0x7f0b007a
+int id scannedAnimation 0x7f0b007b
+int id screen 0x7f0b007c
+int id scrollIndicatorDown 0x7f0b007d
+int id scrollIndicatorUp 0x7f0b007e
+int id scrollView 0x7f0b007f
+int id scrollable 0x7f0b0080
+int id search_badge 0x7f0b0081
+int id search_bar 0x7f0b0082
+int id search_button 0x7f0b0083
+int id search_close_btn 0x7f0b0084
+int id search_edit_frame 0x7f0b0085
+int id search_go_btn 0x7f0b0086
+int id search_mag_icon 0x7f0b0087
+int id search_plate 0x7f0b0088
+int id search_src_text 0x7f0b0089
+int id search_voice_btn 0x7f0b008a
+int id select_dialog_listview 0x7f0b008b
+int id selected 0x7f0b008c
+int id shortcut 0x7f0b008d
+int id showCustom 0x7f0b008e
+int id showHome 0x7f0b008f
+int id showTitle 0x7f0b0090
+int id smallLabel 0x7f0b0091
+int id snackbar_action 0x7f0b0092
+int id snackbar_text 0x7f0b0093
+int id spacer 0x7f0b0094
+int id split_action_bar 0x7f0b0095
+int id src_atop 0x7f0b0096
+int id src_in 0x7f0b0097
+int id src_over 0x7f0b0098
+int id start 0x7f0b0099
+int id status_bar_latest_event_content 0x7f0b009a
+int id stretch 0x7f0b009b
+int id submenuarrow 0x7f0b009c
+int id submit_area 0x7f0b009d
+int id surfaceView 0x7f0b009e
+int id tabMode 0x7f0b009f
+int id tag_transition_group 0x7f0b00a0
+int id tag_unhandled_key_event_manager 0x7f0b00a1
+int id tag_unhandled_key_listeners 0x7f0b00a2
+int id text 0x7f0b00a3
+int id text2 0x7f0b00a4
+int id textSpacerNoButtons 0x7f0b00a5
+int id textSpacerNoTitle 0x7f0b00a6
+int id text_input_password_toggle 0x7f0b00a7
+int id textinput_counter 0x7f0b00a8
+int id textinput_error 0x7f0b00a9
+int id textinput_helper_text 0x7f0b00aa
+int id time 0x7f0b00ab
+int id title 0x7f0b00ac
+int id titleDividerNoCustom 0x7f0b00ad
+int id title_template 0x7f0b00ae
+int id top 0x7f0b00af
+int id topPanel 0x7f0b00b0
+int id touch_outside 0x7f0b00b1
+int id transition_current_scene 0x7f0b00b2
+int id transition_layout_save 0x7f0b00b3
+int id transition_position 0x7f0b00b4
+int id transition_scene_layoutid_cache 0x7f0b00b5
+int id transition_transform 0x7f0b00b6
+int id uniform 0x7f0b00b7
+int id unlabeled 0x7f0b00b8
+int id up 0x7f0b00b9
+int id useLogo 0x7f0b00ba
+int id view_offset_helper 0x7f0b00bb
+int id visible 0x7f0b00bc
+int id wait_spinner 0x7f0b00bd
+int id withText 0x7f0b00be
+int id wrap_content 0x7f0b00bf
+int integer abc_config_activityDefaultDur 0x7f0c0001
+int integer abc_config_activityShortDur 0x7f0c0002
+int integer abc_max_action_buttons 0x7f0c0003
+int integer app_bar_elevation_anim_duration 0x7f0c0004
+int integer bottom_sheet_slide_duration 0x7f0c0005
+int integer cancel_button_image_alpha 0x7f0c0006
+int integer config_tooltipAnimTime 0x7f0c0007
+int integer design_snackbar_text_max_lines 0x7f0c0008
+int integer design_tab_indicator_anim_duration_ms 0x7f0c0009
+int integer hide_password_duration 0x7f0c000a
+int integer mtrl_btn_anim_delay_ms 0x7f0c000b
+int integer mtrl_btn_anim_duration_ms 0x7f0c000c
+int integer mtrl_chip_anim_duration 0x7f0c000d
+int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c000e
+int integer show_password_duration 0x7f0c000f
+int integer status_bar_notification_info_maxnum 0x7f0c0010
+int interpolator mtrl_fast_out_linear_in 0x7f0d0001
+int interpolator mtrl_fast_out_slow_in 0x7f0d0002
+int interpolator mtrl_linear 0x7f0d0003
+int interpolator mtrl_linear_out_slow_in 0x7f0d0004
+int layout abc_action_bar_title_item 0x7f0e0001
+int layout abc_action_bar_up_container 0x7f0e0002
+int layout abc_action_bar_view_list_nav_layout 0x7f0e0003
+int layout abc_action_menu_item_layout 0x7f0e0004
+int layout abc_action_menu_layout 0x7f0e0005
+int layout abc_action_mode_bar 0x7f0e0006
+int layout abc_action_mode_close_item_material 0x7f0e0007
+int layout abc_activity_chooser_view 0x7f0e0008
+int layout abc_activity_chooser_view_list_item 0x7f0e0009
+int layout abc_alert_dialog_button_bar_material 0x7f0e000a
+int layout abc_alert_dialog_material 0x7f0e000b
+int layout abc_alert_dialog_title_material 0x7f0e000c
+int layout abc_cascading_menu_item_layout 0x7f0e000d
+int layout abc_dialog_title_material 0x7f0e000e
+int layout abc_expanded_menu_layout 0x7f0e000f
+int layout abc_list_menu_item_checkbox 0x7f0e0010
+int layout abc_list_menu_item_icon 0x7f0e0011
+int layout abc_list_menu_item_layout 0x7f0e0012
+int layout abc_list_menu_item_radio 0x7f0e0013
+int layout abc_popup_menu_header_item_layout 0x7f0e0014
+int layout abc_popup_menu_item_layout 0x7f0e0015
+int layout abc_screen_content_include 0x7f0e0016
+int layout abc_screen_simple 0x7f0e0017
+int layout abc_screen_simple_overlay_action_mode 0x7f0e0018
+int layout abc_screen_toolbar 0x7f0e0019
+int layout abc_search_dropdown_item_icons_2line 0x7f0e001a
+int layout abc_search_view 0x7f0e001b
+int layout abc_select_dialog_material 0x7f0e001c
+int layout abc_tooltip 0x7f0e001d
+int layout activity_open_note_scanner 0x7f0e001e
+int layout design_bottom_navigation_item 0x7f0e001f
+int layout design_bottom_sheet_dialog 0x7f0e0020
+int layout design_layout_snackbar 0x7f0e0021
+int layout design_layout_snackbar_include 0x7f0e0022
+int layout design_layout_tab_icon 0x7f0e0023
+int layout design_layout_tab_text 0x7f0e0024
+int layout design_menu_item_action_area 0x7f0e0025
+int layout design_navigation_item 0x7f0e0026
+int layout design_navigation_item_header 0x7f0e0027
+int layout design_navigation_item_separator 0x7f0e0028
+int layout design_navigation_item_subheader 0x7f0e0029
+int layout design_navigation_menu 0x7f0e002a
+int layout design_navigation_menu_item 0x7f0e002b
+int layout design_text_input_password_icon 0x7f0e002c
+int layout fps_view 0x7f0e002d
+int layout mtrl_layout_snackbar 0x7f0e002e
+int layout mtrl_layout_snackbar_include 0x7f0e002f
+int layout notification_action 0x7f0e0030
+int layout notification_action_tombstone 0x7f0e0031
+int layout notification_media_action 0x7f0e0032
+int layout notification_media_cancel_action 0x7f0e0033
+int layout notification_template_big_media 0x7f0e0034
+int layout notification_template_big_media_narrow 0x7f0e0035
+int layout notification_template_custom_big 0x7f0e0036
+int layout notification_template_icon_group 0x7f0e0037
+int layout notification_template_lines 0x7f0e0038
+int layout notification_template_media 0x7f0e0039
+int layout notification_template_part_chronometer 0x7f0e003a
+int layout notification_template_part_time 0x7f0e003b
+int layout redbox_item_frame 0x7f0e003c
+int layout redbox_item_title 0x7f0e003d
+int layout redbox_view 0x7f0e003e
+int layout select_dialog_item_material 0x7f0e003f
+int layout select_dialog_multichoice_material 0x7f0e0040
+int layout select_dialog_singlechoice_material 0x7f0e0041
+int layout support_simple_spinner_dropdown_item 0x7f0e0042
+int string abc_action_bar_home_description 0x7f140001
+int string abc_action_bar_home_description_format 0x7f140002
+int string abc_action_bar_home_subtitle_description_format 0x7f140003
+int string abc_action_bar_up_description 0x7f140004
+int string abc_action_menu_overflow_description 0x7f140005
+int string abc_action_mode_done 0x7f140006
+int string abc_activity_chooser_view_see_all 0x7f140007
+int string abc_activitychooserview_choose_application 0x7f140008
+int string abc_capital_off 0x7f140009
+int string abc_capital_on 0x7f14000a
+int string abc_font_family_body_1_material 0x7f14000b
+int string abc_font_family_body_2_material 0x7f14000c
+int string abc_font_family_button_material 0x7f14000d
+int string abc_font_family_caption_material 0x7f14000e
+int string abc_font_family_display_1_material 0x7f14000f
+int string abc_font_family_display_2_material 0x7f140010
+int string abc_font_family_display_3_material 0x7f140011
+int string abc_font_family_display_4_material 0x7f140012
+int string abc_font_family_headline_material 0x7f140013
+int string abc_font_family_menu_material 0x7f140014
+int string abc_font_family_subhead_material 0x7f140015
+int string abc_font_family_title_material 0x7f140016
+int string abc_menu_alt_shortcut_label 0x7f140017
+int string abc_menu_ctrl_shortcut_label 0x7f140018
+int string abc_menu_delete_shortcut_label 0x7f140019
+int string abc_menu_enter_shortcut_label 0x7f14001a
+int string abc_menu_function_shortcut_label 0x7f14001b
+int string abc_menu_meta_shortcut_label 0x7f14001c
+int string abc_menu_shift_shortcut_label 0x7f14001d
+int string abc_menu_space_shortcut_label 0x7f14001e
+int string abc_menu_sym_shortcut_label 0x7f14001f
+int string abc_prepend_shortcut_label 0x7f140020
+int string abc_search_hint 0x7f140021
+int string abc_searchview_description_clear 0x7f140022
+int string abc_searchview_description_query 0x7f140023
+int string abc_searchview_description_search 0x7f140024
+int string abc_searchview_description_submit 0x7f140025
+int string abc_searchview_description_voice 0x7f140026
+int string abc_shareactionprovider_share_with 0x7f140027
+int string abc_shareactionprovider_share_with_application 0x7f140028
+int string abc_toolbar_collapse_description 0x7f140029
+int string app_name 0x7f14002a
+int string appbar_scrolling_view_behavior 0x7f14002b
+int string bottom_sheet_behavior 0x7f14002c
+int string catalyst_debugjs 0x7f14002d
+int string catalyst_debugjs_off 0x7f14002e
+int string catalyst_element_inspector 0x7f14002f
+int string catalyst_element_inspector_off 0x7f140030
+int string catalyst_hot_module_replacement 0x7f140031
+int string catalyst_hot_module_replacement_off 0x7f140032
+int string catalyst_jsload_error 0x7f140033
+int string catalyst_jsload_message 0x7f140034
+int string catalyst_jsload_title 0x7f140035
+int string catalyst_live_reload 0x7f140036
+int string catalyst_live_reload_off 0x7f140037
+int string catalyst_perf_monitor 0x7f140038
+int string catalyst_perf_monitor_off 0x7f140039
+int string catalyst_reloadjs 0x7f14003a
+int string catalyst_remotedbg_error 0x7f14003b
+int string catalyst_remotedbg_message 0x7f14003c
+int string catalyst_settings 0x7f14003d
+int string catalyst_settings_title 0x7f14003e
+int string catalyst_start_profile 0x7f14003f
+int string catalyst_stop_profile 0x7f140040
+int string character_counter_content_description 0x7f140041
+int string character_counter_pattern 0x7f140042
+int string fab_transformation_scrim_behavior 0x7f140043
+int string fab_transformation_sheet_behavior 0x7f140044
+int string hide_bottom_view_on_scroll_behavior 0x7f140045
+int string mtrl_chip_close_icon_content_description 0x7f140046
+int string password_toggle_content_description 0x7f140047
+int string path_password_eye 0x7f140048
+int string path_password_eye_mask_strike_through 0x7f140049
+int string path_password_eye_mask_visible 0x7f14004a
+int string path_password_strike_through 0x7f14004b
+int string search_menu_title 0x7f14004c
+int string status_bar_notification_info_overflow 0x7f14004d
+int style AlertDialog_AppCompat 0x7f150001
+int style AlertDialog_AppCompat_Light 0x7f150002
+int style Animation_AppCompat_Dialog 0x7f150003
+int style Animation_AppCompat_DropDownUp 0x7f150004
+int style Animation_AppCompat_Tooltip 0x7f150005
+int style Animation_Catalyst_RedBox 0x7f150006
+int style Animation_Design_BottomSheetDialog 0x7f150007
+int style Base_AlertDialog_AppCompat 0x7f150008
+int style Base_AlertDialog_AppCompat_Light 0x7f150009
+int style Base_Animation_AppCompat_Dialog 0x7f15000a
+int style Base_Animation_AppCompat_DropDownUp 0x7f15000b
+int style Base_Animation_AppCompat_Tooltip 0x7f15000c
+int style Base_CardView 0x7f15000d
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000e
+int style Base_DialogWindowTitle_AppCompat 0x7f15000f
+int style Base_TextAppearance_AppCompat 0x7f150010
+int style Base_TextAppearance_AppCompat_Body1 0x7f150011
+int style Base_TextAppearance_AppCompat_Body2 0x7f150012
+int style Base_TextAppearance_AppCompat_Button 0x7f150013
+int style Base_TextAppearance_AppCompat_Caption 0x7f150014
+int style Base_TextAppearance_AppCompat_Display1 0x7f150015
+int style Base_TextAppearance_AppCompat_Display2 0x7f150016
+int style Base_TextAppearance_AppCompat_Display3 0x7f150017
+int style Base_TextAppearance_AppCompat_Display4 0x7f150018
+int style Base_TextAppearance_AppCompat_Headline 0x7f150019
+int style Base_TextAppearance_AppCompat_Inverse 0x7f15001a
+int style Base_TextAppearance_AppCompat_Large 0x7f15001b
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001c
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001d
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001e
+int style Base_TextAppearance_AppCompat_Medium 0x7f15001f
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150020
+int style Base_TextAppearance_AppCompat_Menu 0x7f150021
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f150022
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150023
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150024
+int style Base_TextAppearance_AppCompat_Small 0x7f150025
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150026
+int style Base_TextAppearance_AppCompat_Subhead 0x7f150027
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150028
+int style Base_TextAppearance_AppCompat_Title 0x7f150029
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f15002a
+int style Base_TextAppearance_AppCompat_Tooltip 0x7f15002b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002c
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002d
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002e
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002f
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150030
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150031
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150032
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150033
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150034
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150035
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150036
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150037
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150038
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150039
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15003a
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f15003b
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003c
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003d
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003e
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003f
+int style Base_ThemeOverlay_AppCompat 0x7f150040
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150041
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f150042
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150043
+int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150044
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150045
+int style Base_ThemeOverlay_AppCompat_Light 0x7f150046
+int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150047
+int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150048
+int style Base_Theme_AppCompat 0x7f150049
+int style Base_Theme_AppCompat_CompactMenu 0x7f15004a
+int style Base_Theme_AppCompat_Dialog 0x7f15004b
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f15004c
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f15004d
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004e
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004f
+int style Base_Theme_AppCompat_Light 0x7f150050
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f150051
+int style Base_Theme_AppCompat_Light_Dialog 0x7f150052
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150053
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150054
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150055
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150056
+int style Base_Theme_MaterialComponents 0x7f150057
+int style Base_Theme_MaterialComponents_Bridge 0x7f150058
+int style Base_Theme_MaterialComponents_CompactMenu 0x7f150059
+int style Base_Theme_MaterialComponents_Dialog 0x7f15005a
+int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f15005b
+int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f15005c
+int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15005d
+int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15005e
+int style Base_Theme_MaterialComponents_Light 0x7f15005f
+int style Base_Theme_MaterialComponents_Light_Bridge 0x7f150060
+int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f150061
+int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150062
+int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150063
+int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150064
+int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150065
+int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150066
+int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150067
+int style Base_V11_Theme_AppCompat_Dialog 0x7f150068
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f150069
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f15006a
+int style Base_V12_Widget_AppCompat_EditText 0x7f15006b
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f15006c
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f15006d
+int style Base_V14_Theme_MaterialComponents 0x7f15006e
+int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15006f
+int style Base_V14_Theme_MaterialComponents_Dialog 0x7f150070
+int style Base_V14_Theme_MaterialComponents_Light 0x7f150071
+int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f150072
+int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150073
+int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150074
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150075
+int style Base_V21_Theme_AppCompat 0x7f150076
+int style Base_V21_Theme_AppCompat_Dialog 0x7f150077
+int style Base_V21_Theme_AppCompat_Light 0x7f150078
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150079
+int style Base_V22_Theme_AppCompat 0x7f15007a
+int style Base_V22_Theme_AppCompat_Light 0x7f15007b
+int style Base_V23_Theme_AppCompat 0x7f15007c
+int style Base_V23_Theme_AppCompat_Light 0x7f15007d
+int style Base_V26_Theme_AppCompat 0x7f15007e
+int style Base_V26_Theme_AppCompat_Light 0x7f15007f
+int style Base_V26_Widget_AppCompat_Toolbar 0x7f150080
+int style Base_V28_Theme_AppCompat 0x7f150081
+int style Base_V28_Theme_AppCompat_Light 0x7f150082
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150083
+int style Base_V7_Theme_AppCompat 0x7f150084
+int style Base_V7_Theme_AppCompat_Dialog 0x7f150085
+int style Base_V7_Theme_AppCompat_Light 0x7f150086
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150087
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150088
+int style Base_V7_Widget_AppCompat_EditText 0x7f150089
+int style Base_V7_Widget_AppCompat_Toolbar 0x7f15008a
+int style Base_Widget_AppCompat_ActionBar 0x7f15008b
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15008c
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15008d
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15008e
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15008f
+int style Base_Widget_AppCompat_ActionButton 0x7f150090
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f150091
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150092
+int style Base_Widget_AppCompat_ActionMode 0x7f150093
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f150094
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150095
+int style Base_Widget_AppCompat_Button 0x7f150096
+int style Base_Widget_AppCompat_ButtonBar 0x7f150097
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150098
+int style Base_Widget_AppCompat_Button_Borderless 0x7f150099
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f15009a
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15009b
+int style Base_Widget_AppCompat_Button_Colored 0x7f15009c
+int style Base_Widget_AppCompat_Button_Small 0x7f15009d
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15009e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15009f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500a0
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500a1
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500a2
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500a3
+int style Base_Widget_AppCompat_EditText 0x7f1500a4
+int style Base_Widget_AppCompat_ImageButton 0x7f1500a5
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500a6
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500a7
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500a8
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500a9
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500aa
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500ab
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500ac
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500ad
+int style Base_Widget_AppCompat_ListMenuView 0x7f1500ae
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500af
+int style Base_Widget_AppCompat_ListView 0x7f1500b0
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500b1
+int style Base_Widget_AppCompat_ListView_Menu 0x7f1500b2
+int style Base_Widget_AppCompat_PopupMenu 0x7f1500b3
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500b4
+int style Base_Widget_AppCompat_PopupWindow 0x7f1500b5
+int style Base_Widget_AppCompat_ProgressBar 0x7f1500b6
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500b7
+int style Base_Widget_AppCompat_RatingBar 0x7f1500b8
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500b9
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ba
+int style Base_Widget_AppCompat_SearchView 0x7f1500bb
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500bc
+int style Base_Widget_AppCompat_SeekBar 0x7f1500bd
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500be
+int style Base_Widget_AppCompat_Spinner 0x7f1500bf
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500c0
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500c1
+int style Base_Widget_AppCompat_Toolbar 0x7f1500c2
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500c3
+int style Base_Widget_Design_TabLayout 0x7f1500c4
+int style Base_Widget_MaterialComponents_Chip 0x7f1500c5
+int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500c6
+int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500c7
+int style CardView 0x7f1500c8
+int style CardView_Dark 0x7f1500c9
+int style CardView_Light 0x7f1500ca
+int style Platform_AppCompat 0x7f1500cb
+int style Platform_AppCompat_Light 0x7f1500cc
+int style Platform_MaterialComponents 0x7f1500cd
+int style Platform_MaterialComponents_Dialog 0x7f1500ce
+int style Platform_MaterialComponents_Light 0x7f1500cf
+int style Platform_MaterialComponents_Light_Dialog 0x7f1500d0
+int style Platform_ThemeOverlay_AppCompat 0x7f1500d1
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500d2
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500d3
+int style Platform_V11_AppCompat 0x7f1500d4
+int style Platform_V11_AppCompat_Light 0x7f1500d5
+int style Platform_V14_AppCompat 0x7f1500d6
+int style Platform_V14_AppCompat_Light 0x7f1500d7
+int style Platform_V21_AppCompat 0x7f1500d8
+int style Platform_V21_AppCompat_Light 0x7f1500d9
+int style Platform_V25_AppCompat 0x7f1500da
+int style Platform_V25_AppCompat_Light 0x7f1500db
+int style Platform_Widget_AppCompat_Spinner 0x7f1500dc
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500dd
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500de
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500df
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500e0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500e1
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500e2
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500e3
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500e4
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500e5
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500e6
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500e7
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500e8
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500e9
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500ea
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500eb
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500ec
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500ed
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500ee
+int style TextAppearance_AppCompat 0x7f1500ef
+int style TextAppearance_AppCompat_Body1 0x7f1500f0
+int style TextAppearance_AppCompat_Body2 0x7f1500f1
+int style TextAppearance_AppCompat_Button 0x7f1500f2
+int style TextAppearance_AppCompat_Caption 0x7f1500f3
+int style TextAppearance_AppCompat_Display1 0x7f1500f4
+int style TextAppearance_AppCompat_Display2 0x7f1500f5
+int style TextAppearance_AppCompat_Display3 0x7f1500f6
+int style TextAppearance_AppCompat_Display4 0x7f1500f7
+int style TextAppearance_AppCompat_Headline 0x7f1500f8
+int style TextAppearance_AppCompat_Inverse 0x7f1500f9
+int style TextAppearance_AppCompat_Large 0x7f1500fa
+int style TextAppearance_AppCompat_Large_Inverse 0x7f1500fb
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500fc
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500fd
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500fe
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500ff
+int style TextAppearance_AppCompat_Medium 0x7f150100
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f150101
+int style TextAppearance_AppCompat_Menu 0x7f150102
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150103
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f150104
+int style TextAppearance_AppCompat_Small 0x7f150105
+int style TextAppearance_AppCompat_Small_Inverse 0x7f150106
+int style TextAppearance_AppCompat_Subhead 0x7f150107
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150108
+int style TextAppearance_AppCompat_Title 0x7f150109
+int style TextAppearance_AppCompat_Title_Inverse 0x7f15010a
+int style TextAppearance_AppCompat_Tooltip 0x7f15010b
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15010c
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15010d
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15010e
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15010f
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150110
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150111
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f150112
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150113
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150114
+int style TextAppearance_AppCompat_Widget_Button 0x7f150115
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150116
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150117
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150118
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150119
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15011a
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15011b
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15011c
+int style TextAppearance_AppCompat_Widget_Switch 0x7f15011d
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15011e
+int style TextAppearance_Compat_Notification 0x7f15011f
+int style TextAppearance_Compat_Notification_Info 0x7f150120
+int style TextAppearance_Compat_Notification_Line2 0x7f150121
+int style TextAppearance_Compat_Notification_Time 0x7f150122
+int style TextAppearance_Compat_Notification_Title 0x7f150123
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150124
+int style TextAppearance_Design_Counter 0x7f150125
+int style TextAppearance_Design_Counter_Overflow 0x7f150126
+int style TextAppearance_Design_Error 0x7f150127
+int style TextAppearance_Design_HelperText 0x7f150128
+int style TextAppearance_Design_Hint 0x7f150129
+int style TextAppearance_Design_Snackbar_Message 0x7f15012a
+int style TextAppearance_Design_Tab 0x7f15012b
+int style TextAppearance_MaterialComponents_Body1 0x7f15012c
+int style TextAppearance_MaterialComponents_Body2 0x7f15012d
+int style TextAppearance_MaterialComponents_Button 0x7f15012e
+int style TextAppearance_MaterialComponents_Caption 0x7f15012f
+int style TextAppearance_MaterialComponents_Chip 0x7f150130
+int style TextAppearance_MaterialComponents_Headline1 0x7f150131
+int style TextAppearance_MaterialComponents_Headline2 0x7f150132
+int style TextAppearance_MaterialComponents_Headline3 0x7f150133
+int style TextAppearance_MaterialComponents_Headline4 0x7f150134
+int style TextAppearance_MaterialComponents_Headline5 0x7f150135
+int style TextAppearance_MaterialComponents_Headline6 0x7f150136
+int style TextAppearance_MaterialComponents_Overline 0x7f150137
+int style TextAppearance_MaterialComponents_Subtitle1 0x7f150138
+int style TextAppearance_MaterialComponents_Subtitle2 0x7f150139
+int style TextAppearance_MaterialComponents_Tab 0x7f15013a
+int style TextAppearance_StatusBar_EventContent 0x7f15013b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f15013c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f15013d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f15013e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f15013f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150140
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150141
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150142
+int style Theme 0x7f150143
+int style ThemeOverlay_AppCompat 0x7f150144
+int style ThemeOverlay_AppCompat_ActionBar 0x7f150145
+int style ThemeOverlay_AppCompat_Dark 0x7f150146
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150147
+int style ThemeOverlay_AppCompat_Dialog 0x7f150148
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150149
+int style ThemeOverlay_AppCompat_Light 0x7f15014a
+int style ThemeOverlay_MaterialComponents 0x7f15014b
+int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15014c
+int style ThemeOverlay_MaterialComponents_Dark 0x7f15014d
+int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f15014e
+int style ThemeOverlay_MaterialComponents_Dialog 0x7f15014f
+int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150150
+int style ThemeOverlay_MaterialComponents_Light 0x7f150151
+int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f150152
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f150153
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f150154
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f150155
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f150156
+int style Theme_AppCompat 0x7f150157
+int style Theme_AppCompat_CompactMenu 0x7f150158
+int style Theme_AppCompat_DayNight 0x7f150159
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15015a
+int style Theme_AppCompat_DayNight_Dialog 0x7f15015b
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f15015c
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15015d
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15015e
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f15015f
+int style Theme_AppCompat_Dialog 0x7f150160
+int style Theme_AppCompat_DialogWhenLarge 0x7f150161
+int style Theme_AppCompat_Dialog_Alert 0x7f150162
+int style Theme_AppCompat_Dialog_MinWidth 0x7f150163
+int style Theme_AppCompat_Light 0x7f150164
+int style Theme_AppCompat_Light_DarkActionBar 0x7f150165
+int style Theme_AppCompat_Light_Dialog 0x7f150166
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150167
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f150168
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150169
+int style Theme_AppCompat_Light_NoActionBar 0x7f15016a
+int style Theme_AppCompat_NoActionBar 0x7f15016b
+int style Theme_Catalyst 0x7f15016c
+int style Theme_Catalyst_RedBox 0x7f15016d
+int style Theme_Design 0x7f15016e
+int style Theme_Design_BottomSheetDialog 0x7f15016f
+int style Theme_Design_Light 0x7f150170
+int style Theme_Design_Light_BottomSheetDialog 0x7f150171
+int style Theme_Design_Light_NoActionBar 0x7f150172
+int style Theme_Design_NoActionBar 0x7f150173
+int style Theme_MaterialComponents 0x7f150174
+int style Theme_MaterialComponents_BottomSheetDialog 0x7f150175
+int style Theme_MaterialComponents_Bridge 0x7f150176
+int style Theme_MaterialComponents_CompactMenu 0x7f150177
+int style Theme_MaterialComponents_Dialog 0x7f150178
+int style Theme_MaterialComponents_DialogWhenLarge 0x7f150179
+int style Theme_MaterialComponents_Dialog_Alert 0x7f15017a
+int style Theme_MaterialComponents_Dialog_MinWidth 0x7f15017b
+int style Theme_MaterialComponents_Light 0x7f15017c
+int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f15017d
+int style Theme_MaterialComponents_Light_Bridge 0x7f15017e
+int style Theme_MaterialComponents_Light_DarkActionBar 0x7f15017f
+int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150180
+int style Theme_MaterialComponents_Light_Dialog 0x7f150181
+int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150182
+int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150183
+int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150184
+int style Theme_MaterialComponents_Light_NoActionBar 0x7f150185
+int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f150186
+int style Theme_MaterialComponents_NoActionBar 0x7f150187
+int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f150188
+int style Theme_ReactNative_AppCompat_Light 0x7f150189
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f15018a
+int style Widget_AppCompat_ActionBar 0x7f15018b
+int style Widget_AppCompat_ActionBar_Solid 0x7f15018c
+int style Widget_AppCompat_ActionBar_TabBar 0x7f15018d
+int style Widget_AppCompat_ActionBar_TabText 0x7f15018e
+int style Widget_AppCompat_ActionBar_TabView 0x7f15018f
+int style Widget_AppCompat_ActionButton 0x7f150190
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f150191
+int style Widget_AppCompat_ActionButton_Overflow 0x7f150192
+int style Widget_AppCompat_ActionMode 0x7f150193
+int style Widget_AppCompat_ActivityChooserView 0x7f150194
+int style Widget_AppCompat_AutoCompleteTextView 0x7f150195
+int style Widget_AppCompat_Button 0x7f150196
+int style Widget_AppCompat_ButtonBar 0x7f150197
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150198
+int style Widget_AppCompat_Button_Borderless 0x7f150199
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f15019a
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15019b
+int style Widget_AppCompat_Button_Colored 0x7f15019c
+int style Widget_AppCompat_Button_Small 0x7f15019d
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15019e
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f15019f
+int style Widget_AppCompat_CompoundButton_Switch 0x7f1501a0
+int style Widget_AppCompat_DrawerArrowToggle 0x7f1501a1
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f1501a2
+int style Widget_AppCompat_EditText 0x7f1501a3
+int style Widget_AppCompat_ImageButton 0x7f1501a4
+int style Widget_AppCompat_Light_ActionBar 0x7f1501a5
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f1501a6
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f1501a7
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f1501a8
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f1501a9
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f1501aa
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1501ab
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f1501ac
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f1501ad
+int style Widget_AppCompat_Light_ActionButton 0x7f1501ae
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f1501af
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f1501b0
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f1501b1
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f1501b2
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f1501b3
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f1501b4
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f1501b5
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f1501b6
+int style Widget_AppCompat_Light_PopupMenu 0x7f1501b7
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1501b8
+int style Widget_AppCompat_Light_SearchView 0x7f1501b9
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f1501ba
+int style Widget_AppCompat_ListMenuView 0x7f1501bb
+int style Widget_AppCompat_ListPopupWindow 0x7f1501bc
+int style Widget_AppCompat_ListView 0x7f1501bd
+int style Widget_AppCompat_ListView_DropDown 0x7f1501be
+int style Widget_AppCompat_ListView_Menu 0x7f1501bf
+int style Widget_AppCompat_PopupMenu 0x7f1501c0
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f1501c1
+int style Widget_AppCompat_PopupWindow 0x7f1501c2
+int style Widget_AppCompat_ProgressBar 0x7f1501c3
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f1501c4
+int style Widget_AppCompat_RatingBar 0x7f1501c5
+int style Widget_AppCompat_RatingBar_Indicator 0x7f1501c6
+int style Widget_AppCompat_RatingBar_Small 0x7f1501c7
+int style Widget_AppCompat_SearchView 0x7f1501c8
+int style Widget_AppCompat_SearchView_ActionBar 0x7f1501c9
+int style Widget_AppCompat_SeekBar 0x7f1501ca
+int style Widget_AppCompat_SeekBar_Discrete 0x7f1501cb
+int style Widget_AppCompat_Spinner 0x7f1501cc
+int style Widget_AppCompat_Spinner_DropDown 0x7f1501cd
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f1501ce
+int style Widget_AppCompat_Spinner_Underlined 0x7f1501cf
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f1501d0
+int style Widget_AppCompat_Toolbar 0x7f1501d1
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f1501d2
+int style Widget_Compat_NotificationActionContainer 0x7f1501d3
+int style Widget_Compat_NotificationActionText 0x7f1501d4
+int style Widget_Design_AppBarLayout 0x7f1501d5
+int style Widget_Design_BottomNavigationView 0x7f1501d6
+int style Widget_Design_BottomSheet_Modal 0x7f1501d7
+int style Widget_Design_CollapsingToolbar 0x7f1501d8
+int style Widget_Design_FloatingActionButton 0x7f1501d9
+int style Widget_Design_NavigationView 0x7f1501da
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f1501db
+int style Widget_Design_Snackbar 0x7f1501dc
+int style Widget_Design_TabLayout 0x7f1501dd
+int style Widget_Design_TextInputLayout 0x7f1501de
+int style Widget_MaterialComponents_BottomAppBar 0x7f1501df
+int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f1501e0
+int style Widget_MaterialComponents_BottomNavigationView 0x7f1501e1
+int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f1501e2
+int style Widget_MaterialComponents_BottomSheet_Modal 0x7f1501e3
+int style Widget_MaterialComponents_Button 0x7f1501e4
+int style Widget_MaterialComponents_Button_Icon 0x7f1501e5
+int style Widget_MaterialComponents_Button_OutlinedButton 0x7f1501e6
+int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f1501e7
+int style Widget_MaterialComponents_Button_TextButton 0x7f1501e8
+int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f1501e9
+int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f1501ea
+int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f1501eb
+int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f1501ec
+int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f1501ed
+int style Widget_MaterialComponents_CardView 0x7f1501ee
+int style Widget_MaterialComponents_ChipGroup 0x7f1501ef
+int style Widget_MaterialComponents_Chip_Action 0x7f1501f0
+int style Widget_MaterialComponents_Chip_Choice 0x7f1501f1
+int style Widget_MaterialComponents_Chip_Entry 0x7f1501f2
+int style Widget_MaterialComponents_Chip_Filter 0x7f1501f3
+int style Widget_MaterialComponents_FloatingActionButton 0x7f1501f4
+int style Widget_MaterialComponents_NavigationView 0x7f1501f5
+int style Widget_MaterialComponents_Snackbar 0x7f1501f6
+int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1501f7
+int style Widget_MaterialComponents_TabLayout 0x7f1501f8
+int style Widget_MaterialComponents_TabLayout_Colored 0x7f1501f9
+int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1501fa
+int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501fb
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501fc
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501fd
+int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1501fe
+int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1501ff
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f150200
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f150201
+int style Widget_MaterialComponents_Toolbar 0x7f150202
+int style Widget_Support_CoordinatorLayout 0x7f150203
+int[] styleable ActionBar { 0x7f040033, 0x7f040035, 0x7f040036, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f0400a8, 0x7f0400ad, 0x7f0400ae, 0x7f0400b9, 0x7f0400e6, 0x7f0400eb, 0x7f0400f0, 0x7f0400f1, 0x7f0400f3, 0x7f0400fd, 0x7f040107, 0x7f04012a, 0x7f040136, 0x7f04014a, 0x7f040152, 0x7f040153, 0x7f04018d, 0x7f040190, 0x7f0401d5, 0x7f0401df }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x10100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f040033, 0x7f040035, 0x7f040082, 0x7f0400e6, 0x7f040190, 0x7f0401df }
+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 { 0x7f0400be, 0x7f0400fe }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable AlertDialog { 0x10100f2, 0x7f040055, 0x7f040056, 0x7f040121, 0x7f040122, 0x7f040133, 0x7f040174, 0x7f040176 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonIconDimen 1
+int styleable AlertDialog_buttonPanelSideLayout 2
+int styleable AlertDialog_listItemLayout 3
+int styleable AlertDialog_listLayout 4
+int styleable AlertDialog_multiChoiceItemLayout 5
+int styleable AlertDialog_showTitle 6
+int styleable AlertDialog_singleChoiceItemLayout 7
+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable AnimatedStateListDrawableCompat_android_constantSize 0
+int styleable AnimatedStateListDrawableCompat_android_dither 1
+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
+int styleable AnimatedStateListDrawableCompat_android_visible 5
+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
+int styleable AnimatedStateListDrawableItem_android_drawable 0
+int styleable AnimatedStateListDrawableItem_android_id 1
+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
+int styleable AnimatedStateListDrawableTransition_android_drawable 0
+int styleable AnimatedStateListDrawableTransition_android_fromId 1
+int styleable AnimatedStateListDrawableTransition_android_reversible 2
+int styleable AnimatedStateListDrawableTransition_android_toId 3
+int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f0400b9, 0x7f0400bf, 0x7f04011c }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_android_keyboardNavigationCluster 1
+int styleable AppBarLayout_android_touchscreenBlocksFocus 2
+int styleable AppBarLayout_elevation 3
+int styleable AppBarLayout_expanded 4
+int styleable AppBarLayout_liftOnScroll 5
+int[] styleable AppBarLayoutStates { 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040186 }
+int styleable AppBarLayoutStates_state_collapsed 0
+int styleable AppBarLayoutStates_state_collapsible 1
+int styleable AppBarLayoutStates_state_liftable 2
+int styleable AppBarLayoutStates_state_lifted 3
+int[] styleable AppBarLayout_Layout { 0x7f04011a, 0x7f04011b }
+int styleable AppBarLayout_Layout_layout_scrollFlags 0
+int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
+int[] styleable AppCompatImageView { 0x1010119, 0x7f040180, 0x7f0401d3, 0x7f0401d4 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int styleable AppCompatImageView_tint 2
+int styleable AppCompatImageView_tintMode 3
+int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2 }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
+int styleable AppCompatTextHelper_android_drawableBottom 0
+int styleable AppCompatTextHelper_android_drawableEnd 1
+int styleable AppCompatTextHelper_android_drawableLeft 2
+int styleable AppCompatTextHelper_android_drawableRight 3
+int styleable AppCompatTextHelper_android_drawableStart 4
+int styleable AppCompatTextHelper_android_drawableTop 5
+int styleable AppCompatTextHelper_android_textAppearance 6
+int[] styleable AppCompatTextView { 0x1010034, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x7f0400d5, 0x7f0400d8, 0x7f04010f, 0x7f04011d, 0x7f0401b0 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_autoSizeMaxTextSize 1
+int styleable AppCompatTextView_autoSizeMinTextSize 2
+int styleable AppCompatTextView_autoSizePresetSizes 3
+int styleable AppCompatTextView_autoSizeStepGranularity 4
+int styleable AppCompatTextView_autoSizeTextType 5
+int styleable AppCompatTextView_firstBaselineToTopHeight 6
+int styleable AppCompatTextView_fontFamily 7
+int styleable AppCompatTextView_lastBaselineToBottomHeight 8
+int styleable AppCompatTextView_lineHeight 9
+int styleable AppCompatTextView_textAllCaps 10
+int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x10100ae, 0x1010057, 0x7f04002d, 0x7f040041, 0x7f04004f, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040057, 0x7f040058, 0x7f040063, 0x7f040068, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040092, 0x7f0400a1, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b1, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400f0, 0x7f0400fc, 0x7f04011f, 0x7f040120, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040149, 0x7f04014b, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f04017d, 0x7f04017e, 0x7f040194, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401c6, 0x7f0401c7, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401ec, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7 }
+int styleable AppCompatTheme_actionBarDivider 0
+int styleable AppCompatTheme_actionBarItemBackground 1
+int styleable AppCompatTheme_actionBarPopupTheme 2
+int styleable AppCompatTheme_actionBarSize 3
+int styleable AppCompatTheme_actionBarSplitStyle 4
+int styleable AppCompatTheme_actionBarStyle 5
+int styleable AppCompatTheme_actionBarTabBarStyle 6
+int styleable AppCompatTheme_actionBarTabStyle 7
+int styleable AppCompatTheme_actionBarTabTextStyle 8
+int styleable AppCompatTheme_actionBarTheme 9
+int styleable AppCompatTheme_actionBarWidgetTheme 10
+int styleable AppCompatTheme_actionButtonStyle 11
+int styleable AppCompatTheme_actionDropDownStyle 12
+int styleable AppCompatTheme_actionMenuTextAppearance 13
+int styleable AppCompatTheme_actionMenuTextColor 14
+int styleable AppCompatTheme_actionModeBackground 15
+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
+int styleable AppCompatTheme_actionModeCloseDrawable 17
+int styleable AppCompatTheme_actionModeCopyDrawable 18
+int styleable AppCompatTheme_actionModeCutDrawable 19
+int styleable AppCompatTheme_actionModeFindDrawable 20
+int styleable AppCompatTheme_actionModePasteDrawable 21
+int styleable AppCompatTheme_actionModePopupWindowStyle 22
+int styleable AppCompatTheme_actionModeSelectAllDrawable 23
+int styleable AppCompatTheme_actionModeShareDrawable 24
+int styleable AppCompatTheme_actionModeSplitBackground 25
+int styleable AppCompatTheme_actionModeStyle 26
+int styleable AppCompatTheme_actionModeWebSearchDrawable 27
+int styleable AppCompatTheme_actionOverflowButtonStyle 28
+int styleable AppCompatTheme_actionOverflowMenuStyle 29
+int styleable AppCompatTheme_activityChooserViewStyle 30
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
+int styleable AppCompatTheme_alertDialogCenterButtons 32
+int styleable AppCompatTheme_alertDialogStyle 33
+int styleable AppCompatTheme_alertDialogTheme 34
+int styleable AppCompatTheme_android_windowAnimationStyle 35
+int styleable AppCompatTheme_android_windowIsFloating 36
+int styleable AppCompatTheme_autoCompleteTextViewStyle 37
+int styleable AppCompatTheme_borderlessButtonStyle 38
+int styleable AppCompatTheme_buttonBarButtonStyle 39
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
+int styleable AppCompatTheme_buttonBarStyle 43
+int styleable AppCompatTheme_buttonStyle 44
+int styleable AppCompatTheme_buttonStyleSmall 45
+int styleable AppCompatTheme_checkboxStyle 46
+int styleable AppCompatTheme_checkedTextViewStyle 47
+int styleable AppCompatTheme_colorAccent 48
+int styleable AppCompatTheme_colorBackgroundFloating 49
+int styleable AppCompatTheme_colorButtonNormal 50
+int styleable AppCompatTheme_colorControlActivated 51
+int styleable AppCompatTheme_colorControlHighlight 52
+int styleable AppCompatTheme_colorControlNormal 53
+int styleable AppCompatTheme_colorError 54
+int styleable AppCompatTheme_colorPrimary 55
+int styleable AppCompatTheme_colorPrimaryDark 56
+int styleable AppCompatTheme_colorSwitchThumbNormal 57
+int styleable AppCompatTheme_controlBackground 58
+int styleable AppCompatTheme_dialogCornerRadius 59
+int styleable AppCompatTheme_dialogPreferredPadding 60
+int styleable AppCompatTheme_dialogTheme 61
+int styleable AppCompatTheme_dividerHorizontal 62
+int styleable AppCompatTheme_dividerVertical 63
+int styleable AppCompatTheme_dropDownListViewStyle 64
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
+int styleable AppCompatTheme_editTextBackground 66
+int styleable AppCompatTheme_editTextColor 67
+int styleable AppCompatTheme_editTextStyle 68
+int styleable AppCompatTheme_homeAsUpIndicator 69
+int styleable AppCompatTheme_imageButtonStyle 70
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
+int styleable AppCompatTheme_listDividerAlertDialog 72
+int styleable AppCompatTheme_listMenuViewStyle 73
+int styleable AppCompatTheme_listPopupWindowStyle 74
+int styleable AppCompatTheme_listPreferredItemHeight 75
+int styleable AppCompatTheme_listPreferredItemHeightLarge 76
+int styleable AppCompatTheme_listPreferredItemHeightSmall 77
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
+int styleable AppCompatTheme_listPreferredItemPaddingRight 79
+int styleable AppCompatTheme_panelBackground 80
+int styleable AppCompatTheme_panelMenuListTheme 81
+int styleable AppCompatTheme_panelMenuListWidth 82
+int styleable AppCompatTheme_popupMenuStyle 83
+int styleable AppCompatTheme_popupWindowStyle 84
+int styleable AppCompatTheme_radioButtonStyle 85
+int styleable AppCompatTheme_ratingBarStyle 86
+int styleable AppCompatTheme_ratingBarStyleIndicator 87
+int styleable AppCompatTheme_ratingBarStyleSmall 88
+int styleable AppCompatTheme_searchViewStyle 89
+int styleable AppCompatTheme_seekBarStyle 90
+int styleable AppCompatTheme_selectableItemBackground 91
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
+int styleable AppCompatTheme_spinnerDropDownItemStyle 93
+int styleable AppCompatTheme_spinnerStyle 94
+int styleable AppCompatTheme_switchStyle 95
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
+int styleable AppCompatTheme_textAppearanceListItem 97
+int styleable AppCompatTheme_textAppearanceListItemSecondary 98
+int styleable AppCompatTheme_textAppearanceListItemSmall 99
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
+int styleable AppCompatTheme_textColorAlertDialogListItem 104
+int styleable AppCompatTheme_textColorSearchUrl 105
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
+int styleable AppCompatTheme_toolbarStyle 107
+int styleable AppCompatTheme_tooltipForegroundColor 108
+int styleable AppCompatTheme_tooltipFrameBackground 109
+int styleable AppCompatTheme_viewInflaterClass 110
+int styleable AppCompatTheme_windowActionBar 111
+int styleable AppCompatTheme_windowActionBarOverlay 112
+int styleable AppCompatTheme_windowActionModeOverlay 113
+int styleable AppCompatTheme_windowFixedHeightMajor 114
+int styleable AppCompatTheme_windowFixedHeightMinor 115
+int styleable AppCompatTheme_windowFixedWidthMajor 116
+int styleable AppCompatTheme_windowFixedWidthMinor 117
+int styleable AppCompatTheme_windowMinWidthMajor 118
+int styleable AppCompatTheme_windowMinWidthMinor 119
+int styleable AppCompatTheme_windowNoTitle 120
+int[] styleable BottomAppBar { 0x7f040037, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400ec }
+int styleable BottomAppBar_backgroundTint 0
+int styleable BottomAppBar_fabAlignmentMode 1
+int styleable BottomAppBar_fabCradleMargin 2
+int styleable BottomAppBar_fabCradleRoundedCornerRadius 3
+int styleable BottomAppBar_fabCradleVerticalOffset 4
+int styleable BottomAppBar_hideOnScroll 5
+int[] styleable BottomNavigationView { 0x7f0400b9, 0x7f040101, 0x7f040103, 0x7f040105, 0x7f040106, 0x7f04010a, 0x7f04010b, 0x7f04010c, 0x7f04010e, 0x7f040132 }
+int styleable BottomNavigationView_elevation 0
+int styleable BottomNavigationView_itemBackground 1
+int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
+int styleable BottomNavigationView_itemIconSize 3
+int styleable BottomNavigationView_itemIconTint 4
+int styleable BottomNavigationView_itemTextAppearanceActive 5
+int styleable BottomNavigationView_itemTextAppearanceInactive 6
+int styleable BottomNavigationView_itemTextColor 7
+int styleable BottomNavigationView_labelVisibilityMode 8
+int styleable BottomNavigationView_menu 9
+int[] styleable BottomSheetBehavior_Layout { 0x7f04003b, 0x7f04003c, 0x7f04003e, 0x7f04003f }
+int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0
+int styleable BottomSheetBehavior_Layout_behavior_hideable 1
+int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2
+int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3
+int[] styleable ButtonBarLayout { 0x7f040028 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CameraBridgeViewBase { 0x7f04005b, 0x7f040175 }
+int styleable CameraBridgeViewBase_camera_id 0
+int styleable CameraBridgeViewBase_show_fps 1
+int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f }
+int styleable CardView_android_minHeight 0
+int styleable CardView_android_minWidth 1
+int styleable CardView_cardBackgroundColor 2
+int styleable CardView_cardCornerRadius 3
+int styleable CardView_cardElevation 4
+int styleable CardView_cardMaxElevation 5
+int styleable CardView_cardPreventCornerOverlap 6
+int styleable CardView_cardUseCompatPadding 7
+int styleable CardView_contentPadding 8
+int styleable CardView_contentPaddingBottom 9
+int styleable CardView_contentPaddingLeft 10
+int styleable CardView_contentPaddingRight 11
+int styleable CardView_contentPaddingTop 12
+int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040071, 0x7f040072, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f0400ea, 0x7f0400f4, 0x7f0400f8, 0x7f04015d, 0x7f040172, 0x7f0401c8, 0x7f0401ca }
+int styleable Chip_android_checkable 0
+int styleable Chip_android_ellipsize 1
+int styleable Chip_android_maxWidth 2
+int styleable Chip_android_text 3
+int styleable Chip_android_textAppearance 4
+int styleable Chip_checkedIcon 5
+int styleable Chip_checkedIconEnabled 6
+int styleable Chip_checkedIconVisible 7
+int styleable Chip_chipBackgroundColor 8
+int styleable Chip_chipCornerRadius 9
+int styleable Chip_chipEndPadding 10
+int styleable Chip_chipIcon 11
+int styleable Chip_chipIconEnabled 12
+int styleable Chip_chipIconSize 13
+int styleable Chip_chipIconTint 14
+int styleable Chip_chipIconVisible 15
+int styleable Chip_chipMinHeight 16
+int styleable Chip_chipStartPadding 17
+int styleable Chip_chipStrokeColor 18
+int styleable Chip_chipStrokeWidth 19
+int styleable Chip_closeIcon 20
+int styleable Chip_closeIconEnabled 21
+int styleable Chip_closeIconEndPadding 22
+int styleable Chip_closeIconSize 23
+int styleable Chip_closeIconStartPadding 24
+int styleable Chip_closeIconTint 25
+int styleable Chip_closeIconVisible 26
+int styleable Chip_hideMotionSpec 27
+int styleable Chip_iconEndPadding 28
+int styleable Chip_iconStartPadding 29
+int styleable Chip_rippleColor 30
+int styleable Chip_showMotionSpec 31
+int styleable Chip_textEndPadding 32
+int styleable Chip_textStartPadding 33
+int[] styleable ChipGroup { 0x7f040064, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040177, 0x7f040178 }
+int styleable ChipGroup_checkedChip 0
+int styleable ChipGroup_chipSpacing 1
+int styleable ChipGroup_chipSpacingHorizontal 2
+int styleable ChipGroup_chipSpacingVertical 3
+int styleable ChipGroup_singleLine 4
+int styleable ChipGroup_singleSelection 5
+int[] styleable CollapsingToolbarLayout { 0x7f040085, 0x7f040086, 0x7f0400a0, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f040167, 0x7f040169, 0x7f040188, 0x7f0401d5, 0x7f0401d6, 0x7f0401e0 }
+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 { 0x7f040115, 0x7f040116 }
+int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
+int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
+int[] styleable ColorStateListItem { 0x7f040029, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable CompoundButton { 0x1010107, 0x7f040059, 0x7f04005a }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x7f04010d, 0x7f040187 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040117, 0x7f040118, 0x7f040119 }
+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 { 0x7f040044, 0x7f040045 }
+int styleable DesignTheme_bottomSheetDialogTheme 0
+int styleable DesignTheme_bottomSheetStyle 1
+int[] styleable DrawerArrowToggle { 0x7f04002b, 0x7f04002c, 0x7f040039, 0x7f040087, 0x7f0400b2, 0x7f0400e3, 0x7f04017c, 0x7f0401cc }
+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 { 0x7f040037, 0x7f040038, 0x7f040040, 0x7f0400b9, 0x7f0400cb, 0x7f0400cc, 0x7f0400ea, 0x7f0400f2, 0x7f040130, 0x7f04014e, 0x7f04015d, 0x7f040172, 0x7f0401ea }
+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_hideMotionSpec 6
+int styleable FloatingActionButton_hoveredFocusedTranslationZ 7
+int styleable FloatingActionButton_maxImageSize 8
+int styleable FloatingActionButton_pressedTranslationZ 9
+int styleable FloatingActionButton_rippleColor 10
+int styleable FloatingActionButton_showMotionSpec 11
+int styleable FloatingActionButton_useCompatPadding 12
+int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04003a }
+int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
+int[] styleable FlowLayout { 0x7f040108, 0x7f04011e }
+int styleable FlowLayout_itemSpacing 0
+int styleable FlowLayout_lineSpacing 1
+int[] styleable FontFamily { 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de }
+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 { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0400d7, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0401e9 }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0400e2 }
+int styleable ForegroundLinearLayout_android_foreground 0
+int styleable ForegroundLinearLayout_android_foregroundGravity 1
+int styleable ForegroundLinearLayout_foregroundInsidePadding 2
+int[] styleable GenericDraweeView { 0x7f040023, 0x7f040034, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f04013a, 0x7f040147, 0x7f040148, 0x7f04014d, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f04015a, 0x7f04015b, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f0401eb }
+int styleable GenericDraweeView_actualImageScaleType 0
+int styleable GenericDraweeView_backgroundImage 1
+int styleable GenericDraweeView_fadeDuration 2
+int styleable GenericDraweeView_failureImage 3
+int styleable GenericDraweeView_failureImageScaleType 4
+int styleable GenericDraweeView_overlayImage 5
+int styleable GenericDraweeView_placeholderImage 6
+int styleable GenericDraweeView_placeholderImageScaleType 7
+int styleable GenericDraweeView_pressedStateOverlayImage 8
+int styleable GenericDraweeView_progressBarAutoRotateInterval 9
+int styleable GenericDraweeView_progressBarImage 10
+int styleable GenericDraweeView_progressBarImageScaleType 11
+int styleable GenericDraweeView_retryImage 12
+int styleable GenericDraweeView_retryImageScaleType 13
+int styleable GenericDraweeView_roundAsCircle 14
+int styleable GenericDraweeView_roundBottomLeft 15
+int styleable GenericDraweeView_roundBottomRight 16
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 19
+int styleable GenericDraweeView_roundedCornerRadius 20
+int styleable GenericDraweeView_roundingBorderColor 21
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 23
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f0400ae, 0x7f0400b0, 0x7f040131, 0x7f040171 }
+int styleable LinearLayoutCompat_android_baselineAligned 0
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
+int styleable LinearLayoutCompat_android_gravity 2
+int styleable LinearLayoutCompat_android_orientation 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 1
+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
+int styleable LinearLayoutCompat_Layout_android_layout_width 3
+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MaterialButton { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040037, 0x7f040038, 0x7f0400a3, 0x7f0400f3, 0x7f0400f5, 0x7f0400f6, 0x7f0400f7, 0x7f0400f9, 0x7f0400fa, 0x7f04015d, 0x7f040189, 0x7f04018a }
+int styleable MaterialButton_android_insetBottom 0
+int styleable MaterialButton_android_insetLeft 1
+int styleable MaterialButton_android_insetRight 2
+int styleable MaterialButton_android_insetTop 3
+int styleable MaterialButton_backgroundTint 4
+int styleable MaterialButton_backgroundTintMode 5
+int styleable MaterialButton_cornerRadius 6
+int styleable MaterialButton_icon 7
+int styleable MaterialButton_iconGravity 8
+int styleable MaterialButton_iconPadding 9
+int styleable MaterialButton_iconSize 10
+int styleable MaterialButton_iconTint 11
+int styleable MaterialButton_iconTintMode 12
+int styleable MaterialButton_rippleColor 13
+int styleable MaterialButton_strokeColor 14
+int styleable MaterialButton_strokeWidth 15
+int[] styleable MaterialCardView { 0x7f040189, 0x7f04018a }
+int styleable MaterialCardView_strokeColor 0
+int styleable MaterialCardView_strokeWidth 1
+int[] styleable MaterialComponentsTheme { 0x7f040044, 0x7f040045, 0x7f04006c, 0x7f040076, 0x7f04007a, 0x7f040088, 0x7f040089, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f0400b8, 0x7f0400d6, 0x7f04012c, 0x7f04012d, 0x7f040137, 0x7f040168, 0x7f040179, 0x7f0401ac, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bf, 0x7f0401c4, 0x7f0401c5, 0x7f0401c9 }
+int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0
+int styleable MaterialComponentsTheme_bottomSheetStyle 1
+int styleable MaterialComponentsTheme_chipGroupStyle 2
+int styleable MaterialComponentsTheme_chipStandaloneStyle 3
+int styleable MaterialComponentsTheme_chipStyle 4
+int styleable MaterialComponentsTheme_colorAccent 5
+int styleable MaterialComponentsTheme_colorBackgroundFloating 6
+int styleable MaterialComponentsTheme_colorPrimary 7
+int styleable MaterialComponentsTheme_colorPrimaryDark 8
+int styleable MaterialComponentsTheme_colorSecondary 9
+int styleable MaterialComponentsTheme_editTextStyle 10
+int styleable MaterialComponentsTheme_floatingActionButtonStyle 11
+int styleable MaterialComponentsTheme_materialButtonStyle 12
+int styleable MaterialComponentsTheme_materialCardViewStyle 13
+int styleable MaterialComponentsTheme_navigationViewStyle 14
+int styleable MaterialComponentsTheme_scrimBackground 15
+int styleable MaterialComponentsTheme_snackbarButtonStyle 16
+int styleable MaterialComponentsTheme_tabStyle 17
+int styleable MaterialComponentsTheme_textAppearanceBody1 18
+int styleable MaterialComponentsTheme_textAppearanceBody2 19
+int styleable MaterialComponentsTheme_textAppearanceButton 20
+int styleable MaterialComponentsTheme_textAppearanceCaption 21
+int styleable MaterialComponentsTheme_textAppearanceHeadline1 22
+int styleable MaterialComponentsTheme_textAppearanceHeadline2 23
+int styleable MaterialComponentsTheme_textAppearanceHeadline3 24
+int styleable MaterialComponentsTheme_textAppearanceHeadline4 25
+int styleable MaterialComponentsTheme_textAppearanceHeadline5 26
+int styleable MaterialComponentsTheme_textAppearanceHeadline6 27
+int styleable MaterialComponentsTheme_textAppearanceOverline 28
+int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29
+int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30
+int styleable MaterialComponentsTheme_textInputStyle 31
+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
+int styleable MenuGroup_android_checkableBehavior 0
+int styleable MenuGroup_android_enabled 1
+int styleable MenuGroup_android_id 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 5
+int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f04002a, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f040094, 0x7f0400f9, 0x7f0400fa, 0x7f040138, 0x7f040170, 0x7f0401e5 }
+int styleable MenuItem_actionLayout 0
+int styleable MenuItem_actionProviderClass 1
+int styleable MenuItem_actionViewClass 2
+int styleable MenuItem_alphabeticModifiers 3
+int styleable MenuItem_android_alphabeticShortcut 4
+int styleable MenuItem_android_checkable 5
+int styleable MenuItem_android_checked 6
+int styleable MenuItem_android_enabled 7
+int styleable MenuItem_android_icon 8
+int styleable MenuItem_android_id 9
+int styleable MenuItem_android_menuCategory 10
+int styleable MenuItem_android_numericShortcut 11
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 13
+int styleable MenuItem_android_title 14
+int styleable MenuItem_android_titleCondensed 15
+int styleable MenuItem_android_visible 16
+int styleable MenuItem_contentDescription 17
+int styleable MenuItem_iconTint 18
+int styleable MenuItem_iconTintMode 19
+int styleable MenuItem_numericModifiers 20
+int styleable MenuItem_showAsAction 21
+int styleable MenuItem_tooltipText 22
+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f04014c, 0x7f04018b }
+int styleable MenuView_android_headerBackground 0
+int styleable MenuView_android_horizontalDivider 1
+int styleable MenuView_android_itemBackground 2
+int styleable MenuView_android_itemIconDisabledAlpha 3
+int styleable MenuView_android_itemTextAppearance 4
+int styleable MenuView_android_verticalDivider 5
+int styleable MenuView_android_windowAnimationStyle 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f0400b9, 0x7f0400e5, 0x7f040101, 0x7f040102, 0x7f040104, 0x7f040106, 0x7f040109, 0x7f04010c, 0x7f040132 }
+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_itemHorizontalPadding 6
+int styleable NavigationView_itemIconPadding 7
+int styleable NavigationView_itemIconTint 8
+int styleable NavigationView_itemTextAppearance 9
+int styleable NavigationView_itemTextColor 10
+int styleable NavigationView_menu 11
+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f040139 }
+int styleable PopupWindow_android_popupAnimationStyle 0
+int styleable PopupWindow_android_popupBackground 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x7f040182 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecycleListView { 0x7f04013b, 0x7f04013e }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable RecyclerView { 0x10100f1, 0x10100c4, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f040111, 0x7f04015c, 0x7f04017b, 0x7f040181 }
+int styleable RecyclerView_android_descendantFocusability 0
+int styleable RecyclerView_android_orientation 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 { 0x7f0400ff }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Layout { 0x7f04003d }
+int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04007b, 0x7f040093, 0x7f0400a9, 0x7f0400e4, 0x7f0400fb, 0x7f040110, 0x7f040154, 0x7f040155, 0x7f04016a, 0x7f04016b, 0x7f04018c, 0x7f040191, 0x7f0401ed }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 1
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 3
+int styleable SearchView_closeIcon 4
+int styleable SearchView_commitIcon 5
+int styleable SearchView_defaultQueryHint 6
+int styleable SearchView_goIcon 7
+int styleable SearchView_iconifiedByDefault 8
+int styleable SearchView_layout 9
+int styleable SearchView_queryBackground 10
+int styleable SearchView_queryHint 11
+int styleable SearchView_searchHintIcon 12
+int styleable SearchView_searchIcon 13
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 15
+int styleable SearchView_voiceIcon 16
+int[] styleable Snackbar { 0x7f040179, 0x7f04017a }
+int styleable Snackbar_snackbarButtonStyle 0
+int styleable Snackbar_snackbarStyle 1
+int[] styleable SnackbarLayout { 0x101011f, 0x7f0400b9, 0x7f04012e }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_elevation 1
+int styleable SnackbarLayout_maxActionInlineWidth 2
+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04014a }
+int styleable Spinner_android_dropDownWidth 0
+int styleable Spinner_android_entries 1
+int styleable Spinner_android_popupBackground 2
+int styleable Spinner_android_prompt 3
+int styleable Spinner_popupTheme 4
+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable StateListDrawable_android_constantSize 0
+int styleable StateListDrawable_android_dither 1
+int styleable StateListDrawable_android_enterFadeDuration 2
+int styleable StateListDrawable_android_exitFadeDuration 3
+int styleable StateListDrawable_android_variablePadding 4
+int styleable StateListDrawable_android_visible 5
+int[] styleable StateListDrawableItem { 0x1010199 }
+int styleable StateListDrawableItem_android_drawable 0
+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040173, 0x7f04017f, 0x7f040192, 0x7f040193, 0x7f040195, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8 }
+int styleable SwitchCompat_android_textOff 0
+int styleable SwitchCompat_android_textOn 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f }
+int styleable TabItem_android_icon 0
+int styleable TabItem_android_layout 1
+int styleable TabItem_android_text 2
+int[] styleable TabLayout { 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ad, 0x7f0401ae, 0x7f0401af }
+int styleable TabLayout_tabBackground 0
+int styleable TabLayout_tabContentStart 1
+int styleable TabLayout_tabGravity 2
+int styleable TabLayout_tabIconTint 3
+int styleable TabLayout_tabIconTintMode 4
+int styleable TabLayout_tabIndicator 5
+int styleable TabLayout_tabIndicatorAnimationDuration 6
+int styleable TabLayout_tabIndicatorColor 7
+int styleable TabLayout_tabIndicatorFullWidth 8
+int styleable TabLayout_tabIndicatorGravity 9
+int styleable TabLayout_tabIndicatorHeight 10
+int styleable TabLayout_tabInlineLabel 11
+int styleable TabLayout_tabMaxWidth 12
+int styleable TabLayout_tabMinWidth 13
+int styleable TabLayout_tabMode 14
+int styleable TabLayout_tabPadding 15
+int styleable TabLayout_tabPaddingBottom 16
+int styleable TabLayout_tabPaddingEnd 17
+int styleable TabLayout_tabPaddingStart 18
+int styleable TabLayout_tabPaddingTop 19
+int styleable TabLayout_tabRippleColor 20
+int styleable TabLayout_tabSelectedTextColor 21
+int styleable TabLayout_tabTextAppearance 22
+int styleable TabLayout_tabTextColor 23
+int styleable TabLayout_tabUnboundedRipple 24
+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f0400d8, 0x7f0401b0 }
+int styleable TextAppearance_android_fontFamily 0
+int styleable TextAppearance_android_shadowColor 1
+int styleable TextAppearance_android_shadowDx 2
+int styleable TextAppearance_android_shadowDy 3
+int styleable TextAppearance_android_shadowRadius 4
+int styleable TextAppearance_android_textColor 5
+int styleable TextAppearance_android_textColorHint 6
+int styleable TextAppearance_android_textColorLink 7
+int styleable TextAppearance_android_textSize 8
+int styleable TextAppearance_android_textStyle 9
+int styleable TextAppearance_android_typeface 10
+int styleable TextAppearance_fontFamily 11
+int styleable TextAppearance_textAllCaps 12
+int[] styleable TextInputLayout { 0x1010150, 0x101009a, 0x7f040046, 0x7f040047, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400bc, 0x7f0400bd, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146 }
+int styleable TextInputLayout_android_hint 0
+int styleable TextInputLayout_android_textColorHint 1
+int styleable TextInputLayout_boxBackgroundColor 2
+int styleable TextInputLayout_boxBackgroundMode 3
+int styleable TextInputLayout_boxCollapsedPaddingTop 4
+int styleable TextInputLayout_boxCornerRadiusBottomEnd 5
+int styleable TextInputLayout_boxCornerRadiusBottomStart 6
+int styleable TextInputLayout_boxCornerRadiusTopEnd 7
+int styleable TextInputLayout_boxCornerRadiusTopStart 8
+int styleable TextInputLayout_boxStrokeColor 9
+int styleable TextInputLayout_boxStrokeWidth 10
+int styleable TextInputLayout_counterEnabled 11
+int styleable TextInputLayout_counterMaxLength 12
+int styleable TextInputLayout_counterOverflowTextAppearance 13
+int styleable TextInputLayout_counterTextAppearance 14
+int styleable TextInputLayout_errorEnabled 15
+int styleable TextInputLayout_errorTextAppearance 16
+int styleable TextInputLayout_helperText 17
+int styleable TextInputLayout_helperTextEnabled 18
+int styleable TextInputLayout_helperTextTextAppearance 19
+int styleable TextInputLayout_hintAnimationEnabled 20
+int styleable TextInputLayout_hintEnabled 21
+int styleable TextInputLayout_hintTextAppearance 22
+int styleable TextInputLayout_passwordToggleContentDescription 23
+int styleable TextInputLayout_passwordToggleDrawable 24
+int styleable TextInputLayout_passwordToggleEnabled 25
+int styleable TextInputLayout_passwordToggleTint 26
+int styleable TextInputLayout_passwordToggleTintMode 27
+int[] styleable Theme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x10100ae, 0x1010057, 0x7f04002d, 0x7f040041, 0x7f04004f, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040057, 0x7f040058, 0x7f040063, 0x7f040068, 0x7f040088, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008f, 0x7f040090, 0x7f040092, 0x7f0400a1, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b1, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400f0, 0x7f0400fc, 0x7f04011f, 0x7f040120, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040149, 0x7f04014b, 0x7f040156, 0x7f040157, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f04017d, 0x7f04017e, 0x7f040194, 0x7f0401bb, 0x7f0401bc, 0x7f0401be, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401c6, 0x7f0401c7, 0x7f0401e1, 0x7f0401e2, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7 }
+int styleable Theme_actionBarDivider 0
+int styleable Theme_actionBarItemBackground 1
+int styleable Theme_actionBarPopupTheme 2
+int styleable Theme_actionBarSize 3
+int styleable Theme_actionBarSplitStyle 4
+int styleable Theme_actionBarStyle 5
+int styleable Theme_actionBarTabBarStyle 6
+int styleable Theme_actionBarTabStyle 7
+int styleable Theme_actionBarTabTextStyle 8
+int styleable Theme_actionBarTheme 9
+int styleable Theme_actionBarWidgetTheme 10
+int styleable Theme_actionButtonStyle 11
+int styleable Theme_actionDropDownStyle 12
+int styleable Theme_actionMenuTextAppearance 13
+int styleable Theme_actionMenuTextColor 14
+int styleable Theme_actionModeBackground 15
+int styleable Theme_actionModeCloseButtonStyle 16
+int styleable Theme_actionModeCloseDrawable 17
+int styleable Theme_actionModeCopyDrawable 18
+int styleable Theme_actionModeCutDrawable 19
+int styleable Theme_actionModeFindDrawable 20
+int styleable Theme_actionModePasteDrawable 21
+int styleable Theme_actionModePopupWindowStyle 22
+int styleable Theme_actionModeSelectAllDrawable 23
+int styleable Theme_actionModeShareDrawable 24
+int styleable Theme_actionModeSplitBackground 25
+int styleable Theme_actionModeStyle 26
+int styleable Theme_actionModeWebSearchDrawable 27
+int styleable Theme_actionOverflowButtonStyle 28
+int styleable Theme_actionOverflowMenuStyle 29
+int styleable Theme_activityChooserViewStyle 30
+int styleable Theme_alertDialogButtonGroupStyle 31
+int styleable Theme_alertDialogCenterButtons 32
+int styleable Theme_alertDialogStyle 33
+int styleable Theme_alertDialogTheme 34
+int styleable Theme_android_windowAnimationStyle 35
+int styleable Theme_android_windowIsFloating 36
+int styleable Theme_autoCompleteTextViewStyle 37
+int styleable Theme_borderlessButtonStyle 38
+int styleable Theme_buttonBarButtonStyle 39
+int styleable Theme_buttonBarNegativeButtonStyle 40
+int styleable Theme_buttonBarNeutralButtonStyle 41
+int styleable Theme_buttonBarPositiveButtonStyle 42
+int styleable Theme_buttonBarStyle 43
+int styleable Theme_buttonStyle 44
+int styleable Theme_buttonStyleSmall 45
+int styleable Theme_checkboxStyle 46
+int styleable Theme_checkedTextViewStyle 47
+int styleable Theme_colorAccent 48
+int styleable Theme_colorButtonNormal 49
+int styleable Theme_colorControlActivated 50
+int styleable Theme_colorControlHighlight 51
+int styleable Theme_colorControlNormal 52
+int styleable Theme_colorPrimary 53
+int styleable Theme_colorPrimaryDark 54
+int styleable Theme_colorSwitchThumbNormal 55
+int styleable Theme_controlBackground 56
+int styleable Theme_dialogPreferredPadding 57
+int styleable Theme_dialogTheme 58
+int styleable Theme_dividerHorizontal 59
+int styleable Theme_dividerVertical 60
+int styleable Theme_dropDownListViewStyle 61
+int styleable Theme_dropdownListPreferredItemHeight 62
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 64
+int styleable Theme_editTextStyle 65
+int styleable Theme_homeAsUpIndicator 66
+int styleable Theme_imageButtonStyle 67
+int styleable Theme_listChoiceBackgroundIndicator 68
+int styleable Theme_listDividerAlertDialog 69
+int styleable Theme_listPopupWindowStyle 70
+int styleable Theme_listPreferredItemHeight 71
+int styleable Theme_listPreferredItemHeightLarge 72
+int styleable Theme_listPreferredItemHeightSmall 73
+int styleable Theme_listPreferredItemPaddingLeft 74
+int styleable Theme_listPreferredItemPaddingRight 75
+int styleable Theme_panelBackground 76
+int styleable Theme_panelMenuListTheme 77
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 79
+int styleable Theme_popupWindowStyle 80
+int styleable Theme_radioButtonStyle 81
+int styleable Theme_ratingBarStyle 82
+int styleable Theme_searchViewStyle 83
+int styleable Theme_seekBarStyle 84
+int styleable Theme_selectableItemBackground 85
+int styleable Theme_selectableItemBackgroundBorderless 86
+int styleable Theme_spinnerDropDownItemStyle 87
+int styleable Theme_spinnerStyle 88
+int styleable Theme_switchStyle 89
+int styleable Theme_textAppearanceLargePopupMenu 90
+int styleable Theme_textAppearanceListItem 91
+int styleable Theme_textAppearanceListItemSmall 92
+int styleable Theme_textAppearanceSearchResultSubtitle 93
+int styleable Theme_textAppearanceSearchResultTitle 94
+int styleable Theme_textAppearanceSmallPopupMenu 95
+int styleable Theme_textColorAlertDialogListItem 96
+int styleable Theme_textColorSearchUrl 97
+int styleable Theme_toolbarNavigationButtonStyle 98
+int styleable Theme_toolbarStyle 99
+int styleable Theme_windowActionBar 100
+int styleable Theme_windowActionBarOverlay 101
+int styleable Theme_windowActionModeOverlay 102
+int styleable Theme_windowFixedHeightMajor 103
+int styleable Theme_windowFixedHeightMinor 104
+int styleable Theme_windowFixedWidthMajor 105
+int styleable Theme_windowFixedWidthMinor 106
+int styleable Theme_windowMinWidthMajor 107
+int styleable Theme_windowMinWidthMinor 108
+int styleable Theme_windowNoTitle 109
+int[] styleable ThemeEnforcement { 0x1010034, 0x7f0400ba, 0x7f0400bb }
+int styleable ThemeEnforcement_android_textAppearance 0
+int styleable ThemeEnforcement_enforceMaterialTheme 1
+int styleable ThemeEnforcement_enforceTextAppearance 2
+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040054, 0x7f040083, 0x7f040084, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04012a, 0x7f04012b, 0x7f04012f, 0x7f040134, 0x7f040135, 0x7f04014a, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f0401d5, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de }
+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 { 0x10100da, 0x1010000, 0x7f04013c, 0x7f04013d, 0x7f0401cb }
+int styleable View_android_focusable 0
+int styleable View_android_theme 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040037, 0x7f040038 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 1
+int styleable ViewStubCompat_android_layout 2
+int xml preferences 0x7f180001
diff --git a/android/build/intermediates/symbols/release/R.txt b/android/build/intermediates/symbols/release/R.txt
new file mode 100644
index 000000000..0747608f3
--- /dev/null
+++ b/android/build/intermediates/symbols/release/R.txt
@@ -0,0 +1,2776 @@
+int anim abc_fade_in 0x7f010001
+int anim abc_fade_out 0x7f010002
+int anim abc_grow_fade_in_from_bottom 0x7f010003
+int anim abc_popup_enter 0x7f010004
+int anim abc_popup_exit 0x7f010005
+int anim abc_shrink_fade_out_from_bottom 0x7f010006
+int anim abc_slide_in_bottom 0x7f010007
+int anim abc_slide_in_top 0x7f010008
+int anim abc_slide_out_bottom 0x7f010009
+int anim abc_slide_out_top 0x7f01000a
+int anim abc_tooltip_enter 0x7f01000b
+int anim abc_tooltip_exit 0x7f01000c
+int anim blink 0x7f01000d
+int anim catalyst_push_up_in 0x7f01000e
+int anim catalyst_push_up_out 0x7f01000f
+int anim design_bottom_sheet_slide_in 0x7f010010
+int anim design_bottom_sheet_slide_out 0x7f010011
+int anim design_snackbar_in 0x7f010012
+int anim design_snackbar_out 0x7f010013
+int animator design_appbar_state_list_animator 0x7f020001
+int animator design_fab_hide_motion_spec 0x7f020002
+int animator design_fab_show_motion_spec 0x7f020003
+int animator mtrl_btn_state_list_anim 0x7f020004
+int animator mtrl_btn_unelevated_state_list_anim 0x7f020005
+int animator mtrl_chip_state_list_anim 0x7f020006
+int animator mtrl_fab_hide_motion_spec 0x7f020007
+int animator mtrl_fab_show_motion_spec 0x7f020008
+int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020009
+int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02000a
+int attr actionBarDivider 0x7f040001
+int attr actionBarItemBackground 0x7f040002
+int attr actionBarPopupTheme 0x7f040003
+int attr actionBarSize 0x7f040004
+int attr actionBarSplitStyle 0x7f040005
+int attr actionBarStyle 0x7f040006
+int attr actionBarTabBarStyle 0x7f040007
+int attr actionBarTabStyle 0x7f040008
+int attr actionBarTabTextStyle 0x7f040009
+int attr actionBarTheme 0x7f04000a
+int attr actionBarWidgetTheme 0x7f04000b
+int attr actionButtonStyle 0x7f04000c
+int attr actionDropDownStyle 0x7f04000d
+int attr actionLayout 0x7f04000e
+int attr actionMenuTextAppearance 0x7f04000f
+int attr actionMenuTextColor 0x7f040010
+int attr actionModeBackground 0x7f040011
+int attr actionModeCloseButtonStyle 0x7f040012
+int attr actionModeCloseDrawable 0x7f040013
+int attr actionModeCopyDrawable 0x7f040014
+int attr actionModeCutDrawable 0x7f040015
+int attr actionModeFindDrawable 0x7f040016
+int attr actionModePasteDrawable 0x7f040017
+int attr actionModePopupWindowStyle 0x7f040018
+int attr actionModeSelectAllDrawable 0x7f040019
+int attr actionModeShareDrawable 0x7f04001a
+int attr actionModeSplitBackground 0x7f04001b
+int attr actionModeStyle 0x7f04001c
+int attr actionModeWebSearchDrawable 0x7f04001d
+int attr actionOverflowButtonStyle 0x7f04001e
+int attr actionOverflowMenuStyle 0x7f04001f
+int attr actionProviderClass 0x7f040020
+int attr actionViewClass 0x7f040021
+int attr activityChooserViewStyle 0x7f040022
+int attr actualImageScaleType 0x7f040023
+int attr alertDialogButtonGroupStyle 0x7f040024
+int attr alertDialogCenterButtons 0x7f040025
+int attr alertDialogStyle 0x7f040026
+int attr alertDialogTheme 0x7f040027
+int attr allowStacking 0x7f040028
+int attr alpha 0x7f040029
+int attr alphabeticModifiers 0x7f04002a
+int attr arrowHeadLength 0x7f04002b
+int attr arrowShaftLength 0x7f04002c
+int attr autoCompleteTextViewStyle 0x7f04002d
+int attr autoSizeMaxTextSize 0x7f04002e
+int attr autoSizeMinTextSize 0x7f04002f
+int attr autoSizePresetSizes 0x7f040030
+int attr autoSizeStepGranularity 0x7f040031
+int attr autoSizeTextType 0x7f040032
+int attr background 0x7f040033
+int attr backgroundImage 0x7f040034
+int attr backgroundSplit 0x7f040035
+int attr backgroundStacked 0x7f040036
+int attr backgroundTint 0x7f040037
+int attr backgroundTintMode 0x7f040038
+int attr barLength 0x7f040039
+int attr behavior_autoHide 0x7f04003a
+int attr behavior_fitToContents 0x7f04003b
+int attr behavior_hideable 0x7f04003c
+int attr behavior_overlapTop 0x7f04003d
+int attr behavior_peekHeight 0x7f04003e
+int attr behavior_skipCollapsed 0x7f04003f
+int attr borderWidth 0x7f040040
+int attr borderlessButtonStyle 0x7f040041
+int attr bottomAppBarStyle 0x7f040042
+int attr bottomNavigationStyle 0x7f040043
+int attr bottomSheetDialogTheme 0x7f040044
+int attr bottomSheetStyle 0x7f040045
+int attr boxBackgroundColor 0x7f040046
+int attr boxBackgroundMode 0x7f040047
+int attr boxCollapsedPaddingTop 0x7f040048
+int attr boxCornerRadiusBottomEnd 0x7f040049
+int attr boxCornerRadiusBottomStart 0x7f04004a
+int attr boxCornerRadiusTopEnd 0x7f04004b
+int attr boxCornerRadiusTopStart 0x7f04004c
+int attr boxStrokeColor 0x7f04004d
+int attr boxStrokeWidth 0x7f04004e
+int attr buttonBarButtonStyle 0x7f04004f
+int attr buttonBarNegativeButtonStyle 0x7f040050
+int attr buttonBarNeutralButtonStyle 0x7f040051
+int attr buttonBarPositiveButtonStyle 0x7f040052
+int attr buttonBarStyle 0x7f040053
+int attr buttonGravity 0x7f040054
+int attr buttonIconDimen 0x7f040055
+int attr buttonPanelSideLayout 0x7f040056
+int attr buttonStyle 0x7f040057
+int attr buttonStyleSmall 0x7f040058
+int attr buttonTint 0x7f040059
+int attr buttonTintMode 0x7f04005a
+int attr camera_id 0x7f04005b
+int attr cardBackgroundColor 0x7f04005c
+int attr cardCornerRadius 0x7f04005d
+int attr cardElevation 0x7f04005e
+int attr cardMaxElevation 0x7f04005f
+int attr cardPreventCornerOverlap 0x7f040060
+int attr cardUseCompatPadding 0x7f040061
+int attr cardViewStyle 0x7f040062
+int attr checkboxStyle 0x7f040063
+int attr checkedChip 0x7f040064
+int attr checkedIcon 0x7f040065
+int attr checkedIconEnabled 0x7f040066
+int attr checkedIconVisible 0x7f040067
+int attr checkedTextViewStyle 0x7f040068
+int attr chipBackgroundColor 0x7f040069
+int attr chipCornerRadius 0x7f04006a
+int attr chipEndPadding 0x7f04006b
+int attr chipGroupStyle 0x7f04006c
+int attr chipIcon 0x7f04006d
+int attr chipIconEnabled 0x7f04006e
+int attr chipIconSize 0x7f04006f
+int attr chipIconTint 0x7f040070
+int attr chipIconVisible 0x7f040071
+int attr chipMinHeight 0x7f040072
+int attr chipSpacing 0x7f040073
+int attr chipSpacingHorizontal 0x7f040074
+int attr chipSpacingVertical 0x7f040075
+int attr chipStandaloneStyle 0x7f040076
+int attr chipStartPadding 0x7f040077
+int attr chipStrokeColor 0x7f040078
+int attr chipStrokeWidth 0x7f040079
+int attr chipStyle 0x7f04007a
+int attr closeIcon 0x7f04007b
+int attr closeIconEnabled 0x7f04007c
+int attr closeIconEndPadding 0x7f04007d
+int attr closeIconSize 0x7f04007e
+int attr closeIconStartPadding 0x7f04007f
+int attr closeIconTint 0x7f040080
+int attr closeIconVisible 0x7f040081
+int attr closeItemLayout 0x7f040082
+int attr collapseContentDescription 0x7f040083
+int attr collapseIcon 0x7f040084
+int attr collapsedTitleGravity 0x7f040085
+int attr collapsedTitleTextAppearance 0x7f040086
+int attr color 0x7f040087
+int attr colorAccent 0x7f040088
+int attr colorBackgroundFloating 0x7f040089
+int attr colorButtonNormal 0x7f04008a
+int attr colorControlActivated 0x7f04008b
+int attr colorControlHighlight 0x7f04008c
+int attr colorControlNormal 0x7f04008d
+int attr colorError 0x7f04008e
+int attr colorPrimary 0x7f04008f
+int attr colorPrimaryDark 0x7f040090
+int attr colorSecondary 0x7f040091
+int attr colorSwitchThumbNormal 0x7f040092
+int attr commitIcon 0x7f040093
+int attr contentDescription 0x7f040094
+int attr contentInsetEnd 0x7f040095
+int attr contentInsetEndWithActions 0x7f040096
+int attr contentInsetLeft 0x7f040097
+int attr contentInsetRight 0x7f040098
+int attr contentInsetStart 0x7f040099
+int attr contentInsetStartWithNavigation 0x7f04009a
+int attr contentPadding 0x7f04009b
+int attr contentPaddingBottom 0x7f04009c
+int attr contentPaddingLeft 0x7f04009d
+int attr contentPaddingRight 0x7f04009e
+int attr contentPaddingTop 0x7f04009f
+int attr contentScrim 0x7f0400a0
+int attr controlBackground 0x7f0400a1
+int attr coordinatorLayoutStyle 0x7f0400a2
+int attr cornerRadius 0x7f0400a3
+int attr counterEnabled 0x7f0400a4
+int attr counterMaxLength 0x7f0400a5
+int attr counterOverflowTextAppearance 0x7f0400a6
+int attr counterTextAppearance 0x7f0400a7
+int attr customNavigationLayout 0x7f0400a8
+int attr defaultQueryHint 0x7f0400a9
+int attr dialogCornerRadius 0x7f0400aa
+int attr dialogPreferredPadding 0x7f0400ab
+int attr dialogTheme 0x7f0400ac
+int attr displayOptions 0x7f0400ad
+int attr divider 0x7f0400ae
+int attr dividerHorizontal 0x7f0400af
+int attr dividerPadding 0x7f0400b0
+int attr dividerVertical 0x7f0400b1
+int attr drawableSize 0x7f0400b2
+int attr drawerArrowStyle 0x7f0400b3
+int attr dropDownListViewStyle 0x7f0400b4
+int attr dropdownListPreferredItemHeight 0x7f0400b5
+int attr editTextBackground 0x7f0400b6
+int attr editTextColor 0x7f0400b7
+int attr editTextStyle 0x7f0400b8
+int attr elevation 0x7f0400b9
+int attr enforceMaterialTheme 0x7f0400ba
+int attr enforceTextAppearance 0x7f0400bb
+int attr errorEnabled 0x7f0400bc
+int attr errorTextAppearance 0x7f0400bd
+int attr expandActivityOverflowButtonDrawable 0x7f0400be
+int attr expanded 0x7f0400bf
+int attr expandedTitleGravity 0x7f0400c0
+int attr expandedTitleMargin 0x7f0400c1
+int attr expandedTitleMarginBottom 0x7f0400c2
+int attr expandedTitleMarginEnd 0x7f0400c3
+int attr expandedTitleMarginStart 0x7f0400c4
+int attr expandedTitleMarginTop 0x7f0400c5
+int attr expandedTitleTextAppearance 0x7f0400c6
+int attr fabAlignmentMode 0x7f0400c7
+int attr fabCradleMargin 0x7f0400c8
+int attr fabCradleRoundedCornerRadius 0x7f0400c9
+int attr fabCradleVerticalOffset 0x7f0400ca
+int attr fabCustomSize 0x7f0400cb
+int attr fabSize 0x7f0400cc
+int attr fadeDuration 0x7f0400cd
+int attr failureImage 0x7f0400ce
+int attr failureImageScaleType 0x7f0400cf
+int attr fastScrollEnabled 0x7f0400d0
+int attr fastScrollHorizontalThumbDrawable 0x7f0400d1
+int attr fastScrollHorizontalTrackDrawable 0x7f0400d2
+int attr fastScrollVerticalThumbDrawable 0x7f0400d3
+int attr fastScrollVerticalTrackDrawable 0x7f0400d4
+int attr firstBaselineToTopHeight 0x7f0400d5
+int attr floatingActionButtonStyle 0x7f0400d6
+int attr font 0x7f0400d7
+int attr fontFamily 0x7f0400d8
+int attr fontProviderAuthority 0x7f0400d9
+int attr fontProviderCerts 0x7f0400da
+int attr fontProviderFetchStrategy 0x7f0400db
+int attr fontProviderFetchTimeout 0x7f0400dc
+int attr fontProviderPackage 0x7f0400dd
+int attr fontProviderQuery 0x7f0400de
+int attr fontStyle 0x7f0400df
+int attr fontVariationSettings 0x7f0400e0
+int attr fontWeight 0x7f0400e1
+int attr foregroundInsidePadding 0x7f0400e2
+int attr gapBetweenBars 0x7f0400e3
+int attr goIcon 0x7f0400e4
+int attr headerLayout 0x7f0400e5
+int attr height 0x7f0400e6
+int attr helperText 0x7f0400e7
+int attr helperTextEnabled 0x7f0400e8
+int attr helperTextTextAppearance 0x7f0400e9
+int attr hideMotionSpec 0x7f0400ea
+int attr hideOnContentScroll 0x7f0400eb
+int attr hideOnScroll 0x7f0400ec
+int attr hintAnimationEnabled 0x7f0400ed
+int attr hintEnabled 0x7f0400ee
+int attr hintTextAppearance 0x7f0400ef
+int attr homeAsUpIndicator 0x7f0400f0
+int attr homeLayout 0x7f0400f1
+int attr hoveredFocusedTranslationZ 0x7f0400f2
+int attr icon 0x7f0400f3
+int attr iconEndPadding 0x7f0400f4
+int attr iconGravity 0x7f0400f5
+int attr iconPadding 0x7f0400f6
+int attr iconSize 0x7f0400f7
+int attr iconStartPadding 0x7f0400f8
+int attr iconTint 0x7f0400f9
+int attr iconTintMode 0x7f0400fa
+int attr iconifiedByDefault 0x7f0400fb
+int attr imageButtonStyle 0x7f0400fc
+int attr indeterminateProgressStyle 0x7f0400fd
+int attr initialActivityCount 0x7f0400fe
+int attr insetForeground 0x7f0400ff
+int attr isLightTheme 0x7f040100
+int attr itemBackground 0x7f040101
+int attr itemHorizontalPadding 0x7f040102
+int attr itemHorizontalTranslationEnabled 0x7f040103
+int attr itemIconPadding 0x7f040104
+int attr itemIconSize 0x7f040105
+int attr itemIconTint 0x7f040106
+int attr itemPadding 0x7f040107
+int attr itemSpacing 0x7f040108
+int attr itemTextAppearance 0x7f040109
+int attr itemTextAppearanceActive 0x7f04010a
+int attr itemTextAppearanceInactive 0x7f04010b
+int attr itemTextColor 0x7f04010c
+int attr keylines 0x7f04010d
+int attr labelVisibilityMode 0x7f04010e
+int attr lastBaselineToBottomHeight 0x7f04010f
+int attr layout 0x7f040110
+int attr layoutManager 0x7f040111
+int attr layout_anchor 0x7f040112
+int attr layout_anchorGravity 0x7f040113
+int attr layout_behavior 0x7f040114
+int attr layout_collapseMode 0x7f040115
+int attr layout_collapseParallaxMultiplier 0x7f040116
+int attr layout_dodgeInsetEdges 0x7f040117
+int attr layout_insetEdge 0x7f040118
+int attr layout_keyline 0x7f040119
+int attr layout_scrollFlags 0x7f04011a
+int attr layout_scrollInterpolator 0x7f04011b
+int attr liftOnScroll 0x7f04011c
+int attr lineHeight 0x7f04011d
+int attr lineSpacing 0x7f04011e
+int attr listChoiceBackgroundIndicator 0x7f04011f
+int attr listDividerAlertDialog 0x7f040120
+int attr listItemLayout 0x7f040121
+int attr listLayout 0x7f040122
+int attr listMenuViewStyle 0x7f040123
+int attr listPopupWindowStyle 0x7f040124
+int attr listPreferredItemHeight 0x7f040125
+int attr listPreferredItemHeightLarge 0x7f040126
+int attr listPreferredItemHeightSmall 0x7f040127
+int attr listPreferredItemPaddingLeft 0x7f040128
+int attr listPreferredItemPaddingRight 0x7f040129
+int attr logo 0x7f04012a
+int attr logoDescription 0x7f04012b
+int attr materialButtonStyle 0x7f04012c
+int attr materialCardViewStyle 0x7f04012d
+int attr maxActionInlineWidth 0x7f04012e
+int attr maxButtonHeight 0x7f04012f
+int attr maxImageSize 0x7f040130
+int attr measureWithLargestChild 0x7f040131
+int attr menu 0x7f040132
+int attr multiChoiceItemLayout 0x7f040133
+int attr navigationContentDescription 0x7f040134
+int attr navigationIcon 0x7f040135
+int attr navigationMode 0x7f040136
+int attr navigationViewStyle 0x7f040137
+int attr numericModifiers 0x7f040138
+int attr overlapAnchor 0x7f040139
+int attr overlayImage 0x7f04013a
+int attr paddingBottomNoButtons 0x7f04013b
+int attr paddingEnd 0x7f04013c
+int attr paddingStart 0x7f04013d
+int attr paddingTopNoTitle 0x7f04013e
+int attr panelBackground 0x7f04013f
+int attr panelMenuListTheme 0x7f040140
+int attr panelMenuListWidth 0x7f040141
+int attr passwordToggleContentDescription 0x7f040142
+int attr passwordToggleDrawable 0x7f040143
+int attr passwordToggleEnabled 0x7f040144
+int attr passwordToggleTint 0x7f040145
+int attr passwordToggleTintMode 0x7f040146
+int attr placeholderImage 0x7f040147
+int attr placeholderImageScaleType 0x7f040148
+int attr popupMenuStyle 0x7f040149
+int attr popupTheme 0x7f04014a
+int attr popupWindowStyle 0x7f04014b
+int attr preserveIconSpacing 0x7f04014c
+int attr pressedStateOverlayImage 0x7f04014d
+int attr pressedTranslationZ 0x7f04014e
+int attr progressBarAutoRotateInterval 0x7f04014f
+int attr progressBarImage 0x7f040150
+int attr progressBarImageScaleType 0x7f040151
+int attr progressBarPadding 0x7f040152
+int attr progressBarStyle 0x7f040153
+int attr queryBackground 0x7f040154
+int attr queryHint 0x7f040155
+int attr radioButtonStyle 0x7f040156
+int attr ratingBarStyle 0x7f040157
+int attr ratingBarStyleIndicator 0x7f040158
+int attr ratingBarStyleSmall 0x7f040159
+int attr retryImage 0x7f04015a
+int attr retryImageScaleType 0x7f04015b
+int attr reverseLayout 0x7f04015c
+int attr rippleColor 0x7f04015d
+int attr roundAsCircle 0x7f04015e
+int attr roundBottomLeft 0x7f04015f
+int attr roundBottomRight 0x7f040160
+int attr roundTopLeft 0x7f040161
+int attr roundTopRight 0x7f040162
+int attr roundWithOverlayColor 0x7f040163
+int attr roundedCornerRadius 0x7f040164
+int attr roundingBorderColor 0x7f040165
+int attr roundingBorderWidth 0x7f040166
+int attr scrimAnimationDuration 0x7f040167
+int attr scrimBackground 0x7f040168
+int attr scrimVisibleHeightTrigger 0x7f040169
+int attr searchHintIcon 0x7f04016a
+int attr searchIcon 0x7f04016b
+int attr searchViewStyle 0x7f04016c
+int attr seekBarStyle 0x7f04016d
+int attr selectableItemBackground 0x7f04016e
+int attr selectableItemBackgroundBorderless 0x7f04016f
+int attr showAsAction 0x7f040170
+int attr showDividers 0x7f040171
+int attr showMotionSpec 0x7f040172
+int attr showText 0x7f040173
+int attr showTitle 0x7f040174
+int attr show_fps 0x7f040175
+int attr singleChoiceItemLayout 0x7f040176
+int attr singleLine 0x7f040177
+int attr singleSelection 0x7f040178
+int attr snackbarButtonStyle 0x7f040179
+int attr snackbarStyle 0x7f04017a
+int attr spanCount 0x7f04017b
+int attr spinBars 0x7f04017c
+int attr spinnerDropDownItemStyle 0x7f04017d
+int attr spinnerStyle 0x7f04017e
+int attr splitTrack 0x7f04017f
+int attr srcCompat 0x7f040180
+int attr stackFromEnd 0x7f040181
+int attr state_above_anchor 0x7f040182
+int attr state_collapsed 0x7f040183
+int attr state_collapsible 0x7f040184
+int attr state_liftable 0x7f040185
+int attr state_lifted 0x7f040186
+int attr statusBarBackground 0x7f040187
+int attr statusBarScrim 0x7f040188
+int attr strokeColor 0x7f040189
+int attr strokeWidth 0x7f04018a
+int attr subMenuArrow 0x7f04018b
+int attr submitBackground 0x7f04018c
+int attr subtitle 0x7f04018d
+int attr subtitleTextAppearance 0x7f04018e
+int attr subtitleTextColor 0x7f04018f
+int attr subtitleTextStyle 0x7f040190
+int attr suggestionRowLayout 0x7f040191
+int attr switchMinWidth 0x7f040192
+int attr switchPadding 0x7f040193
+int attr switchStyle 0x7f040194
+int attr switchTextAppearance 0x7f040195
+int attr tabBackground 0x7f040196
+int attr tabContentStart 0x7f040197
+int attr tabGravity 0x7f040198
+int attr tabIconTint 0x7f040199
+int attr tabIconTintMode 0x7f04019a
+int attr tabIndicator 0x7f04019b
+int attr tabIndicatorAnimationDuration 0x7f04019c
+int attr tabIndicatorColor 0x7f04019d
+int attr tabIndicatorFullWidth 0x7f04019e
+int attr tabIndicatorGravity 0x7f04019f
+int attr tabIndicatorHeight 0x7f0401a0
+int attr tabInlineLabel 0x7f0401a1
+int attr tabMaxWidth 0x7f0401a2
+int attr tabMinWidth 0x7f0401a3
+int attr tabMode 0x7f0401a4
+int attr tabPadding 0x7f0401a5
+int attr tabPaddingBottom 0x7f0401a6
+int attr tabPaddingEnd 0x7f0401a7
+int attr tabPaddingStart 0x7f0401a8
+int attr tabPaddingTop 0x7f0401a9
+int attr tabRippleColor 0x7f0401aa
+int attr tabSelectedTextColor 0x7f0401ab
+int attr tabStyle 0x7f0401ac
+int attr tabTextAppearance 0x7f0401ad
+int attr tabTextColor 0x7f0401ae
+int attr tabUnboundedRipple 0x7f0401af
+int attr textAllCaps 0x7f0401b0
+int attr textAppearanceBody1 0x7f0401b1
+int attr textAppearanceBody2 0x7f0401b2
+int attr textAppearanceButton 0x7f0401b3
+int attr textAppearanceCaption 0x7f0401b4
+int attr textAppearanceHeadline1 0x7f0401b5
+int attr textAppearanceHeadline2 0x7f0401b6
+int attr textAppearanceHeadline3 0x7f0401b7
+int attr textAppearanceHeadline4 0x7f0401b8
+int attr textAppearanceHeadline5 0x7f0401b9
+int attr textAppearanceHeadline6 0x7f0401ba
+int attr textAppearanceLargePopupMenu 0x7f0401bb
+int attr textAppearanceListItem 0x7f0401bc
+int attr textAppearanceListItemSecondary 0x7f0401bd
+int attr textAppearanceListItemSmall 0x7f0401be
+int attr textAppearanceOverline 0x7f0401bf
+int attr textAppearancePopupMenuHeader 0x7f0401c0
+int attr textAppearanceSearchResultSubtitle 0x7f0401c1
+int attr textAppearanceSearchResultTitle 0x7f0401c2
+int attr textAppearanceSmallPopupMenu 0x7f0401c3
+int attr textAppearanceSubtitle1 0x7f0401c4
+int attr textAppearanceSubtitle2 0x7f0401c5
+int attr textColorAlertDialogListItem 0x7f0401c6
+int attr textColorSearchUrl 0x7f0401c7
+int attr textEndPadding 0x7f0401c8
+int attr textInputStyle 0x7f0401c9
+int attr textStartPadding 0x7f0401ca
+int attr theme 0x7f0401cb
+int attr thickness 0x7f0401cc
+int attr thumbTextPadding 0x7f0401cd
+int attr thumbTint 0x7f0401ce
+int attr thumbTintMode 0x7f0401cf
+int attr tickMark 0x7f0401d0
+int attr tickMarkTint 0x7f0401d1
+int attr tickMarkTintMode 0x7f0401d2
+int attr tint 0x7f0401d3
+int attr tintMode 0x7f0401d4
+int attr title 0x7f0401d5
+int attr titleEnabled 0x7f0401d6
+int attr titleMargin 0x7f0401d7
+int attr titleMarginBottom 0x7f0401d8
+int attr titleMarginEnd 0x7f0401d9
+int attr titleMarginStart 0x7f0401da
+int attr titleMarginTop 0x7f0401db
+int attr titleMargins 0x7f0401dc
+int attr titleTextAppearance 0x7f0401dd
+int attr titleTextColor 0x7f0401de
+int attr titleTextStyle 0x7f0401df
+int attr toolbarId 0x7f0401e0
+int attr toolbarNavigationButtonStyle 0x7f0401e1
+int attr toolbarStyle 0x7f0401e2
+int attr tooltipForegroundColor 0x7f0401e3
+int attr tooltipFrameBackground 0x7f0401e4
+int attr tooltipText 0x7f0401e5
+int attr track 0x7f0401e6
+int attr trackTint 0x7f0401e7
+int attr trackTintMode 0x7f0401e8
+int attr ttcIndex 0x7f0401e9
+int attr useCompatPadding 0x7f0401ea
+int attr viewAspectRatio 0x7f0401eb
+int attr viewInflaterClass 0x7f0401ec
+int attr voiceIcon 0x7f0401ed
+int attr windowActionBar 0x7f0401ee
+int attr windowActionBarOverlay 0x7f0401ef
+int attr windowActionModeOverlay 0x7f0401f0
+int attr windowFixedHeightMajor 0x7f0401f1
+int attr windowFixedHeightMinor 0x7f0401f2
+int attr windowFixedWidthMajor 0x7f0401f3
+int attr windowFixedWidthMinor 0x7f0401f4
+int attr windowMinWidthMajor 0x7f0401f5
+int attr windowMinWidthMinor 0x7f0401f6
+int attr windowNoTitle 0x7f0401f7
+int bool abc_action_bar_embed_tabs 0x7f050001
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f050002
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f050003
+int bool abc_allow_stacked_button_bar 0x7f050004
+int bool abc_config_actionMenuItemAllCaps 0x7f050005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050006
+int bool abc_config_closeDialogWhenTouchOutside 0x7f050007
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050008
+int bool mtrl_btn_textappearance_all_caps 0x7f050009
+int color abc_background_cache_hint_selector_material_dark 0x7f060001
+int color abc_background_cache_hint_selector_material_light 0x7f060002
+int color abc_btn_colored_borderless_text_material 0x7f060003
+int color abc_btn_colored_text_material 0x7f060004
+int color abc_color_highlight_material 0x7f060005
+int color abc_hint_foreground_material_dark 0x7f060006
+int color abc_hint_foreground_material_light 0x7f060007
+int color abc_input_method_navigation_guard 0x7f060008
+int color abc_primary_text_disable_only_material_dark 0x7f060009
+int color abc_primary_text_disable_only_material_light 0x7f06000a
+int color abc_primary_text_material_dark 0x7f06000b
+int color abc_primary_text_material_light 0x7f06000c
+int color abc_search_url_text 0x7f06000d
+int color abc_search_url_text_normal 0x7f06000e
+int color abc_search_url_text_pressed 0x7f06000f
+int color abc_search_url_text_selected 0x7f060010
+int color abc_secondary_text_material_dark 0x7f060011
+int color abc_secondary_text_material_light 0x7f060012
+int color abc_tint_btn_checkable 0x7f060013
+int color abc_tint_default 0x7f060014
+int color abc_tint_edittext 0x7f060015
+int color abc_tint_seek_thumb 0x7f060016
+int color abc_tint_spinner 0x7f060017
+int color abc_tint_switch_track 0x7f060018
+int color accent_material_dark 0x7f060019
+int color accent_material_light 0x7f06001a
+int color background_floating_material_dark 0x7f06001b
+int color background_floating_material_light 0x7f06001c
+int color background_material_dark 0x7f06001d
+int color background_material_light 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 button_material_dark 0x7f060025
+int color button_material_light 0x7f060026
+int color cardview_dark_background 0x7f060027
+int color cardview_light_background 0x7f060028
+int color cardview_shadow_end_color 0x7f060029
+int color cardview_shadow_start_color 0x7f06002a
+int color catalyst_redbox_background 0x7f06002b
+int color design_bottom_navigation_shadow_color 0x7f06002c
+int color design_default_color_primary 0x7f06002d
+int color design_default_color_primary_dark 0x7f06002e
+int color design_error 0x7f06002f
+int color design_fab_shadow_end_color 0x7f060030
+int color design_fab_shadow_mid_color 0x7f060031
+int color design_fab_shadow_start_color 0x7f060032
+int color design_fab_stroke_end_inner_color 0x7f060033
+int color design_fab_stroke_end_outer_color 0x7f060034
+int color design_fab_stroke_top_inner_color 0x7f060035
+int color design_fab_stroke_top_outer_color 0x7f060036
+int color design_snackbar_background_color 0x7f060037
+int color design_tint_password_toggle 0x7f060038
+int color dim_foreground_disabled_material_dark 0x7f060039
+int color dim_foreground_disabled_material_light 0x7f06003a
+int color dim_foreground_material_dark 0x7f06003b
+int color dim_foreground_material_light 0x7f06003c
+int color error_color_material_dark 0x7f06003d
+int color error_color_material_light 0x7f06003e
+int color foreground_material_dark 0x7f06003f
+int color foreground_material_light 0x7f060040
+int color highlighted_text_material_dark 0x7f060041
+int color highlighted_text_material_light 0x7f060042
+int color hint_foreground_material_dark 0x7f060043
+int color hint_foreground_material_light 0x7f060044
+int color material_blue_grey_800 0x7f060045
+int color material_blue_grey_900 0x7f060046
+int color material_blue_grey_950 0x7f060047
+int color material_deep_teal_200 0x7f060048
+int color material_deep_teal_500 0x7f060049
+int color material_grey_100 0x7f06004a
+int color material_grey_300 0x7f06004b
+int color material_grey_50 0x7f06004c
+int color material_grey_600 0x7f06004d
+int color material_grey_800 0x7f06004e
+int color material_grey_850 0x7f06004f
+int color material_grey_900 0x7f060050
+int color mtrl_bottom_nav_colored_item_tint 0x7f060051
+int color mtrl_bottom_nav_item_tint 0x7f060052
+int color mtrl_btn_bg_color_disabled 0x7f060053
+int color mtrl_btn_bg_color_selector 0x7f060054
+int color mtrl_btn_ripple_color 0x7f060055
+int color mtrl_btn_stroke_color_selector 0x7f060056
+int color mtrl_btn_text_btn_ripple_color 0x7f060057
+int color mtrl_btn_text_color_disabled 0x7f060058
+int color mtrl_btn_text_color_selector 0x7f060059
+int color mtrl_btn_transparent_bg_color 0x7f06005a
+int color mtrl_chip_background_color 0x7f06005b
+int color mtrl_chip_close_icon_tint 0x7f06005c
+int color mtrl_chip_ripple_color 0x7f06005d
+int color mtrl_chip_text_color 0x7f06005e
+int color mtrl_fab_ripple_color 0x7f06005f
+int color mtrl_scrim_color 0x7f060060
+int color mtrl_tabs_colored_ripple_color 0x7f060061
+int color mtrl_tabs_icon_color_selector 0x7f060062
+int color mtrl_tabs_icon_color_selector_colored 0x7f060063
+int color mtrl_tabs_legacy_text_color_selector 0x7f060064
+int color mtrl_tabs_ripple_color 0x7f060065
+int color mtrl_text_btn_text_color_selector 0x7f060066
+int color mtrl_textinput_default_box_stroke_color 0x7f060067
+int color mtrl_textinput_disabled_color 0x7f060068
+int color mtrl_textinput_filled_box_default_background_color 0x7f060069
+int color mtrl_textinput_hovered_box_stroke_color 0x7f06006a
+int color notification_action_color_filter 0x7f06006b
+int color notification_icon_bg_color 0x7f06006c
+int color primary_dark_material_dark 0x7f06006d
+int color primary_dark_material_light 0x7f06006e
+int color primary_material_dark 0x7f06006f
+int color primary_material_light 0x7f060070
+int color primary_text_default_material_dark 0x7f060071
+int color primary_text_default_material_light 0x7f060072
+int color primary_text_disabled_material_dark 0x7f060073
+int color primary_text_disabled_material_light 0x7f060074
+int color ripple_material_dark 0x7f060075
+int color ripple_material_light 0x7f060076
+int color secondary_text_default_material_dark 0x7f060077
+int color secondary_text_default_material_light 0x7f060078
+int color secondary_text_disabled_material_dark 0x7f060079
+int color secondary_text_disabled_material_light 0x7f06007a
+int color switch_thumb_disabled_material_dark 0x7f06007b
+int color switch_thumb_disabled_material_light 0x7f06007c
+int color switch_thumb_material_dark 0x7f06007d
+int color switch_thumb_material_light 0x7f06007e
+int color switch_thumb_normal_material_dark 0x7f06007f
+int color switch_thumb_normal_material_light 0x7f060080
+int color tooltip_background_dark 0x7f060081
+int color tooltip_background_light 0x7f060082
+int dimen abc_action_bar_content_inset_material 0x7f070001
+int dimen abc_action_bar_content_inset_with_nav 0x7f070002
+int dimen abc_action_bar_default_height_material 0x7f070003
+int dimen abc_action_bar_default_padding_end_material 0x7f070004
+int dimen abc_action_bar_default_padding_start_material 0x7f070005
+int dimen abc_action_bar_elevation_material 0x7f070006
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
+int dimen abc_action_bar_progress_bar_size 0x7f07000a
+int dimen abc_action_bar_stacked_max_height 0x7f07000b
+int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e
+int dimen abc_action_button_min_height_material 0x7f07000f
+int dimen abc_action_button_min_width_material 0x7f070010
+int dimen abc_action_button_min_width_overflow_material 0x7f070011
+int dimen abc_alert_dialog_button_bar_height 0x7f070012
+int dimen abc_alert_dialog_button_dimen 0x7f070013
+int dimen abc_button_inset_horizontal_material 0x7f070014
+int dimen abc_button_inset_vertical_material 0x7f070015
+int dimen abc_button_padding_horizontal_material 0x7f070016
+int dimen abc_button_padding_vertical_material 0x7f070017
+int dimen abc_cascading_menus_min_smallest_width 0x7f070018
+int dimen abc_config_prefDialogWidth 0x7f070019
+int dimen abc_control_corner_material 0x7f07001a
+int dimen abc_control_inset_material 0x7f07001b
+int dimen abc_control_padding_material 0x7f07001c
+int dimen abc_dialog_corner_radius_material 0x7f07001d
+int dimen abc_dialog_fixed_height_major 0x7f07001e
+int dimen abc_dialog_fixed_height_minor 0x7f07001f
+int dimen abc_dialog_fixed_width_major 0x7f070020
+int dimen abc_dialog_fixed_width_minor 0x7f070021
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022
+int dimen abc_dialog_list_padding_top_no_title 0x7f070023
+int dimen abc_dialog_list_padding_vertical_material 0x7f070024
+int dimen abc_dialog_min_width_major 0x7f070025
+int dimen abc_dialog_min_width_minor 0x7f070026
+int dimen abc_dialog_padding_material 0x7f070027
+int dimen abc_dialog_padding_top_material 0x7f070028
+int dimen abc_dialog_title_divider_material 0x7f070029
+int dimen abc_disabled_alpha_material_dark 0x7f07002a
+int dimen abc_disabled_alpha_material_light 0x7f07002b
+int dimen abc_dropdownitem_icon_width 0x7f07002c
+int dimen abc_dropdownitem_text_padding_left 0x7f07002d
+int dimen abc_dropdownitem_text_padding_right 0x7f07002e
+int dimen abc_edit_text_inset_bottom_material 0x7f07002f
+int dimen abc_edit_text_inset_horizontal_material 0x7f070030
+int dimen abc_edit_text_inset_top_material 0x7f070031
+int dimen abc_floating_window_z 0x7f070032
+int dimen abc_list_item_padding_horizontal_material 0x7f070033
+int dimen abc_panel_menu_list_width 0x7f070034
+int dimen abc_progress_bar_height_material 0x7f070035
+int dimen abc_search_view_preferred_height 0x7f070036
+int dimen abc_search_view_preferred_width 0x7f070037
+int dimen abc_search_view_text_min_width 0x7f070038
+int dimen abc_seekbar_track_background_height_material 0x7f070039
+int dimen abc_seekbar_track_progress_height_material 0x7f07003a
+int dimen abc_select_dialog_padding_start_material 0x7f07003b
+int dimen abc_switch_padding 0x7f07003c
+int dimen abc_text_size_body_1_material 0x7f07003d
+int dimen abc_text_size_body_2_material 0x7f07003e
+int dimen abc_text_size_button_material 0x7f07003f
+int dimen abc_text_size_caption_material 0x7f070040
+int dimen abc_text_size_display_1_material 0x7f070041
+int dimen abc_text_size_display_2_material 0x7f070042
+int dimen abc_text_size_display_3_material 0x7f070043
+int dimen abc_text_size_display_4_material 0x7f070044
+int dimen abc_text_size_headline_material 0x7f070045
+int dimen abc_text_size_large_material 0x7f070046
+int dimen abc_text_size_medium_material 0x7f070047
+int dimen abc_text_size_menu_header_material 0x7f070048
+int dimen abc_text_size_menu_material 0x7f070049
+int dimen abc_text_size_small_material 0x7f07004a
+int dimen abc_text_size_subhead_material 0x7f07004b
+int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c
+int dimen abc_text_size_title_material 0x7f07004d
+int dimen abc_text_size_title_material_toolbar 0x7f07004e
+int dimen cardview_compat_inset_shadow 0x7f07004f
+int dimen cardview_default_elevation 0x7f070050
+int dimen cardview_default_radius 0x7f070051
+int dimen compat_button_inset_horizontal_material 0x7f070052
+int dimen compat_button_inset_vertical_material 0x7f070053
+int dimen compat_button_padding_horizontal_material 0x7f070054
+int dimen compat_button_padding_vertical_material 0x7f070055
+int dimen compat_control_corner_material 0x7f070056
+int dimen compat_notification_large_icon_max_height 0x7f070057
+int dimen compat_notification_large_icon_max_width 0x7f070058
+int dimen design_appbar_elevation 0x7f070059
+int dimen design_bottom_navigation_active_item_max_width 0x7f07005a
+int dimen design_bottom_navigation_active_item_min_width 0x7f07005b
+int dimen design_bottom_navigation_active_text_size 0x7f07005c
+int dimen design_bottom_navigation_elevation 0x7f07005d
+int dimen design_bottom_navigation_height 0x7f07005e
+int dimen design_bottom_navigation_icon_size 0x7f07005f
+int dimen design_bottom_navigation_item_max_width 0x7f070060
+int dimen design_bottom_navigation_item_min_width 0x7f070061
+int dimen design_bottom_navigation_margin 0x7f070062
+int dimen design_bottom_navigation_shadow_height 0x7f070063
+int dimen design_bottom_navigation_text_size 0x7f070064
+int dimen design_bottom_sheet_modal_elevation 0x7f070065
+int dimen design_bottom_sheet_peek_height_min 0x7f070066
+int dimen design_fab_border_width 0x7f070067
+int dimen design_fab_elevation 0x7f070068
+int dimen design_fab_image_size 0x7f070069
+int dimen design_fab_size_mini 0x7f07006a
+int dimen design_fab_size_normal 0x7f07006b
+int dimen design_fab_translation_z_hovered_focused 0x7f07006c
+int dimen design_fab_translation_z_pressed 0x7f07006d
+int dimen design_navigation_elevation 0x7f07006e
+int dimen design_navigation_icon_padding 0x7f07006f
+int dimen design_navigation_icon_size 0x7f070070
+int dimen design_navigation_item_horizontal_padding 0x7f070071
+int dimen design_navigation_item_icon_padding 0x7f070072
+int dimen design_navigation_max_width 0x7f070073
+int dimen design_navigation_padding_bottom 0x7f070074
+int dimen design_navigation_separator_vertical_padding 0x7f070075
+int dimen design_snackbar_action_inline_max_width 0x7f070076
+int dimen design_snackbar_background_corner_radius 0x7f070077
+int dimen design_snackbar_elevation 0x7f070078
+int dimen design_snackbar_extra_spacing_horizontal 0x7f070079
+int dimen design_snackbar_max_width 0x7f07007a
+int dimen design_snackbar_min_width 0x7f07007b
+int dimen design_snackbar_padding_horizontal 0x7f07007c
+int dimen design_snackbar_padding_vertical 0x7f07007d
+int dimen design_snackbar_padding_vertical_2lines 0x7f07007e
+int dimen design_snackbar_text_size 0x7f07007f
+int dimen design_tab_max_width 0x7f070080
+int dimen design_tab_scrollable_min_width 0x7f070081
+int dimen design_tab_text_size 0x7f070082
+int dimen design_tab_text_size_2line 0x7f070083
+int dimen design_textinput_caption_translate_y 0x7f070084
+int dimen dialog_fixed_height_major 0x7f070085
+int dimen dialog_fixed_height_minor 0x7f070086
+int dimen dialog_fixed_width_major 0x7f070087
+int dimen dialog_fixed_width_minor 0x7f070088
+int dimen disabled_alpha_material_dark 0x7f070089
+int dimen disabled_alpha_material_light 0x7f07008a
+int dimen fastscroll_default_thickness 0x7f07008b
+int dimen fastscroll_margin 0x7f07008c
+int dimen fastscroll_minimum_range 0x7f07008d
+int dimen highlight_alpha_material_colored 0x7f07008e
+int dimen highlight_alpha_material_dark 0x7f07008f
+int dimen highlight_alpha_material_light 0x7f070090
+int dimen hint_alpha_material_dark 0x7f070091
+int dimen hint_alpha_material_light 0x7f070092
+int dimen hint_pressed_alpha_material_dark 0x7f070093
+int dimen hint_pressed_alpha_material_light 0x7f070094
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070095
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070096
+int dimen item_touch_helper_swipe_escape_velocity 0x7f070097
+int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f070098
+int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f070099
+int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f07009a
+int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f07009b
+int dimen mtrl_bottomappbar_height 0x7f07009c
+int dimen mtrl_btn_corner_radius 0x7f07009d
+int dimen mtrl_btn_dialog_btn_min_width 0x7f07009e
+int dimen mtrl_btn_disabled_elevation 0x7f07009f
+int dimen mtrl_btn_disabled_z 0x7f0700a0
+int dimen mtrl_btn_elevation 0x7f0700a1
+int dimen mtrl_btn_focused_z 0x7f0700a2
+int dimen mtrl_btn_hovered_z 0x7f0700a3
+int dimen mtrl_btn_icon_btn_padding_left 0x7f0700a4
+int dimen mtrl_btn_icon_padding 0x7f0700a5
+int dimen mtrl_btn_inset 0x7f0700a6
+int dimen mtrl_btn_letter_spacing 0x7f0700a7
+int dimen mtrl_btn_padding_bottom 0x7f0700a8
+int dimen mtrl_btn_padding_left 0x7f0700a9
+int dimen mtrl_btn_padding_right 0x7f0700aa
+int dimen mtrl_btn_padding_top 0x7f0700ab
+int dimen mtrl_btn_pressed_z 0x7f0700ac
+int dimen mtrl_btn_stroke_size 0x7f0700ad
+int dimen mtrl_btn_text_btn_icon_padding 0x7f0700ae
+int dimen mtrl_btn_text_btn_padding_left 0x7f0700af
+int dimen mtrl_btn_text_btn_padding_right 0x7f0700b0
+int dimen mtrl_btn_text_size 0x7f0700b1
+int dimen mtrl_btn_z 0x7f0700b2
+int dimen mtrl_card_elevation 0x7f0700b3
+int dimen mtrl_card_spacing 0x7f0700b4
+int dimen mtrl_chip_pressed_translation_z 0x7f0700b5
+int dimen mtrl_chip_text_size 0x7f0700b6
+int dimen mtrl_fab_elevation 0x7f0700b7
+int dimen mtrl_fab_translation_z_hovered_focused 0x7f0700b8
+int dimen mtrl_fab_translation_z_pressed 0x7f0700b9
+int dimen mtrl_navigation_elevation 0x7f0700ba
+int dimen mtrl_navigation_item_horizontal_padding 0x7f0700bb
+int dimen mtrl_navigation_item_icon_padding 0x7f0700bc
+int dimen mtrl_snackbar_background_corner_radius 0x7f0700bd
+int dimen mtrl_snackbar_margin 0x7f0700be
+int dimen mtrl_textinput_box_bottom_offset 0x7f0700bf
+int dimen mtrl_textinput_box_corner_radius_medium 0x7f0700c0
+int dimen mtrl_textinput_box_corner_radius_small 0x7f0700c1
+int dimen mtrl_textinput_box_label_cutout_padding 0x7f0700c2
+int dimen mtrl_textinput_box_padding_end 0x7f0700c3
+int dimen mtrl_textinput_box_stroke_width_default 0x7f0700c4
+int dimen mtrl_textinput_box_stroke_width_focused 0x7f0700c5
+int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0700c6
+int dimen mtrl_toolbar_default_height 0x7f0700c7
+int dimen notification_action_icon_size 0x7f0700c8
+int dimen notification_action_text_size 0x7f0700c9
+int dimen notification_big_circle_margin 0x7f0700ca
+int dimen notification_content_margin_start 0x7f0700cb
+int dimen notification_large_icon_height 0x7f0700cc
+int dimen notification_large_icon_width 0x7f0700cd
+int dimen notification_main_column_padding_top 0x7f0700ce
+int dimen notification_media_narrow_margin 0x7f0700cf
+int dimen notification_right_icon_size 0x7f0700d0
+int dimen notification_right_side_padding_top 0x7f0700d1
+int dimen notification_small_icon_background_padding 0x7f0700d2
+int dimen notification_small_icon_size_as_large 0x7f0700d3
+int dimen notification_subtext_size 0x7f0700d4
+int dimen notification_top_pad 0x7f0700d5
+int dimen notification_top_pad_large_text 0x7f0700d6
+int dimen tooltip_corner_radius 0x7f0700d7
+int dimen tooltip_horizontal_padding 0x7f0700d8
+int dimen tooltip_margin 0x7f0700d9
+int dimen tooltip_precise_anchor_extra_offset 0x7f0700da
+int dimen tooltip_precise_anchor_threshold 0x7f0700db
+int dimen tooltip_vertical_padding 0x7f0700dc
+int dimen tooltip_y_offset_non_touch 0x7f0700dd
+int dimen tooltip_y_offset_touch 0x7f0700de
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
+int drawable abc_action_bar_item_background_material 0x7f080002
+int drawable abc_btn_borderless_material 0x7f080003
+int drawable abc_btn_check_material 0x7f080004
+int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
+int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
+int drawable abc_btn_colored_material 0x7f080007
+int drawable abc_btn_default_mtrl_shape 0x7f080008
+int drawable abc_btn_radio_material 0x7f080009
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f08000c
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f08000d
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f
+int drawable abc_cab_background_internal_bg 0x7f080010
+int drawable abc_cab_background_top_material 0x7f080011
+int drawable abc_cab_background_top_mtrl_alpha 0x7f080012
+int drawable abc_control_background_material 0x7f080013
+int drawable abc_dialog_material_background 0x7f080014
+int drawable abc_dialog_material_background_dark 0x7f080015
+int drawable abc_dialog_material_background_light 0x7f080016
+int drawable abc_edit_text_material 0x7f080017
+int drawable abc_ic_ab_back_material 0x7f080018
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f080019
+int drawable abc_ic_arrow_drop_right_black_24dp 0x7f08001a
+int drawable abc_ic_clear_material 0x7f08001b
+int drawable abc_ic_clear_mtrl_alpha 0x7f08001c
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f08001d
+int drawable abc_ic_go_search_api_material 0x7f08001e
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f08001f
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080020
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f080021
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f080022
+int drawable abc_ic_menu_overflow_material 0x7f080023
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f080024
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f080025
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f080026
+int drawable abc_ic_search_api_material 0x7f080027
+int drawable abc_ic_search_api_mtrl_alpha 0x7f080028
+int drawable abc_ic_star_black_16dp 0x7f080029
+int drawable abc_ic_star_black_36dp 0x7f08002a
+int drawable abc_ic_star_black_48dp 0x7f08002b
+int drawable abc_ic_star_half_black_16dp 0x7f08002c
+int drawable abc_ic_star_half_black_36dp 0x7f08002d
+int drawable abc_ic_star_half_black_48dp 0x7f08002e
+int drawable abc_ic_voice_search_api_material 0x7f08002f
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f080030
+int drawable abc_item_background_holo_dark 0x7f080031
+int drawable abc_item_background_holo_light 0x7f080032
+int drawable abc_list_divider_material 0x7f080033
+int drawable abc_list_divider_mtrl_alpha 0x7f080034
+int drawable abc_list_focused_holo 0x7f080035
+int drawable abc_list_longpressed_holo 0x7f080036
+int drawable abc_list_pressed_holo_dark 0x7f080037
+int drawable abc_list_pressed_holo_light 0x7f080038
+int drawable abc_list_selector_background_transition_holo_dark 0x7f080039
+int drawable abc_list_selector_background_transition_holo_light 0x7f08003a
+int drawable abc_list_selector_disabled_holo_dark 0x7f08003b
+int drawable abc_list_selector_disabled_holo_light 0x7f08003c
+int drawable abc_list_selector_holo_dark 0x7f08003d
+int drawable abc_list_selector_holo_light 0x7f08003e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f08003f
+int drawable abc_popup_background_mtrl_mult 0x7f080040
+int drawable abc_ratingbar_full_material 0x7f080041
+int drawable abc_ratingbar_indicator_material 0x7f080042
+int drawable abc_ratingbar_material 0x7f080043
+int drawable abc_ratingbar_small_material 0x7f080044
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f080045
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f080046
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f080047
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f080048
+int drawable abc_scrubber_track_mtrl_alpha 0x7f080049
+int drawable abc_seekbar_thumb_material 0x7f08004a
+int drawable abc_seekbar_tick_mark_material 0x7f08004b
+int drawable abc_seekbar_track_material 0x7f08004c
+int drawable abc_spinner_mtrl_am_alpha 0x7f08004d
+int drawable abc_spinner_textfield_background_material 0x7f08004e
+int drawable abc_switch_thumb_material 0x7f08004f
+int drawable abc_switch_track_mtrl_alpha 0x7f080050
+int drawable abc_tab_indicator_material 0x7f080051
+int drawable abc_tab_indicator_mtrl_alpha 0x7f080052
+int drawable abc_text_cursor_material 0x7f080053
+int drawable abc_text_select_handle_left_mtrl_dark 0x7f080054
+int drawable abc_text_select_handle_left_mtrl_light 0x7f080055
+int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080056
+int drawable abc_text_select_handle_middle_mtrl_light 0x7f080057
+int drawable abc_text_select_handle_right_mtrl_dark 0x7f080058
+int drawable abc_text_select_handle_right_mtrl_light 0x7f080059
+int drawable abc_textfield_activated_mtrl_alpha 0x7f08005a
+int drawable abc_textfield_default_mtrl_alpha 0x7f08005b
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f08005c
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f08005d
+int drawable abc_textfield_search_material 0x7f08005e
+int drawable abc_vector_test 0x7f08005f
+int drawable avd_hide_password 0x7f080060
+int drawable avd_show_password 0x7f080061
+int drawable design_bottom_navigation_item_background 0x7f080062
+int drawable design_fab_background 0x7f080063
+int drawable design_ic_visibility 0x7f080064
+int drawable design_ic_visibility_off 0x7f080065
+int drawable design_password_eye 0x7f080066
+int drawable design_snackbar_background 0x7f080067
+int drawable ic_mtrl_chip_checked_black 0x7f080068
+int drawable ic_mtrl_chip_checked_circle 0x7f080069
+int drawable ic_mtrl_chip_close_circle 0x7f08006a
+int drawable mtrl_snackbar_background 0x7f08006b
+int drawable mtrl_tabs_default_indicator 0x7f08006c
+int drawable navigation_empty_icon 0x7f08006d
+int drawable notification_action_background 0x7f08006e
+int drawable notification_bg 0x7f08006f
+int drawable notification_bg_low 0x7f080070
+int drawable notification_bg_low_normal 0x7f080071
+int drawable notification_bg_low_pressed 0x7f080072
+int drawable notification_bg_normal 0x7f080073
+int drawable notification_bg_normal_pressed 0x7f080074
+int drawable notification_icon_background 0x7f080075
+int drawable notification_template_icon_bg 0x7f080076
+int drawable notification_template_icon_low_bg 0x7f080077
+int drawable notification_tile_bg 0x7f080078
+int drawable notify_panel_notification_icon_bg 0x7f080079
+int drawable tooltip_frame_dark 0x7f08007a
+int drawable tooltip_frame_light 0x7f08007b
+int id action0 0x7f0b0001
+int id action_bar 0x7f0b0002
+int id action_bar_activity_content 0x7f0b0003
+int id action_bar_container 0x7f0b0004
+int id action_bar_root 0x7f0b0005
+int id action_bar_spinner 0x7f0b0006
+int id action_bar_subtitle 0x7f0b0007
+int id action_bar_title 0x7f0b0008
+int id action_container 0x7f0b0009
+int id action_context_bar 0x7f0b000a
+int id action_divider 0x7f0b000b
+int id action_image 0x7f0b000c
+int id action_menu_divider 0x7f0b000d
+int id action_menu_presenter 0x7f0b000e
+int id action_mode_bar 0x7f0b000f
+int id action_mode_bar_stub 0x7f0b0010
+int id action_mode_close_button 0x7f0b0011
+int id action_text 0x7f0b0012
+int id actions 0x7f0b0013
+int id activity_chooser_view_content 0x7f0b0014
+int id add 0x7f0b0015
+int id alertTitle 0x7f0b0016
+int id always 0x7f0b0017
+int id any 0x7f0b0018
+int id async 0x7f0b0019
+int id auto 0x7f0b001a
+int id back 0x7f0b001b
+int id beginning 0x7f0b001c
+int id blink_view 0x7f0b001d
+int id blocking 0x7f0b001e
+int id bottom 0x7f0b001f
+int id buttonPanel 0x7f0b0020
+int id cancel_action 0x7f0b0021
+int id catalyst_redbox_title 0x7f0b0022
+int id center 0x7f0b0023
+int id centerCrop 0x7f0b0024
+int id centerInside 0x7f0b0025
+int id checkbox 0x7f0b0026
+int id chronometer 0x7f0b0027
+int id collapseActionView 0x7f0b0028
+int id container 0x7f0b0029
+int id content 0x7f0b002a
+int id contentPanel 0x7f0b002b
+int id coordinator 0x7f0b002c
+int id custom 0x7f0b002d
+int id customPanel 0x7f0b002e
+int id decor_content_parent 0x7f0b002f
+int id default_activity_button 0x7f0b0030
+int id design_bottom_sheet 0x7f0b0031
+int id design_menu_item_action_area 0x7f0b0032
+int id design_menu_item_action_area_stub 0x7f0b0033
+int id design_menu_item_text 0x7f0b0034
+int id design_navigation_view 0x7f0b0035
+int id disableHome 0x7f0b0036
+int id edit_query 0x7f0b0037
+int id end 0x7f0b0038
+int id end_padder 0x7f0b0039
+int id expand_activities_button 0x7f0b003a
+int id expanded_menu 0x7f0b003b
+int id fill 0x7f0b003c
+int id filled 0x7f0b003d
+int id fitCenter 0x7f0b003e
+int id fitEnd 0x7f0b003f
+int id fitStart 0x7f0b0040
+int id fitXY 0x7f0b0041
+int id fixed 0x7f0b0042
+int id focusCrop 0x7f0b0043
+int id forever 0x7f0b0044
+int id fps_text 0x7f0b0045
+int id front 0x7f0b0046
+int id ghost_view 0x7f0b0047
+int id group_divider 0x7f0b0048
+int id home 0x7f0b0049
+int id homeAsUp 0x7f0b004a
+int id hud 0x7f0b004b
+int id icon 0x7f0b004c
+int id icon_group 0x7f0b004d
+int id ifRoom 0x7f0b004e
+int id image 0x7f0b004f
+int id info 0x7f0b0050
+int id italic 0x7f0b0051
+int id item_touch_helper_previous_elevation 0x7f0b0052
+int id labeled 0x7f0b0053
+int id largeLabel 0x7f0b0054
+int id left 0x7f0b0055
+int id line1 0x7f0b0056
+int id line3 0x7f0b0057
+int id listMode 0x7f0b0058
+int id list_item 0x7f0b0059
+int id masked 0x7f0b005a
+int id media_actions 0x7f0b005b
+int id message 0x7f0b005c
+int id middle 0x7f0b005d
+int id mini 0x7f0b005e
+int id mtrl_child_content_container 0x7f0b005f
+int id mtrl_internal_children_alpha_tag 0x7f0b0060
+int id multiply 0x7f0b0061
+int id navigation_header_container 0x7f0b0062
+int id never 0x7f0b0063
+int id none 0x7f0b0064
+int id normal 0x7f0b0065
+int id notification_background 0x7f0b0066
+int id notification_main_column 0x7f0b0067
+int id notification_main_column_container 0x7f0b0068
+int id outline 0x7f0b0069
+int id parallax 0x7f0b006a
+int id parentPanel 0x7f0b006b
+int id parent_matrix 0x7f0b006c
+int id pin 0x7f0b006d
+int id progress_circular 0x7f0b006e
+int id progress_horizontal 0x7f0b006f
+int id radio 0x7f0b0070
+int id right 0x7f0b0071
+int id right_icon 0x7f0b0072
+int id right_side 0x7f0b0073
+int id rn_frame_file 0x7f0b0074
+int id rn_frame_method 0x7f0b0075
+int id rn_redbox_reloadjs 0x7f0b0076
+int id rn_redbox_stack 0x7f0b0077
+int id save_image_matrix 0x7f0b0078
+int id save_non_transition_alpha 0x7f0b0079
+int id save_scale_type 0x7f0b007a
+int id scannedAnimation 0x7f0b007b
+int id screen 0x7f0b007c
+int id scrollIndicatorDown 0x7f0b007d
+int id scrollIndicatorUp 0x7f0b007e
+int id scrollView 0x7f0b007f
+int id scrollable 0x7f0b0080
+int id search_badge 0x7f0b0081
+int id search_bar 0x7f0b0082
+int id search_button 0x7f0b0083
+int id search_close_btn 0x7f0b0084
+int id search_edit_frame 0x7f0b0085
+int id search_go_btn 0x7f0b0086
+int id search_mag_icon 0x7f0b0087
+int id search_plate 0x7f0b0088
+int id search_src_text 0x7f0b0089
+int id search_voice_btn 0x7f0b008a
+int id select_dialog_listview 0x7f0b008b
+int id selected 0x7f0b008c
+int id shortcut 0x7f0b008d
+int id showCustom 0x7f0b008e
+int id showHome 0x7f0b008f
+int id showTitle 0x7f0b0090
+int id smallLabel 0x7f0b0091
+int id snackbar_action 0x7f0b0092
+int id snackbar_text 0x7f0b0093
+int id spacer 0x7f0b0094
+int id split_action_bar 0x7f0b0095
+int id src_atop 0x7f0b0096
+int id src_in 0x7f0b0097
+int id src_over 0x7f0b0098
+int id start 0x7f0b0099
+int id status_bar_latest_event_content 0x7f0b009a
+int id stretch 0x7f0b009b
+int id submenuarrow 0x7f0b009c
+int id submit_area 0x7f0b009d
+int id surfaceView 0x7f0b009e
+int id tabMode 0x7f0b009f
+int id tag_transition_group 0x7f0b00a0
+int id tag_unhandled_key_event_manager 0x7f0b00a1
+int id tag_unhandled_key_listeners 0x7f0b00a2
+int id text 0x7f0b00a3
+int id text2 0x7f0b00a4
+int id textSpacerNoButtons 0x7f0b00a5
+int id textSpacerNoTitle 0x7f0b00a6
+int id text_input_password_toggle 0x7f0b00a7
+int id textinput_counter 0x7f0b00a8
+int id textinput_error 0x7f0b00a9
+int id textinput_helper_text 0x7f0b00aa
+int id time 0x7f0b00ab
+int id title 0x7f0b00ac
+int id titleDividerNoCustom 0x7f0b00ad
+int id title_template 0x7f0b00ae
+int id top 0x7f0b00af
+int id topPanel 0x7f0b00b0
+int id touch_outside 0x7f0b00b1
+int id transition_current_scene 0x7f0b00b2
+int id transition_layout_save 0x7f0b00b3
+int id transition_position 0x7f0b00b4
+int id transition_scene_layoutid_cache 0x7f0b00b5
+int id transition_transform 0x7f0b00b6
+int id uniform 0x7f0b00b7
+int id unlabeled 0x7f0b00b8
+int id up 0x7f0b00b9
+int id useLogo 0x7f0b00ba
+int id view_offset_helper 0x7f0b00bb
+int id visible 0x7f0b00bc
+int id wait_spinner 0x7f0b00bd
+int id withText 0x7f0b00be
+int id wrap_content 0x7f0b00bf
+int integer abc_config_activityDefaultDur 0x7f0c0001
+int integer abc_config_activityShortDur 0x7f0c0002
+int integer abc_max_action_buttons 0x7f0c0003
+int integer app_bar_elevation_anim_duration 0x7f0c0004
+int integer bottom_sheet_slide_duration 0x7f0c0005
+int integer cancel_button_image_alpha 0x7f0c0006
+int integer config_tooltipAnimTime 0x7f0c0007
+int integer design_snackbar_text_max_lines 0x7f0c0008
+int integer design_tab_indicator_anim_duration_ms 0x7f0c0009
+int integer hide_password_duration 0x7f0c000a
+int integer mtrl_btn_anim_delay_ms 0x7f0c000b
+int integer mtrl_btn_anim_duration_ms 0x7f0c000c
+int integer mtrl_chip_anim_duration 0x7f0c000d
+int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c000e
+int integer show_password_duration 0x7f0c000f
+int integer status_bar_notification_info_maxnum 0x7f0c0010
+int interpolator mtrl_fast_out_linear_in 0x7f0d0001
+int interpolator mtrl_fast_out_slow_in 0x7f0d0002
+int interpolator mtrl_linear 0x7f0d0003
+int interpolator mtrl_linear_out_slow_in 0x7f0d0004
+int layout abc_action_bar_title_item 0x7f0e0001
+int layout abc_action_bar_up_container 0x7f0e0002
+int layout abc_action_bar_view_list_nav_layout 0x7f0e0003
+int layout abc_action_menu_item_layout 0x7f0e0004
+int layout abc_action_menu_layout 0x7f0e0005
+int layout abc_action_mode_bar 0x7f0e0006
+int layout abc_action_mode_close_item_material 0x7f0e0007
+int layout abc_activity_chooser_view 0x7f0e0008
+int layout abc_activity_chooser_view_list_item 0x7f0e0009
+int layout abc_alert_dialog_button_bar_material 0x7f0e000a
+int layout abc_alert_dialog_material 0x7f0e000b
+int layout abc_alert_dialog_title_material 0x7f0e000c
+int layout abc_cascading_menu_item_layout 0x7f0e000d
+int layout abc_dialog_title_material 0x7f0e000e
+int layout abc_expanded_menu_layout 0x7f0e000f
+int layout abc_list_menu_item_checkbox 0x7f0e0010
+int layout abc_list_menu_item_icon 0x7f0e0011
+int layout abc_list_menu_item_layout 0x7f0e0012
+int layout abc_list_menu_item_radio 0x7f0e0013
+int layout abc_popup_menu_header_item_layout 0x7f0e0014
+int layout abc_popup_menu_item_layout 0x7f0e0015
+int layout abc_screen_content_include 0x7f0e0016
+int layout abc_screen_simple 0x7f0e0017
+int layout abc_screen_simple_overlay_action_mode 0x7f0e0018
+int layout abc_screen_toolbar 0x7f0e0019
+int layout abc_search_dropdown_item_icons_2line 0x7f0e001a
+int layout abc_search_view 0x7f0e001b
+int layout abc_select_dialog_material 0x7f0e001c
+int layout abc_tooltip 0x7f0e001d
+int layout activity_open_note_scanner 0x7f0e001e
+int layout design_bottom_navigation_item 0x7f0e001f
+int layout design_bottom_sheet_dialog 0x7f0e0020
+int layout design_layout_snackbar 0x7f0e0021
+int layout design_layout_snackbar_include 0x7f0e0022
+int layout design_layout_tab_icon 0x7f0e0023
+int layout design_layout_tab_text 0x7f0e0024
+int layout design_menu_item_action_area 0x7f0e0025
+int layout design_navigation_item 0x7f0e0026
+int layout design_navigation_item_header 0x7f0e0027
+int layout design_navigation_item_separator 0x7f0e0028
+int layout design_navigation_item_subheader 0x7f0e0029
+int layout design_navigation_menu 0x7f0e002a
+int layout design_navigation_menu_item 0x7f0e002b
+int layout design_text_input_password_icon 0x7f0e002c
+int layout fps_view 0x7f0e002d
+int layout mtrl_layout_snackbar 0x7f0e002e
+int layout mtrl_layout_snackbar_include 0x7f0e002f
+int layout notification_action 0x7f0e0030
+int layout notification_action_tombstone 0x7f0e0031
+int layout notification_media_action 0x7f0e0032
+int layout notification_media_cancel_action 0x7f0e0033
+int layout notification_template_big_media 0x7f0e0034
+int layout notification_template_big_media_narrow 0x7f0e0035
+int layout notification_template_custom_big 0x7f0e0036
+int layout notification_template_icon_group 0x7f0e0037
+int layout notification_template_lines 0x7f0e0038
+int layout notification_template_media 0x7f0e0039
+int layout notification_template_part_chronometer 0x7f0e003a
+int layout notification_template_part_time 0x7f0e003b
+int layout redbox_item_frame 0x7f0e003c
+int layout redbox_item_title 0x7f0e003d
+int layout redbox_view 0x7f0e003e
+int layout select_dialog_item_material 0x7f0e003f
+int layout select_dialog_multichoice_material 0x7f0e0040
+int layout select_dialog_singlechoice_material 0x7f0e0041
+int layout support_simple_spinner_dropdown_item 0x7f0e0042
+int string abc_action_bar_home_description 0x7f140001
+int string abc_action_bar_home_description_format 0x7f140002
+int string abc_action_bar_home_subtitle_description_format 0x7f140003
+int string abc_action_bar_up_description 0x7f140004
+int string abc_action_menu_overflow_description 0x7f140005
+int string abc_action_mode_done 0x7f140006
+int string abc_activity_chooser_view_see_all 0x7f140007
+int string abc_activitychooserview_choose_application 0x7f140008
+int string abc_capital_off 0x7f140009
+int string abc_capital_on 0x7f14000a
+int string abc_font_family_body_1_material 0x7f14000b
+int string abc_font_family_body_2_material 0x7f14000c
+int string abc_font_family_button_material 0x7f14000d
+int string abc_font_family_caption_material 0x7f14000e
+int string abc_font_family_display_1_material 0x7f14000f
+int string abc_font_family_display_2_material 0x7f140010
+int string abc_font_family_display_3_material 0x7f140011
+int string abc_font_family_display_4_material 0x7f140012
+int string abc_font_family_headline_material 0x7f140013
+int string abc_font_family_menu_material 0x7f140014
+int string abc_font_family_subhead_material 0x7f140015
+int string abc_font_family_title_material 0x7f140016
+int string abc_menu_alt_shortcut_label 0x7f140017
+int string abc_menu_ctrl_shortcut_label 0x7f140018
+int string abc_menu_delete_shortcut_label 0x7f140019
+int string abc_menu_enter_shortcut_label 0x7f14001a
+int string abc_menu_function_shortcut_label 0x7f14001b
+int string abc_menu_meta_shortcut_label 0x7f14001c
+int string abc_menu_shift_shortcut_label 0x7f14001d
+int string abc_menu_space_shortcut_label 0x7f14001e
+int string abc_menu_sym_shortcut_label 0x7f14001f
+int string abc_prepend_shortcut_label 0x7f140020
+int string abc_search_hint 0x7f140021
+int string abc_searchview_description_clear 0x7f140022
+int string abc_searchview_description_query 0x7f140023
+int string abc_searchview_description_search 0x7f140024
+int string abc_searchview_description_submit 0x7f140025
+int string abc_searchview_description_voice 0x7f140026
+int string abc_shareactionprovider_share_with 0x7f140027
+int string abc_shareactionprovider_share_with_application 0x7f140028
+int string abc_toolbar_collapse_description 0x7f140029
+int string app_name 0x7f14002a
+int string appbar_scrolling_view_behavior 0x7f14002b
+int string bottom_sheet_behavior 0x7f14002c
+int string catalyst_debugjs 0x7f14002d
+int string catalyst_debugjs_off 0x7f14002e
+int string catalyst_element_inspector 0x7f14002f
+int string catalyst_element_inspector_off 0x7f140030
+int string catalyst_hot_module_replacement 0x7f140031
+int string catalyst_hot_module_replacement_off 0x7f140032
+int string catalyst_jsload_error 0x7f140033
+int string catalyst_jsload_message 0x7f140034
+int string catalyst_jsload_title 0x7f140035
+int string catalyst_live_reload 0x7f140036
+int string catalyst_live_reload_off 0x7f140037
+int string catalyst_perf_monitor 0x7f140038
+int string catalyst_perf_monitor_off 0x7f140039
+int string catalyst_reloadjs 0x7f14003a
+int string catalyst_remotedbg_error 0x7f14003b
+int string catalyst_remotedbg_message 0x7f14003c
+int string catalyst_settings 0x7f14003d
+int string catalyst_settings_title 0x7f14003e
+int string catalyst_start_profile 0x7f14003f
+int string catalyst_stop_profile 0x7f140040
+int string character_counter_content_description 0x7f140041
+int string character_counter_pattern 0x7f140042
+int string fab_transformation_scrim_behavior 0x7f140043
+int string fab_transformation_sheet_behavior 0x7f140044
+int string hide_bottom_view_on_scroll_behavior 0x7f140045
+int string mtrl_chip_close_icon_content_description 0x7f140046
+int string password_toggle_content_description 0x7f140047
+int string path_password_eye 0x7f140048
+int string path_password_eye_mask_strike_through 0x7f140049
+int string path_password_eye_mask_visible 0x7f14004a
+int string path_password_strike_through 0x7f14004b
+int string search_menu_title 0x7f14004c
+int string status_bar_notification_info_overflow 0x7f14004d
+int style AlertDialog_AppCompat 0x7f150001
+int style AlertDialog_AppCompat_Light 0x7f150002
+int style Animation_AppCompat_Dialog 0x7f150003
+int style Animation_AppCompat_DropDownUp 0x7f150004
+int style Animation_AppCompat_Tooltip 0x7f150005
+int style Animation_Catalyst_RedBox 0x7f150006
+int style Animation_Design_BottomSheetDialog 0x7f150007
+int style Base_AlertDialog_AppCompat 0x7f150008
+int style Base_AlertDialog_AppCompat_Light 0x7f150009
+int style Base_Animation_AppCompat_Dialog 0x7f15000a
+int style Base_Animation_AppCompat_DropDownUp 0x7f15000b
+int style Base_Animation_AppCompat_Tooltip 0x7f15000c
+int style Base_CardView 0x7f15000d
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000e
+int style Base_DialogWindowTitle_AppCompat 0x7f15000f
+int style Base_TextAppearance_AppCompat 0x7f150010
+int style Base_TextAppearance_AppCompat_Body1 0x7f150011
+int style Base_TextAppearance_AppCompat_Body2 0x7f150012
+int style Base_TextAppearance_AppCompat_Button 0x7f150013
+int style Base_TextAppearance_AppCompat_Caption 0x7f150014
+int style Base_TextAppearance_AppCompat_Display1 0x7f150015
+int style Base_TextAppearance_AppCompat_Display2 0x7f150016
+int style Base_TextAppearance_AppCompat_Display3 0x7f150017
+int style Base_TextAppearance_AppCompat_Display4 0x7f150018
+int style Base_TextAppearance_AppCompat_Headline 0x7f150019
+int style Base_TextAppearance_AppCompat_Inverse 0x7f15001a
+int style Base_TextAppearance_AppCompat_Large 0x7f15001b
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001c
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001d
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001e
+int style Base_TextAppearance_AppCompat_Medium 0x7f15001f
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150020
+int style Base_TextAppearance_AppCompat_Menu 0x7f150021
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f150022
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150023
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150024
+int style Base_TextAppearance_AppCompat_Small 0x7f150025
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150026
+int style Base_TextAppearance_AppCompat_Subhead 0x7f150027
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150028
+int style Base_TextAppearance_AppCompat_Title 0x7f150029
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f15002a
+int style Base_TextAppearance_AppCompat_Tooltip 0x7f15002b
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002c
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002d
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002e
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002f
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150030
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150031
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150032
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150033
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150034
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150035
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150036
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150037
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150038
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150039
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15003a
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f15003b
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003c
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003d
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003e
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003f
+int style Base_ThemeOverlay_AppCompat 0x7f150040
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150041
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f150042
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150043
+int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150044
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150045
+int style Base_ThemeOverlay_AppCompat_Light 0x7f150046
+int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150047
+int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150048
+int style Base_Theme_AppCompat 0x7f150049
+int style Base_Theme_AppCompat_CompactMenu 0x7f15004a
+int style Base_Theme_AppCompat_Dialog 0x7f15004b
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f15004c
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f15004d
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004e
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004f
+int style Base_Theme_AppCompat_Light 0x7f150050
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f150051
+int style Base_Theme_AppCompat_Light_Dialog 0x7f150052
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150053
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150054
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150055
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150056
+int style Base_Theme_MaterialComponents 0x7f150057
+int style Base_Theme_MaterialComponents_Bridge 0x7f150058
+int style Base_Theme_MaterialComponents_CompactMenu 0x7f150059
+int style Base_Theme_MaterialComponents_Dialog 0x7f15005a
+int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f15005b
+int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f15005c
+int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15005d
+int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15005e
+int style Base_Theme_MaterialComponents_Light 0x7f15005f
+int style Base_Theme_MaterialComponents_Light_Bridge 0x7f150060
+int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f150061
+int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150062
+int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150063
+int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150064
+int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150065
+int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150066
+int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150067
+int style Base_V11_Theme_AppCompat_Dialog 0x7f150068
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f150069
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f15006a
+int style Base_V12_Widget_AppCompat_EditText 0x7f15006b
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f15006c
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f15006d
+int style Base_V14_Theme_MaterialComponents 0x7f15006e
+int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15006f
+int style Base_V14_Theme_MaterialComponents_Dialog 0x7f150070
+int style Base_V14_Theme_MaterialComponents_Light 0x7f150071
+int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f150072
+int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150073
+int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150074
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150075
+int style Base_V21_Theme_AppCompat 0x7f150076
+int style Base_V21_Theme_AppCompat_Dialog 0x7f150077
+int style Base_V21_Theme_AppCompat_Light 0x7f150078
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150079
+int style Base_V22_Theme_AppCompat 0x7f15007a
+int style Base_V22_Theme_AppCompat_Light 0x7f15007b
+int style Base_V23_Theme_AppCompat 0x7f15007c
+int style Base_V23_Theme_AppCompat_Light 0x7f15007d
+int style Base_V26_Theme_AppCompat 0x7f15007e
+int style Base_V26_Theme_AppCompat_Light 0x7f15007f
+int style Base_V26_Widget_AppCompat_Toolbar 0x7f150080
+int style Base_V28_Theme_AppCompat 0x7f150081
+int style Base_V28_Theme_AppCompat_Light 0x7f150082
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150083
+int style Base_V7_Theme_AppCompat 0x7f150084
+int style Base_V7_Theme_AppCompat_Dialog 0x7f150085
+int style Base_V7_Theme_AppCompat_Light 0x7f150086
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150087
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150088
+int style Base_V7_Widget_AppCompat_EditText 0x7f150089
+int style Base_V7_Widget_AppCompat_Toolbar 0x7f15008a
+int style Base_Widget_AppCompat_ActionBar 0x7f15008b
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15008c
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15008d
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15008e
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15008f
+int style Base_Widget_AppCompat_ActionButton 0x7f150090
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f150091
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150092
+int style Base_Widget_AppCompat_ActionMode 0x7f150093
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f150094
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150095
+int style Base_Widget_AppCompat_Button 0x7f150096
+int style Base_Widget_AppCompat_ButtonBar 0x7f150097
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150098
+int style Base_Widget_AppCompat_Button_Borderless 0x7f150099
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f15009a
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15009b
+int style Base_Widget_AppCompat_Button_Colored 0x7f15009c
+int style Base_Widget_AppCompat_Button_Small 0x7f15009d
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15009e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15009f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500a0
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500a1
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500a2
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500a3
+int style Base_Widget_AppCompat_EditText 0x7f1500a4
+int style Base_Widget_AppCompat_ImageButton 0x7f1500a5
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500a6
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500a7
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500a8
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500a9
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500aa
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500ab
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500ac
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500ad
+int style Base_Widget_AppCompat_ListMenuView 0x7f1500ae
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500af
+int style Base_Widget_AppCompat_ListView 0x7f1500b0
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500b1
+int style Base_Widget_AppCompat_ListView_Menu 0x7f1500b2
+int style Base_Widget_AppCompat_PopupMenu 0x7f1500b3
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500b4
+int style Base_Widget_AppCompat_PopupWindow 0x7f1500b5
+int style Base_Widget_AppCompat_ProgressBar 0x7f1500b6
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500b7
+int style Base_Widget_AppCompat_RatingBar 0x7f1500b8
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500b9
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ba
+int style Base_Widget_AppCompat_SearchView 0x7f1500bb
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500bc
+int style Base_Widget_AppCompat_SeekBar 0x7f1500bd
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500be
+int style Base_Widget_AppCompat_Spinner 0x7f1500bf
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500c0
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500c1
+int style Base_Widget_AppCompat_Toolbar 0x7f1500c2
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500c3
+int style Base_Widget_Design_TabLayout 0x7f1500c4
+int style Base_Widget_MaterialComponents_Chip 0x7f1500c5
+int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500c6
+int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500c7
+int style CardView 0x7f1500c8
+int style CardView_Dark 0x7f1500c9
+int style CardView_Light 0x7f1500ca
+int style Platform_AppCompat 0x7f1500cb
+int style Platform_AppCompat_Light 0x7f1500cc
+int style Platform_MaterialComponents 0x7f1500cd
+int style Platform_MaterialComponents_Dialog 0x7f1500ce
+int style Platform_MaterialComponents_Light 0x7f1500cf
+int style Platform_MaterialComponents_Light_Dialog 0x7f1500d0
+int style Platform_ThemeOverlay_AppCompat 0x7f1500d1
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500d2
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500d3
+int style Platform_V11_AppCompat 0x7f1500d4
+int style Platform_V11_AppCompat_Light 0x7f1500d5
+int style Platform_V14_AppCompat 0x7f1500d6
+int style Platform_V14_AppCompat_Light 0x7f1500d7
+int style Platform_V21_AppCompat 0x7f1500d8
+int style Platform_V21_AppCompat_Light 0x7f1500d9
+int style Platform_V25_AppCompat 0x7f1500da
+int style Platform_V25_AppCompat_Light 0x7f1500db
+int style Platform_Widget_AppCompat_Spinner 0x7f1500dc
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500dd
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500de
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500df
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500e0
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500e1
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500e2
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500e3
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500e4
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500e5
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500e6
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500e7
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500e8
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500e9
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500ea
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500eb
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500ec
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500ed
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500ee
+int style TextAppearance_AppCompat 0x7f1500ef
+int style TextAppearance_AppCompat_Body1 0x7f1500f0
+int style TextAppearance_AppCompat_Body2 0x7f1500f1
+int style TextAppearance_AppCompat_Button 0x7f1500f2
+int style TextAppearance_AppCompat_Caption 0x7f1500f3
+int style TextAppearance_AppCompat_Display1 0x7f1500f4
+int style TextAppearance_AppCompat_Display2 0x7f1500f5
+int style TextAppearance_AppCompat_Display3 0x7f1500f6
+int style TextAppearance_AppCompat_Display4 0x7f1500f7
+int style TextAppearance_AppCompat_Headline 0x7f1500f8
+int style TextAppearance_AppCompat_Inverse 0x7f1500f9
+int style TextAppearance_AppCompat_Large 0x7f1500fa
+int style TextAppearance_AppCompat_Large_Inverse 0x7f1500fb
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500fc
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500fd
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500fe
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500ff
+int style TextAppearance_AppCompat_Medium 0x7f150100
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f150101
+int style TextAppearance_AppCompat_Menu 0x7f150102
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150103
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f150104
+int style TextAppearance_AppCompat_Small 0x7f150105
+int style TextAppearance_AppCompat_Small_Inverse 0x7f150106
+int style TextAppearance_AppCompat_Subhead 0x7f150107
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150108
+int style TextAppearance_AppCompat_Title 0x7f150109
+int style TextAppearance_AppCompat_Title_Inverse 0x7f15010a
+int style TextAppearance_AppCompat_Tooltip 0x7f15010b
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15010c
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15010d
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15010e
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15010f
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150110
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150111
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f150112
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150113
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150114
+int style TextAppearance_AppCompat_Widget_Button 0x7f150115
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150116
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150117
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150118
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150119
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15011a
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15011b
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15011c
+int style TextAppearance_AppCompat_Widget_Switch 0x7f15011d
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15011e
+int style TextAppearance_Compat_Notification 0x7f15011f
+int style TextAppearance_Compat_Notification_Info 0x7f150120
+int style TextAppearance_Compat_Notification_Line2 0x7f150121
+int style TextAppearance_Compat_Notification_Time 0x7f150122
+int style TextAppearance_Compat_Notification_Title 0x7f150123
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150124
+int style TextAppearance_Design_Counter 0x7f150125
+int style TextAppearance_Design_Counter_Overflow 0x7f150126
+int style TextAppearance_Design_Error 0x7f150127
+int style TextAppearance_Design_HelperText 0x7f150128
+int style TextAppearance_Design_Hint 0x7f150129
+int style TextAppearance_Design_Snackbar_Message 0x7f15012a
+int style TextAppearance_Design_Tab 0x7f15012b
+int style TextAppearance_MaterialComponents_Body1 0x7f15012c
+int style TextAppearance_MaterialComponents_Body2 0x7f15012d
+int style TextAppearance_MaterialComponents_Button 0x7f15012e
+int style TextAppearance_MaterialComponents_Caption 0x7f15012f
+int style TextAppearance_MaterialComponents_Chip 0x7f150130
+int style TextAppearance_MaterialComponents_Headline1 0x7f150131
+int style TextAppearance_MaterialComponents_Headline2 0x7f150132
+int style TextAppearance_MaterialComponents_Headline3 0x7f150133
+int style TextAppearance_MaterialComponents_Headline4 0x7f150134
+int style TextAppearance_MaterialComponents_Headline5 0x7f150135
+int style TextAppearance_MaterialComponents_Headline6 0x7f150136
+int style TextAppearance_MaterialComponents_Overline 0x7f150137
+int style TextAppearance_MaterialComponents_Subtitle1 0x7f150138
+int style TextAppearance_MaterialComponents_Subtitle2 0x7f150139
+int style TextAppearance_MaterialComponents_Tab 0x7f15013a
+int style TextAppearance_StatusBar_EventContent 0x7f15013b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f15013c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f15013d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f15013e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f15013f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150140
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150141
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150142
+int style Theme 0x7f150143
+int style ThemeOverlay_AppCompat 0x7f150144
+int style ThemeOverlay_AppCompat_ActionBar 0x7f150145
+int style ThemeOverlay_AppCompat_Dark 0x7f150146
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150147
+int style ThemeOverlay_AppCompat_Dialog 0x7f150148
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150149
+int style ThemeOverlay_AppCompat_Light 0x7f15014a
+int style ThemeOverlay_MaterialComponents 0x7f15014b
+int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15014c
+int style ThemeOverlay_MaterialComponents_Dark 0x7f15014d
+int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f15014e
+int style ThemeOverlay_MaterialComponents_Dialog 0x7f15014f
+int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150150
+int style ThemeOverlay_MaterialComponents_Light 0x7f150151
+int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f150152
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f150153
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f150154
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f150155
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f150156
+int style Theme_AppCompat 0x7f150157
+int style Theme_AppCompat_CompactMenu 0x7f150158
+int style Theme_AppCompat_DayNight 0x7f150159
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15015a
+int style Theme_AppCompat_DayNight_Dialog 0x7f15015b
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f15015c
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15015d
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15015e
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f15015f
+int style Theme_AppCompat_Dialog 0x7f150160
+int style Theme_AppCompat_DialogWhenLarge 0x7f150161
+int style Theme_AppCompat_Dialog_Alert 0x7f150162
+int style Theme_AppCompat_Dialog_MinWidth 0x7f150163
+int style Theme_AppCompat_Light 0x7f150164
+int style Theme_AppCompat_Light_DarkActionBar 0x7f150165
+int style Theme_AppCompat_Light_Dialog 0x7f150166
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150167
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f150168
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150169
+int style Theme_AppCompat_Light_NoActionBar 0x7f15016a
+int style Theme_AppCompat_NoActionBar 0x7f15016b
+int style Theme_Catalyst 0x7f15016c
+int style Theme_Catalyst_RedBox 0x7f15016d
+int style Theme_Design 0x7f15016e
+int style Theme_Design_BottomSheetDialog 0x7f15016f
+int style Theme_Design_Light 0x7f150170
+int style Theme_Design_Light_BottomSheetDialog 0x7f150171
+int style Theme_Design_Light_NoActionBar 0x7f150172
+int style Theme_Design_NoActionBar 0x7f150173
+int style Theme_MaterialComponents 0x7f150174
+int style Theme_MaterialComponents_BottomSheetDialog 0x7f150175
+int style Theme_MaterialComponents_Bridge 0x7f150176
+int style Theme_MaterialComponents_CompactMenu 0x7f150177
+int style Theme_MaterialComponents_Dialog 0x7f150178
+int style Theme_MaterialComponents_DialogWhenLarge 0x7f150179
+int style Theme_MaterialComponents_Dialog_Alert 0x7f15017a
+int style Theme_MaterialComponents_Dialog_MinWidth 0x7f15017b
+int style Theme_MaterialComponents_Light 0x7f15017c
+int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f15017d
+int style Theme_MaterialComponents_Light_Bridge 0x7f15017e
+int style Theme_MaterialComponents_Light_DarkActionBar 0x7f15017f
+int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150180
+int style Theme_MaterialComponents_Light_Dialog 0x7f150181
+int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150182
+int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150183
+int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150184
+int style Theme_MaterialComponents_Light_NoActionBar 0x7f150185
+int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f150186
+int style Theme_MaterialComponents_NoActionBar 0x7f150187
+int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f150188
+int style Theme_ReactNative_AppCompat_Light 0x7f150189
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f15018a
+int style Widget_AppCompat_ActionBar 0x7f15018b
+int style Widget_AppCompat_ActionBar_Solid 0x7f15018c
+int style Widget_AppCompat_ActionBar_TabBar 0x7f15018d
+int style Widget_AppCompat_ActionBar_TabText 0x7f15018e
+int style Widget_AppCompat_ActionBar_TabView 0x7f15018f
+int style Widget_AppCompat_ActionButton 0x7f150190
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f150191
+int style Widget_AppCompat_ActionButton_Overflow 0x7f150192
+int style Widget_AppCompat_ActionMode 0x7f150193
+int style Widget_AppCompat_ActivityChooserView 0x7f150194
+int style Widget_AppCompat_AutoCompleteTextView 0x7f150195
+int style Widget_AppCompat_Button 0x7f150196
+int style Widget_AppCompat_ButtonBar 0x7f150197
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150198
+int style Widget_AppCompat_Button_Borderless 0x7f150199
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f15019a
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15019b
+int style Widget_AppCompat_Button_Colored 0x7f15019c
+int style Widget_AppCompat_Button_Small 0x7f15019d
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15019e
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f15019f
+int style Widget_AppCompat_CompoundButton_Switch 0x7f1501a0
+int style Widget_AppCompat_DrawerArrowToggle 0x7f1501a1
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f1501a2
+int style Widget_AppCompat_EditText 0x7f1501a3
+int style Widget_AppCompat_ImageButton 0x7f1501a4
+int style Widget_AppCompat_Light_ActionBar 0x7f1501a5
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f1501a6
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f1501a7
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f1501a8
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f1501a9
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f1501aa
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1501ab
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f1501ac
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f1501ad
+int style Widget_AppCompat_Light_ActionButton 0x7f1501ae
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f1501af
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f1501b0
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f1501b1
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f1501b2
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f1501b3
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f1501b4
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f1501b5
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f1501b6
+int style Widget_AppCompat_Light_PopupMenu 0x7f1501b7
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1501b8
+int style Widget_AppCompat_Light_SearchView 0x7f1501b9
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f1501ba
+int style Widget_AppCompat_ListMenuView 0x7f1501bb
+int style Widget_AppCompat_ListPopupWindow 0x7f1501bc
+int style Widget_AppCompat_ListView 0x7f1501bd
+int style Widget_AppCompat_ListView_DropDown 0x7f1501be
+int style Widget_AppCompat_ListView_Menu 0x7f1501bf
+int style Widget_AppCompat_PopupMenu 0x7f1501c0
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f1501c1
+int style Widget_AppCompat_PopupWindow 0x7f1501c2
+int style Widget_AppCompat_ProgressBar 0x7f1501c3
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f1501c4
+int style Widget_AppCompat_RatingBar 0x7f1501c5
+int style Widget_AppCompat_RatingBar_Indicator 0x7f1501c6
+int style Widget_AppCompat_RatingBar_Small 0x7f1501c7
+int style Widget_AppCompat_SearchView 0x7f1501c8
+int style Widget_AppCompat_SearchView_ActionBar 0x7f1501c9
+int style Widget_AppCompat_SeekBar 0x7f1501ca
+int style Widget_AppCompat_SeekBar_Discrete 0x7f1501cb
+int style Widget_AppCompat_Spinner 0x7f1501cc
+int style Widget_AppCompat_Spinner_DropDown 0x7f1501cd
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f1501ce
+int style Widget_AppCompat_Spinner_Underlined 0x7f1501cf
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f1501d0
+int style Widget_AppCompat_Toolbar 0x7f1501d1
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f1501d2
+int style Widget_Compat_NotificationActionContainer 0x7f1501d3
+int style Widget_Compat_NotificationActionText 0x7f1501d4
+int style Widget_Design_AppBarLayout 0x7f1501d5
+int style Widget_Design_BottomNavigationView 0x7f1501d6
+int style Widget_Design_BottomSheet_Modal 0x7f1501d7
+int style Widget_Design_CollapsingToolbar 0x7f1501d8
+int style Widget_Design_FloatingActionButton 0x7f1501d9
+int style Widget_Design_NavigationView 0x7f1501da
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f1501db
+int style Widget_Design_Snackbar 0x7f1501dc
+int style Widget_Design_TabLayout 0x7f1501dd
+int style Widget_Design_TextInputLayout 0x7f1501de
+int style Widget_MaterialComponents_BottomAppBar 0x7f1501df
+int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f1501e0
+int style Widget_MaterialComponents_BottomNavigationView 0x7f1501e1
+int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f1501e2
+int style Widget_MaterialComponents_BottomSheet_Modal 0x7f1501e3
+int style Widget_MaterialComponents_Button 0x7f1501e4
+int style Widget_MaterialComponents_Button_Icon 0x7f1501e5
+int style Widget_MaterialComponents_Button_OutlinedButton 0x7f1501e6
+int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f1501e7
+int style Widget_MaterialComponents_Button_TextButton 0x7f1501e8
+int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f1501e9
+int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f1501ea
+int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f1501eb
+int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f1501ec
+int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f1501ed
+int style Widget_MaterialComponents_CardView 0x7f1501ee
+int style Widget_MaterialComponents_ChipGroup 0x7f1501ef
+int style Widget_MaterialComponents_Chip_Action 0x7f1501f0
+int style Widget_MaterialComponents_Chip_Choice 0x7f1501f1
+int style Widget_MaterialComponents_Chip_Entry 0x7f1501f2
+int style Widget_MaterialComponents_Chip_Filter 0x7f1501f3
+int style Widget_MaterialComponents_FloatingActionButton 0x7f1501f4
+int style Widget_MaterialComponents_NavigationView 0x7f1501f5
+int style Widget_MaterialComponents_Snackbar 0x7f1501f6
+int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1501f7
+int style Widget_MaterialComponents_TabLayout 0x7f1501f8
+int style Widget_MaterialComponents_TabLayout_Colored 0x7f1501f9
+int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1501fa
+int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501fb
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501fc
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501fd
+int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1501fe
+int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1501ff
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f150200
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f150201
+int style Widget_MaterialComponents_Toolbar 0x7f150202
+int style Widget_Support_CoordinatorLayout 0x7f150203
+int[] styleable ActionBar { 0x7f040033, 0x7f040035, 0x7f040036, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f0400a8, 0x7f0400ad, 0x7f0400ae, 0x7f0400b9, 0x7f0400e6, 0x7f0400eb, 0x7f0400f0, 0x7f0400f1, 0x7f0400f3, 0x7f0400fd, 0x7f040107, 0x7f04012a, 0x7f040136, 0x7f04014a, 0x7f040152, 0x7f040153, 0x7f04018d, 0x7f040190, 0x7f0401d5, 0x7f0401df }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x10100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f040033, 0x7f040035, 0x7f040082, 0x7f0400e6, 0x7f040190, 0x7f0401df }
+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 { 0x7f0400be, 0x7f0400fe }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable AlertDialog { 0x10100f2, 0x7f040055, 0x7f040056, 0x7f040121, 0x7f040122, 0x7f040133, 0x7f040174, 0x7f040176 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonIconDimen 1
+int styleable AlertDialog_buttonPanelSideLayout 2
+int styleable AlertDialog_listItemLayout 3
+int styleable AlertDialog_listLayout 4
+int styleable AlertDialog_multiChoiceItemLayout 5
+int styleable AlertDialog_showTitle 6
+int styleable AlertDialog_singleChoiceItemLayout 7
+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable AnimatedStateListDrawableCompat_android_constantSize 0
+int styleable AnimatedStateListDrawableCompat_android_dither 1
+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
+int styleable AnimatedStateListDrawableCompat_android_visible 5
+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
+int styleable AnimatedStateListDrawableItem_android_drawable 0
+int styleable AnimatedStateListDrawableItem_android_id 1
+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
+int styleable AnimatedStateListDrawableTransition_android_drawable 0
+int styleable AnimatedStateListDrawableTransition_android_fromId 1
+int styleable AnimatedStateListDrawableTransition_android_reversible 2
+int styleable AnimatedStateListDrawableTransition_android_toId 3
+int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f0400b9, 0x7f0400bf, 0x7f04011c }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_android_keyboardNavigationCluster 1
+int styleable AppBarLayout_android_touchscreenBlocksFocus 2
+int styleable AppBarLayout_elevation 3
+int styleable AppBarLayout_expanded 4
+int styleable AppBarLayout_liftOnScroll 5
+int[] styleable AppBarLayoutStates { 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040186 }
+int styleable AppBarLayoutStates_state_collapsed 0
+int styleable AppBarLayoutStates_state_collapsible 1
+int styleable AppBarLayoutStates_state_liftable 2
+int styleable AppBarLayoutStates_state_lifted 3
+int[] styleable AppBarLayout_Layout { 0x7f04011a, 0x7f04011b }
+int styleable AppBarLayout_Layout_layout_scrollFlags 0
+int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
+int[] styleable AppCompatImageView { 0x1010119, 0x7f040180, 0x7f0401d3, 0x7f0401d4 }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int styleable AppCompatImageView_tint 2
+int styleable AppCompatImageView_tintMode 3
+int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2 }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
+int styleable AppCompatTextHelper_android_drawableBottom 0
+int styleable AppCompatTextHelper_android_drawableEnd 1
+int styleable AppCompatTextHelper_android_drawableLeft 2
+int styleable AppCompatTextHelper_android_drawableRight 3
+int styleable AppCompatTextHelper_android_drawableStart 4
+int styleable AppCompatTextHelper_android_drawableTop 5
+int styleable AppCompatTextHelper_android_textAppearance 6
+int[] styleable AppCompatTextView { 0x1010034, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x7f0400d5, 0x7f0400d8, 0x7f04010f, 0x7f04011d, 0x7f0401b0 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_autoSizeMaxTextSize 1
+int styleable AppCompatTextView_autoSizeMinTextSize 2
+int styleable AppCompatTextView_autoSizePresetSizes 3
+int styleable AppCompatTextView_autoSizeStepGranularity 4
+int styleable AppCompatTextView_autoSizeTextType 5
+int styleable AppCompatTextView_firstBaselineToTopHeight 6
+int styleable AppCompatTextView_fontFamily 7
+int styleable AppCompatTextView_lastBaselineToBottomHeight 8
+int styleable AppCompatTextView_lineHeight 9
+int styleable AppCompatTextView_textAllCaps 10
+int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x10100ae, 0x1010057, 0x7f04002d, 0x7f040041, 0x7f04004f, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040057, 0x7f040058, 0x7f040063, 0x7f040068, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040092, 0x7f0400a1, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b1, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400f0, 0x7f0400fc, 0x7f04011f, 0x7f040120, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040149, 0x7f04014b, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f04017d, 0x7f04017e, 0x7f040194, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401c6, 0x7f0401c7, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401ec, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7 }
+int styleable AppCompatTheme_actionBarDivider 0
+int styleable AppCompatTheme_actionBarItemBackground 1
+int styleable AppCompatTheme_actionBarPopupTheme 2
+int styleable AppCompatTheme_actionBarSize 3
+int styleable AppCompatTheme_actionBarSplitStyle 4
+int styleable AppCompatTheme_actionBarStyle 5
+int styleable AppCompatTheme_actionBarTabBarStyle 6
+int styleable AppCompatTheme_actionBarTabStyle 7
+int styleable AppCompatTheme_actionBarTabTextStyle 8
+int styleable AppCompatTheme_actionBarTheme 9
+int styleable AppCompatTheme_actionBarWidgetTheme 10
+int styleable AppCompatTheme_actionButtonStyle 11
+int styleable AppCompatTheme_actionDropDownStyle 12
+int styleable AppCompatTheme_actionMenuTextAppearance 13
+int styleable AppCompatTheme_actionMenuTextColor 14
+int styleable AppCompatTheme_actionModeBackground 15
+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
+int styleable AppCompatTheme_actionModeCloseDrawable 17
+int styleable AppCompatTheme_actionModeCopyDrawable 18
+int styleable AppCompatTheme_actionModeCutDrawable 19
+int styleable AppCompatTheme_actionModeFindDrawable 20
+int styleable AppCompatTheme_actionModePasteDrawable 21
+int styleable AppCompatTheme_actionModePopupWindowStyle 22
+int styleable AppCompatTheme_actionModeSelectAllDrawable 23
+int styleable AppCompatTheme_actionModeShareDrawable 24
+int styleable AppCompatTheme_actionModeSplitBackground 25
+int styleable AppCompatTheme_actionModeStyle 26
+int styleable AppCompatTheme_actionModeWebSearchDrawable 27
+int styleable AppCompatTheme_actionOverflowButtonStyle 28
+int styleable AppCompatTheme_actionOverflowMenuStyle 29
+int styleable AppCompatTheme_activityChooserViewStyle 30
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
+int styleable AppCompatTheme_alertDialogCenterButtons 32
+int styleable AppCompatTheme_alertDialogStyle 33
+int styleable AppCompatTheme_alertDialogTheme 34
+int styleable AppCompatTheme_android_windowAnimationStyle 35
+int styleable AppCompatTheme_android_windowIsFloating 36
+int styleable AppCompatTheme_autoCompleteTextViewStyle 37
+int styleable AppCompatTheme_borderlessButtonStyle 38
+int styleable AppCompatTheme_buttonBarButtonStyle 39
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
+int styleable AppCompatTheme_buttonBarStyle 43
+int styleable AppCompatTheme_buttonStyle 44
+int styleable AppCompatTheme_buttonStyleSmall 45
+int styleable AppCompatTheme_checkboxStyle 46
+int styleable AppCompatTheme_checkedTextViewStyle 47
+int styleable AppCompatTheme_colorAccent 48
+int styleable AppCompatTheme_colorBackgroundFloating 49
+int styleable AppCompatTheme_colorButtonNormal 50
+int styleable AppCompatTheme_colorControlActivated 51
+int styleable AppCompatTheme_colorControlHighlight 52
+int styleable AppCompatTheme_colorControlNormal 53
+int styleable AppCompatTheme_colorError 54
+int styleable AppCompatTheme_colorPrimary 55
+int styleable AppCompatTheme_colorPrimaryDark 56
+int styleable AppCompatTheme_colorSwitchThumbNormal 57
+int styleable AppCompatTheme_controlBackground 58
+int styleable AppCompatTheme_dialogCornerRadius 59
+int styleable AppCompatTheme_dialogPreferredPadding 60
+int styleable AppCompatTheme_dialogTheme 61
+int styleable AppCompatTheme_dividerHorizontal 62
+int styleable AppCompatTheme_dividerVertical 63
+int styleable AppCompatTheme_dropDownListViewStyle 64
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
+int styleable AppCompatTheme_editTextBackground 66
+int styleable AppCompatTheme_editTextColor 67
+int styleable AppCompatTheme_editTextStyle 68
+int styleable AppCompatTheme_homeAsUpIndicator 69
+int styleable AppCompatTheme_imageButtonStyle 70
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
+int styleable AppCompatTheme_listDividerAlertDialog 72
+int styleable AppCompatTheme_listMenuViewStyle 73
+int styleable AppCompatTheme_listPopupWindowStyle 74
+int styleable AppCompatTheme_listPreferredItemHeight 75
+int styleable AppCompatTheme_listPreferredItemHeightLarge 76
+int styleable AppCompatTheme_listPreferredItemHeightSmall 77
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
+int styleable AppCompatTheme_listPreferredItemPaddingRight 79
+int styleable AppCompatTheme_panelBackground 80
+int styleable AppCompatTheme_panelMenuListTheme 81
+int styleable AppCompatTheme_panelMenuListWidth 82
+int styleable AppCompatTheme_popupMenuStyle 83
+int styleable AppCompatTheme_popupWindowStyle 84
+int styleable AppCompatTheme_radioButtonStyle 85
+int styleable AppCompatTheme_ratingBarStyle 86
+int styleable AppCompatTheme_ratingBarStyleIndicator 87
+int styleable AppCompatTheme_ratingBarStyleSmall 88
+int styleable AppCompatTheme_searchViewStyle 89
+int styleable AppCompatTheme_seekBarStyle 90
+int styleable AppCompatTheme_selectableItemBackground 91
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
+int styleable AppCompatTheme_spinnerDropDownItemStyle 93
+int styleable AppCompatTheme_spinnerStyle 94
+int styleable AppCompatTheme_switchStyle 95
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
+int styleable AppCompatTheme_textAppearanceListItem 97
+int styleable AppCompatTheme_textAppearanceListItemSecondary 98
+int styleable AppCompatTheme_textAppearanceListItemSmall 99
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
+int styleable AppCompatTheme_textColorAlertDialogListItem 104
+int styleable AppCompatTheme_textColorSearchUrl 105
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
+int styleable AppCompatTheme_toolbarStyle 107
+int styleable AppCompatTheme_tooltipForegroundColor 108
+int styleable AppCompatTheme_tooltipFrameBackground 109
+int styleable AppCompatTheme_viewInflaterClass 110
+int styleable AppCompatTheme_windowActionBar 111
+int styleable AppCompatTheme_windowActionBarOverlay 112
+int styleable AppCompatTheme_windowActionModeOverlay 113
+int styleable AppCompatTheme_windowFixedHeightMajor 114
+int styleable AppCompatTheme_windowFixedHeightMinor 115
+int styleable AppCompatTheme_windowFixedWidthMajor 116
+int styleable AppCompatTheme_windowFixedWidthMinor 117
+int styleable AppCompatTheme_windowMinWidthMajor 118
+int styleable AppCompatTheme_windowMinWidthMinor 119
+int styleable AppCompatTheme_windowNoTitle 120
+int[] styleable BottomAppBar { 0x7f040037, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400ec }
+int styleable BottomAppBar_backgroundTint 0
+int styleable BottomAppBar_fabAlignmentMode 1
+int styleable BottomAppBar_fabCradleMargin 2
+int styleable BottomAppBar_fabCradleRoundedCornerRadius 3
+int styleable BottomAppBar_fabCradleVerticalOffset 4
+int styleable BottomAppBar_hideOnScroll 5
+int[] styleable BottomNavigationView { 0x7f0400b9, 0x7f040101, 0x7f040103, 0x7f040105, 0x7f040106, 0x7f04010a, 0x7f04010b, 0x7f04010c, 0x7f04010e, 0x7f040132 }
+int styleable BottomNavigationView_elevation 0
+int styleable BottomNavigationView_itemBackground 1
+int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
+int styleable BottomNavigationView_itemIconSize 3
+int styleable BottomNavigationView_itemIconTint 4
+int styleable BottomNavigationView_itemTextAppearanceActive 5
+int styleable BottomNavigationView_itemTextAppearanceInactive 6
+int styleable BottomNavigationView_itemTextColor 7
+int styleable BottomNavigationView_labelVisibilityMode 8
+int styleable BottomNavigationView_menu 9
+int[] styleable BottomSheetBehavior_Layout { 0x7f04003b, 0x7f04003c, 0x7f04003e, 0x7f04003f }
+int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0
+int styleable BottomSheetBehavior_Layout_behavior_hideable 1
+int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2
+int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3
+int[] styleable ButtonBarLayout { 0x7f040028 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable CameraBridgeViewBase { 0x7f04005b, 0x7f040175 }
+int styleable CameraBridgeViewBase_camera_id 0
+int styleable CameraBridgeViewBase_show_fps 1
+int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f }
+int styleable CardView_android_minHeight 0
+int styleable CardView_android_minWidth 1
+int styleable CardView_cardBackgroundColor 2
+int styleable CardView_cardCornerRadius 3
+int styleable CardView_cardElevation 4
+int styleable CardView_cardMaxElevation 5
+int styleable CardView_cardPreventCornerOverlap 6
+int styleable CardView_cardUseCompatPadding 7
+int styleable CardView_contentPadding 8
+int styleable CardView_contentPaddingBottom 9
+int styleable CardView_contentPaddingLeft 10
+int styleable CardView_contentPaddingRight 11
+int styleable CardView_contentPaddingTop 12
+int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040071, 0x7f040072, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f0400ea, 0x7f0400f4, 0x7f0400f8, 0x7f04015d, 0x7f040172, 0x7f0401c8, 0x7f0401ca }
+int styleable Chip_android_checkable 0
+int styleable Chip_android_ellipsize 1
+int styleable Chip_android_maxWidth 2
+int styleable Chip_android_text 3
+int styleable Chip_android_textAppearance 4
+int styleable Chip_checkedIcon 5
+int styleable Chip_checkedIconEnabled 6
+int styleable Chip_checkedIconVisible 7
+int styleable Chip_chipBackgroundColor 8
+int styleable Chip_chipCornerRadius 9
+int styleable Chip_chipEndPadding 10
+int styleable Chip_chipIcon 11
+int styleable Chip_chipIconEnabled 12
+int styleable Chip_chipIconSize 13
+int styleable Chip_chipIconTint 14
+int styleable Chip_chipIconVisible 15
+int styleable Chip_chipMinHeight 16
+int styleable Chip_chipStartPadding 17
+int styleable Chip_chipStrokeColor 18
+int styleable Chip_chipStrokeWidth 19
+int styleable Chip_closeIcon 20
+int styleable Chip_closeIconEnabled 21
+int styleable Chip_closeIconEndPadding 22
+int styleable Chip_closeIconSize 23
+int styleable Chip_closeIconStartPadding 24
+int styleable Chip_closeIconTint 25
+int styleable Chip_closeIconVisible 26
+int styleable Chip_hideMotionSpec 27
+int styleable Chip_iconEndPadding 28
+int styleable Chip_iconStartPadding 29
+int styleable Chip_rippleColor 30
+int styleable Chip_showMotionSpec 31
+int styleable Chip_textEndPadding 32
+int styleable Chip_textStartPadding 33
+int[] styleable ChipGroup { 0x7f040064, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040177, 0x7f040178 }
+int styleable ChipGroup_checkedChip 0
+int styleable ChipGroup_chipSpacing 1
+int styleable ChipGroup_chipSpacingHorizontal 2
+int styleable ChipGroup_chipSpacingVertical 3
+int styleable ChipGroup_singleLine 4
+int styleable ChipGroup_singleSelection 5
+int[] styleable CollapsingToolbarLayout { 0x7f040085, 0x7f040086, 0x7f0400a0, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f040167, 0x7f040169, 0x7f040188, 0x7f0401d5, 0x7f0401d6, 0x7f0401e0 }
+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 { 0x7f040115, 0x7f040116 }
+int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
+int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
+int[] styleable ColorStateListItem { 0x7f040029, 0x101031f, 0x10101a5 }
+int styleable ColorStateListItem_alpha 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_color 2
+int[] styleable CompoundButton { 0x1010107, 0x7f040059, 0x7f04005a }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable CoordinatorLayout { 0x7f04010d, 0x7f040187 }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040117, 0x7f040118, 0x7f040119 }
+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 { 0x7f040044, 0x7f040045 }
+int styleable DesignTheme_bottomSheetDialogTheme 0
+int styleable DesignTheme_bottomSheetStyle 1
+int[] styleable DrawerArrowToggle { 0x7f04002b, 0x7f04002c, 0x7f040039, 0x7f040087, 0x7f0400b2, 0x7f0400e3, 0x7f04017c, 0x7f0401cc }
+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 { 0x7f040037, 0x7f040038, 0x7f040040, 0x7f0400b9, 0x7f0400cb, 0x7f0400cc, 0x7f0400ea, 0x7f0400f2, 0x7f040130, 0x7f04014e, 0x7f04015d, 0x7f040172, 0x7f0401ea }
+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_hideMotionSpec 6
+int styleable FloatingActionButton_hoveredFocusedTranslationZ 7
+int styleable FloatingActionButton_maxImageSize 8
+int styleable FloatingActionButton_pressedTranslationZ 9
+int styleable FloatingActionButton_rippleColor 10
+int styleable FloatingActionButton_showMotionSpec 11
+int styleable FloatingActionButton_useCompatPadding 12
+int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04003a }
+int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
+int[] styleable FlowLayout { 0x7f040108, 0x7f04011e }
+int styleable FlowLayout_itemSpacing 0
+int styleable FlowLayout_lineSpacing 1
+int[] styleable FontFamily { 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de }
+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 { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0400d7, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0401e9 }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontStyle 1
+int styleable FontFamilyFont_android_fontVariationSettings 2
+int styleable FontFamilyFont_android_fontWeight 3
+int styleable FontFamilyFont_android_ttcIndex 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0400e2 }
+int styleable ForegroundLinearLayout_android_foreground 0
+int styleable ForegroundLinearLayout_android_foregroundGravity 1
+int styleable ForegroundLinearLayout_foregroundInsidePadding 2
+int[] styleable GenericDraweeView { 0x7f040023, 0x7f040034, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f04013a, 0x7f040147, 0x7f040148, 0x7f04014d, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f04015a, 0x7f04015b, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f0401eb }
+int styleable GenericDraweeView_actualImageScaleType 0
+int styleable GenericDraweeView_backgroundImage 1
+int styleable GenericDraweeView_fadeDuration 2
+int styleable GenericDraweeView_failureImage 3
+int styleable GenericDraweeView_failureImageScaleType 4
+int styleable GenericDraweeView_overlayImage 5
+int styleable GenericDraweeView_placeholderImage 6
+int styleable GenericDraweeView_placeholderImageScaleType 7
+int styleable GenericDraweeView_pressedStateOverlayImage 8
+int styleable GenericDraweeView_progressBarAutoRotateInterval 9
+int styleable GenericDraweeView_progressBarImage 10
+int styleable GenericDraweeView_progressBarImageScaleType 11
+int styleable GenericDraweeView_retryImage 12
+int styleable GenericDraweeView_retryImageScaleType 13
+int styleable GenericDraweeView_roundAsCircle 14
+int styleable GenericDraweeView_roundBottomLeft 15
+int styleable GenericDraweeView_roundBottomRight 16
+int styleable GenericDraweeView_roundTopLeft 17
+int styleable GenericDraweeView_roundTopRight 18
+int styleable GenericDraweeView_roundWithOverlayColor 19
+int styleable GenericDraweeView_roundedCornerRadius 20
+int styleable GenericDraweeView_roundingBorderColor 21
+int styleable GenericDraweeView_roundingBorderWidth 22
+int styleable GenericDraweeView_viewAspectRatio 23
+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
+int styleable GradientColor_android_centerColor 0
+int styleable GradientColor_android_centerX 1
+int styleable GradientColor_android_centerY 2
+int styleable GradientColor_android_endColor 3
+int styleable GradientColor_android_endX 4
+int styleable GradientColor_android_endY 5
+int styleable GradientColor_android_gradientRadius 6
+int styleable GradientColor_android_startColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_tileMode 10
+int styleable GradientColor_android_type 11
+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f0400ae, 0x7f0400b0, 0x7f040131, 0x7f040171 }
+int styleable LinearLayoutCompat_android_baselineAligned 0
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
+int styleable LinearLayoutCompat_android_gravity 2
+int styleable LinearLayoutCompat_android_orientation 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 1
+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
+int styleable LinearLayoutCompat_Layout_android_layout_width 3
+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MaterialButton { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040037, 0x7f040038, 0x7f0400a3, 0x7f0400f3, 0x7f0400f5, 0x7f0400f6, 0x7f0400f7, 0x7f0400f9, 0x7f0400fa, 0x7f04015d, 0x7f040189, 0x7f04018a }
+int styleable MaterialButton_android_insetBottom 0
+int styleable MaterialButton_android_insetLeft 1
+int styleable MaterialButton_android_insetRight 2
+int styleable MaterialButton_android_insetTop 3
+int styleable MaterialButton_backgroundTint 4
+int styleable MaterialButton_backgroundTintMode 5
+int styleable MaterialButton_cornerRadius 6
+int styleable MaterialButton_icon 7
+int styleable MaterialButton_iconGravity 8
+int styleable MaterialButton_iconPadding 9
+int styleable MaterialButton_iconSize 10
+int styleable MaterialButton_iconTint 11
+int styleable MaterialButton_iconTintMode 12
+int styleable MaterialButton_rippleColor 13
+int styleable MaterialButton_strokeColor 14
+int styleable MaterialButton_strokeWidth 15
+int[] styleable MaterialCardView { 0x7f040189, 0x7f04018a }
+int styleable MaterialCardView_strokeColor 0
+int styleable MaterialCardView_strokeWidth 1
+int[] styleable MaterialComponentsTheme { 0x7f040044, 0x7f040045, 0x7f04006c, 0x7f040076, 0x7f04007a, 0x7f040088, 0x7f040089, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f0400b8, 0x7f0400d6, 0x7f04012c, 0x7f04012d, 0x7f040137, 0x7f040168, 0x7f040179, 0x7f0401ac, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bf, 0x7f0401c4, 0x7f0401c5, 0x7f0401c9 }
+int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0
+int styleable MaterialComponentsTheme_bottomSheetStyle 1
+int styleable MaterialComponentsTheme_chipGroupStyle 2
+int styleable MaterialComponentsTheme_chipStandaloneStyle 3
+int styleable MaterialComponentsTheme_chipStyle 4
+int styleable MaterialComponentsTheme_colorAccent 5
+int styleable MaterialComponentsTheme_colorBackgroundFloating 6
+int styleable MaterialComponentsTheme_colorPrimary 7
+int styleable MaterialComponentsTheme_colorPrimaryDark 8
+int styleable MaterialComponentsTheme_colorSecondary 9
+int styleable MaterialComponentsTheme_editTextStyle 10
+int styleable MaterialComponentsTheme_floatingActionButtonStyle 11
+int styleable MaterialComponentsTheme_materialButtonStyle 12
+int styleable MaterialComponentsTheme_materialCardViewStyle 13
+int styleable MaterialComponentsTheme_navigationViewStyle 14
+int styleable MaterialComponentsTheme_scrimBackground 15
+int styleable MaterialComponentsTheme_snackbarButtonStyle 16
+int styleable MaterialComponentsTheme_tabStyle 17
+int styleable MaterialComponentsTheme_textAppearanceBody1 18
+int styleable MaterialComponentsTheme_textAppearanceBody2 19
+int styleable MaterialComponentsTheme_textAppearanceButton 20
+int styleable MaterialComponentsTheme_textAppearanceCaption 21
+int styleable MaterialComponentsTheme_textAppearanceHeadline1 22
+int styleable MaterialComponentsTheme_textAppearanceHeadline2 23
+int styleable MaterialComponentsTheme_textAppearanceHeadline3 24
+int styleable MaterialComponentsTheme_textAppearanceHeadline4 25
+int styleable MaterialComponentsTheme_textAppearanceHeadline5 26
+int styleable MaterialComponentsTheme_textAppearanceHeadline6 27
+int styleable MaterialComponentsTheme_textAppearanceOverline 28
+int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29
+int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30
+int styleable MaterialComponentsTheme_textInputStyle 31
+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
+int styleable MenuGroup_android_checkableBehavior 0
+int styleable MenuGroup_android_enabled 1
+int styleable MenuGroup_android_id 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 5
+int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f04002a, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f040094, 0x7f0400f9, 0x7f0400fa, 0x7f040138, 0x7f040170, 0x7f0401e5 }
+int styleable MenuItem_actionLayout 0
+int styleable MenuItem_actionProviderClass 1
+int styleable MenuItem_actionViewClass 2
+int styleable MenuItem_alphabeticModifiers 3
+int styleable MenuItem_android_alphabeticShortcut 4
+int styleable MenuItem_android_checkable 5
+int styleable MenuItem_android_checked 6
+int styleable MenuItem_android_enabled 7
+int styleable MenuItem_android_icon 8
+int styleable MenuItem_android_id 9
+int styleable MenuItem_android_menuCategory 10
+int styleable MenuItem_android_numericShortcut 11
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 13
+int styleable MenuItem_android_title 14
+int styleable MenuItem_android_titleCondensed 15
+int styleable MenuItem_android_visible 16
+int styleable MenuItem_contentDescription 17
+int styleable MenuItem_iconTint 18
+int styleable MenuItem_iconTintMode 19
+int styleable MenuItem_numericModifiers 20
+int styleable MenuItem_showAsAction 21
+int styleable MenuItem_tooltipText 22
+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f04014c, 0x7f04018b }
+int styleable MenuView_android_headerBackground 0
+int styleable MenuView_android_horizontalDivider 1
+int styleable MenuView_android_itemBackground 2
+int styleable MenuView_android_itemIconDisabledAlpha 3
+int styleable MenuView_android_itemTextAppearance 4
+int styleable MenuView_android_verticalDivider 5
+int styleable MenuView_android_windowAnimationStyle 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f0400b9, 0x7f0400e5, 0x7f040101, 0x7f040102, 0x7f040104, 0x7f040106, 0x7f040109, 0x7f04010c, 0x7f040132 }
+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_itemHorizontalPadding 6
+int styleable NavigationView_itemIconPadding 7
+int styleable NavigationView_itemIconTint 8
+int styleable NavigationView_itemTextAppearance 9
+int styleable NavigationView_itemTextColor 10
+int styleable NavigationView_menu 11
+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f040139 }
+int styleable PopupWindow_android_popupAnimationStyle 0
+int styleable PopupWindow_android_popupBackground 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x7f040182 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable RecycleListView { 0x7f04013b, 0x7f04013e }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable RecyclerView { 0x10100f1, 0x10100c4, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f040111, 0x7f04015c, 0x7f04017b, 0x7f040181 }
+int styleable RecyclerView_android_descendantFocusability 0
+int styleable RecyclerView_android_orientation 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 { 0x7f0400ff }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Layout { 0x7f04003d }
+int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04007b, 0x7f040093, 0x7f0400a9, 0x7f0400e4, 0x7f0400fb, 0x7f040110, 0x7f040154, 0x7f040155, 0x7f04016a, 0x7f04016b, 0x7f04018c, 0x7f040191, 0x7f0401ed }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 1
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 3
+int styleable SearchView_closeIcon 4
+int styleable SearchView_commitIcon 5
+int styleable SearchView_defaultQueryHint 6
+int styleable SearchView_goIcon 7
+int styleable SearchView_iconifiedByDefault 8
+int styleable SearchView_layout 9
+int styleable SearchView_queryBackground 10
+int styleable SearchView_queryHint 11
+int styleable SearchView_searchHintIcon 12
+int styleable SearchView_searchIcon 13
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 15
+int styleable SearchView_voiceIcon 16
+int[] styleable Snackbar { 0x7f040179, 0x7f04017a }
+int styleable Snackbar_snackbarButtonStyle 0
+int styleable Snackbar_snackbarStyle 1
+int[] styleable SnackbarLayout { 0x101011f, 0x7f0400b9, 0x7f04012e }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_elevation 1
+int styleable SnackbarLayout_maxActionInlineWidth 2
+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04014a }
+int styleable Spinner_android_dropDownWidth 0
+int styleable Spinner_android_entries 1
+int styleable Spinner_android_popupBackground 2
+int styleable Spinner_android_prompt 3
+int styleable Spinner_popupTheme 4
+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
+int styleable StateListDrawable_android_constantSize 0
+int styleable StateListDrawable_android_dither 1
+int styleable StateListDrawable_android_enterFadeDuration 2
+int styleable StateListDrawable_android_exitFadeDuration 3
+int styleable StateListDrawable_android_variablePadding 4
+int styleable StateListDrawable_android_visible 5
+int[] styleable StateListDrawableItem { 0x1010199 }
+int styleable StateListDrawableItem_android_drawable 0
+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040173, 0x7f04017f, 0x7f040192, 0x7f040193, 0x7f040195, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8 }
+int styleable SwitchCompat_android_textOff 0
+int styleable SwitchCompat_android_textOn 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f }
+int styleable TabItem_android_icon 0
+int styleable TabItem_android_layout 1
+int styleable TabItem_android_text 2
+int[] styleable TabLayout { 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ad, 0x7f0401ae, 0x7f0401af }
+int styleable TabLayout_tabBackground 0
+int styleable TabLayout_tabContentStart 1
+int styleable TabLayout_tabGravity 2
+int styleable TabLayout_tabIconTint 3
+int styleable TabLayout_tabIconTintMode 4
+int styleable TabLayout_tabIndicator 5
+int styleable TabLayout_tabIndicatorAnimationDuration 6
+int styleable TabLayout_tabIndicatorColor 7
+int styleable TabLayout_tabIndicatorFullWidth 8
+int styleable TabLayout_tabIndicatorGravity 9
+int styleable TabLayout_tabIndicatorHeight 10
+int styleable TabLayout_tabInlineLabel 11
+int styleable TabLayout_tabMaxWidth 12
+int styleable TabLayout_tabMinWidth 13
+int styleable TabLayout_tabMode 14
+int styleable TabLayout_tabPadding 15
+int styleable TabLayout_tabPaddingBottom 16
+int styleable TabLayout_tabPaddingEnd 17
+int styleable TabLayout_tabPaddingStart 18
+int styleable TabLayout_tabPaddingTop 19
+int styleable TabLayout_tabRippleColor 20
+int styleable TabLayout_tabSelectedTextColor 21
+int styleable TabLayout_tabTextAppearance 22
+int styleable TabLayout_tabTextColor 23
+int styleable TabLayout_tabUnboundedRipple 24
+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f0400d8, 0x7f0401b0 }
+int styleable TextAppearance_android_fontFamily 0
+int styleable TextAppearance_android_shadowColor 1
+int styleable TextAppearance_android_shadowDx 2
+int styleable TextAppearance_android_shadowDy 3
+int styleable TextAppearance_android_shadowRadius 4
+int styleable TextAppearance_android_textColor 5
+int styleable TextAppearance_android_textColorHint 6
+int styleable TextAppearance_android_textColorLink 7
+int styleable TextAppearance_android_textSize 8
+int styleable TextAppearance_android_textStyle 9
+int styleable TextAppearance_android_typeface 10
+int styleable TextAppearance_fontFamily 11
+int styleable TextAppearance_textAllCaps 12
+int[] styleable TextInputLayout { 0x1010150, 0x101009a, 0x7f040046, 0x7f040047, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400bc, 0x7f0400bd, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146 }
+int styleable TextInputLayout_android_hint 0
+int styleable TextInputLayout_android_textColorHint 1
+int styleable TextInputLayout_boxBackgroundColor 2
+int styleable TextInputLayout_boxBackgroundMode 3
+int styleable TextInputLayout_boxCollapsedPaddingTop 4
+int styleable TextInputLayout_boxCornerRadiusBottomEnd 5
+int styleable TextInputLayout_boxCornerRadiusBottomStart 6
+int styleable TextInputLayout_boxCornerRadiusTopEnd 7
+int styleable TextInputLayout_boxCornerRadiusTopStart 8
+int styleable TextInputLayout_boxStrokeColor 9
+int styleable TextInputLayout_boxStrokeWidth 10
+int styleable TextInputLayout_counterEnabled 11
+int styleable TextInputLayout_counterMaxLength 12
+int styleable TextInputLayout_counterOverflowTextAppearance 13
+int styleable TextInputLayout_counterTextAppearance 14
+int styleable TextInputLayout_errorEnabled 15
+int styleable TextInputLayout_errorTextAppearance 16
+int styleable TextInputLayout_helperText 17
+int styleable TextInputLayout_helperTextEnabled 18
+int styleable TextInputLayout_helperTextTextAppearance 19
+int styleable TextInputLayout_hintAnimationEnabled 20
+int styleable TextInputLayout_hintEnabled 21
+int styleable TextInputLayout_hintTextAppearance 22
+int styleable TextInputLayout_passwordToggleContentDescription 23
+int styleable TextInputLayout_passwordToggleDrawable 24
+int styleable TextInputLayout_passwordToggleEnabled 25
+int styleable TextInputLayout_passwordToggleTint 26
+int styleable TextInputLayout_passwordToggleTintMode 27
+int[] styleable Theme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x10100ae, 0x1010057, 0x7f04002d, 0x7f040041, 0x7f04004f, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040057, 0x7f040058, 0x7f040063, 0x7f040068, 0x7f040088, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008f, 0x7f040090, 0x7f040092, 0x7f0400a1, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b1, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400f0, 0x7f0400fc, 0x7f04011f, 0x7f040120, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040149, 0x7f04014b, 0x7f040156, 0x7f040157, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f04017d, 0x7f04017e, 0x7f040194, 0x7f0401bb, 0x7f0401bc, 0x7f0401be, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401c6, 0x7f0401c7, 0x7f0401e1, 0x7f0401e2, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7 }
+int styleable Theme_actionBarDivider 0
+int styleable Theme_actionBarItemBackground 1
+int styleable Theme_actionBarPopupTheme 2
+int styleable Theme_actionBarSize 3
+int styleable Theme_actionBarSplitStyle 4
+int styleable Theme_actionBarStyle 5
+int styleable Theme_actionBarTabBarStyle 6
+int styleable Theme_actionBarTabStyle 7
+int styleable Theme_actionBarTabTextStyle 8
+int styleable Theme_actionBarTheme 9
+int styleable Theme_actionBarWidgetTheme 10
+int styleable Theme_actionButtonStyle 11
+int styleable Theme_actionDropDownStyle 12
+int styleable Theme_actionMenuTextAppearance 13
+int styleable Theme_actionMenuTextColor 14
+int styleable Theme_actionModeBackground 15
+int styleable Theme_actionModeCloseButtonStyle 16
+int styleable Theme_actionModeCloseDrawable 17
+int styleable Theme_actionModeCopyDrawable 18
+int styleable Theme_actionModeCutDrawable 19
+int styleable Theme_actionModeFindDrawable 20
+int styleable Theme_actionModePasteDrawable 21
+int styleable Theme_actionModePopupWindowStyle 22
+int styleable Theme_actionModeSelectAllDrawable 23
+int styleable Theme_actionModeShareDrawable 24
+int styleable Theme_actionModeSplitBackground 25
+int styleable Theme_actionModeStyle 26
+int styleable Theme_actionModeWebSearchDrawable 27
+int styleable Theme_actionOverflowButtonStyle 28
+int styleable Theme_actionOverflowMenuStyle 29
+int styleable Theme_activityChooserViewStyle 30
+int styleable Theme_alertDialogButtonGroupStyle 31
+int styleable Theme_alertDialogCenterButtons 32
+int styleable Theme_alertDialogStyle 33
+int styleable Theme_alertDialogTheme 34
+int styleable Theme_android_windowAnimationStyle 35
+int styleable Theme_android_windowIsFloating 36
+int styleable Theme_autoCompleteTextViewStyle 37
+int styleable Theme_borderlessButtonStyle 38
+int styleable Theme_buttonBarButtonStyle 39
+int styleable Theme_buttonBarNegativeButtonStyle 40
+int styleable Theme_buttonBarNeutralButtonStyle 41
+int styleable Theme_buttonBarPositiveButtonStyle 42
+int styleable Theme_buttonBarStyle 43
+int styleable Theme_buttonStyle 44
+int styleable Theme_buttonStyleSmall 45
+int styleable Theme_checkboxStyle 46
+int styleable Theme_checkedTextViewStyle 47
+int styleable Theme_colorAccent 48
+int styleable Theme_colorButtonNormal 49
+int styleable Theme_colorControlActivated 50
+int styleable Theme_colorControlHighlight 51
+int styleable Theme_colorControlNormal 52
+int styleable Theme_colorPrimary 53
+int styleable Theme_colorPrimaryDark 54
+int styleable Theme_colorSwitchThumbNormal 55
+int styleable Theme_controlBackground 56
+int styleable Theme_dialogPreferredPadding 57
+int styleable Theme_dialogTheme 58
+int styleable Theme_dividerHorizontal 59
+int styleable Theme_dividerVertical 60
+int styleable Theme_dropDownListViewStyle 61
+int styleable Theme_dropdownListPreferredItemHeight 62
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 64
+int styleable Theme_editTextStyle 65
+int styleable Theme_homeAsUpIndicator 66
+int styleable Theme_imageButtonStyle 67
+int styleable Theme_listChoiceBackgroundIndicator 68
+int styleable Theme_listDividerAlertDialog 69
+int styleable Theme_listPopupWindowStyle 70
+int styleable Theme_listPreferredItemHeight 71
+int styleable Theme_listPreferredItemHeightLarge 72
+int styleable Theme_listPreferredItemHeightSmall 73
+int styleable Theme_listPreferredItemPaddingLeft 74
+int styleable Theme_listPreferredItemPaddingRight 75
+int styleable Theme_panelBackground 76
+int styleable Theme_panelMenuListTheme 77
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 79
+int styleable Theme_popupWindowStyle 80
+int styleable Theme_radioButtonStyle 81
+int styleable Theme_ratingBarStyle 82
+int styleable Theme_searchViewStyle 83
+int styleable Theme_seekBarStyle 84
+int styleable Theme_selectableItemBackground 85
+int styleable Theme_selectableItemBackgroundBorderless 86
+int styleable Theme_spinnerDropDownItemStyle 87
+int styleable Theme_spinnerStyle 88
+int styleable Theme_switchStyle 89
+int styleable Theme_textAppearanceLargePopupMenu 90
+int styleable Theme_textAppearanceListItem 91
+int styleable Theme_textAppearanceListItemSmall 92
+int styleable Theme_textAppearanceSearchResultSubtitle 93
+int styleable Theme_textAppearanceSearchResultTitle 94
+int styleable Theme_textAppearanceSmallPopupMenu 95
+int styleable Theme_textColorAlertDialogListItem 96
+int styleable Theme_textColorSearchUrl 97
+int styleable Theme_toolbarNavigationButtonStyle 98
+int styleable Theme_toolbarStyle 99
+int styleable Theme_windowActionBar 100
+int styleable Theme_windowActionBarOverlay 101
+int styleable Theme_windowActionModeOverlay 102
+int styleable Theme_windowFixedHeightMajor 103
+int styleable Theme_windowFixedHeightMinor 104
+int styleable Theme_windowFixedWidthMajor 105
+int styleable Theme_windowFixedWidthMinor 106
+int styleable Theme_windowMinWidthMajor 107
+int styleable Theme_windowMinWidthMinor 108
+int styleable Theme_windowNoTitle 109
+int[] styleable ThemeEnforcement { 0x1010034, 0x7f0400ba, 0x7f0400bb }
+int styleable ThemeEnforcement_android_textAppearance 0
+int styleable ThemeEnforcement_enforceMaterialTheme 1
+int styleable ThemeEnforcement_enforceTextAppearance 2
+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040054, 0x7f040083, 0x7f040084, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04012a, 0x7f04012b, 0x7f04012f, 0x7f040134, 0x7f040135, 0x7f04014a, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f0401d5, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de }
+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 { 0x10100da, 0x1010000, 0x7f04013c, 0x7f04013d, 0x7f0401cb }
+int styleable View_android_focusable 0
+int styleable View_android_theme 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040037, 0x7f040038 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 1
+int styleable ViewStubCompat_android_layout 2
+int xml preferences 0x7f180001
diff --git a/android/build/intermediates/transforms/mergeJavaRes/debug/0.jar b/android/build/intermediates/transforms/mergeJavaRes/debug/0.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJavaRes/debug/0.jar differ
diff --git a/android/build/intermediates/transforms/mergeJavaRes/debug/__content__.json b/android/build/intermediates/transforms/mergeJavaRes/debug/__content__.json
new file mode 100644
index 000000000..a6c7c939d
--- /dev/null
+++ b/android/build/intermediates/transforms/mergeJavaRes/debug/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}]
\ No newline at end of file
diff --git a/android/build/intermediates/transforms/mergeJavaRes/release/0.jar b/android/build/intermediates/transforms/mergeJavaRes/release/0.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJavaRes/release/0.jar differ
diff --git a/android/build/intermediates/transforms/mergeJavaRes/release/__content__.json b/android/build/intermediates/transforms/mergeJavaRes/release/__content__.json
new file mode 100644
index 000000000..a6c7c939d
--- /dev/null
+++ b/android/build/intermediates/transforms/mergeJavaRes/release/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}]
\ No newline at end of file
diff --git a/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libopencv_java3.so
new file mode 100644
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/debug/__content__.json b/android/build/intermediates/transforms/mergeJniLibs/debug/__content__.json
new file mode 100644
index 000000000..0a6aa0f1d
--- /dev/null
+++ b/android/build/intermediates/transforms/mergeJniLibs/debug/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}]
\ No newline at end of file
diff --git a/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libopencv_java3.so
new file mode 100644
index 000000000..ee652ff9f
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libopencv_java3.so
new file mode 100644
index 000000000..bf6ba3119
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/x86_64/libopencv_java3.so b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/x86_64/libopencv_java3.so
new file mode 100644
index 000000000..a9c7d270e
Binary files /dev/null and b/android/build/intermediates/transforms/mergeJniLibs/release/0/lib/x86_64/libopencv_java3.so differ
diff --git a/android/build/intermediates/transforms/mergeJniLibs/release/__content__.json b/android/build/intermediates/transforms/mergeJniLibs/release/__content__.json
new file mode 100644
index 000000000..0a6aa0f1d
--- /dev/null
+++ b/android/build/intermediates/transforms/mergeJniLibs/release/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}]
\ No newline at end of file
diff --git a/android/build/intermediates/typedefs.txt b/android/build/intermediates/typedefs.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/android/build/outputs/aar/react-native-documentscanner-android-debug.aar b/android/build/outputs/aar/react-native-documentscanner-android-debug.aar
new file mode 100644
index 000000000..8bfcd2b24
Binary files /dev/null and b/android/build/outputs/aar/react-native-documentscanner-android-debug.aar differ
diff --git a/android/build/outputs/aar/react-native-documentscanner-android-release.aar b/android/build/outputs/aar/react-native-documentscanner-android-release.aar
new file mode 100644
index 000000000..995a1e7ec
Binary files /dev/null and b/android/build/outputs/aar/react-native-documentscanner-android-release.aar differ
diff --git a/android/build/outputs/logs/manifest-merger-debug-report.txt b/android/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 000000000..af620e240
--- /dev/null
+++ b/android/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,57 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ package
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:2:5-34
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:versionName
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:versionCode
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:11-69
+uses-permission#android.permission.SYSTEM_ALERT_WINDOW
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:4:5-77
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:4:22-75
+uses-permission#android.permission.CAMERA
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:5:5-64
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:5:22-62
+uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:6:5-81
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:6:22-78
+uses-feature#android.hardware.camera
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:7:5-60
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:7:19-57
+uses-feature#android.hardware.camera.autofocus
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:8:5-70
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:8:19-67
+uses-sdk
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
diff --git a/android/build/outputs/logs/manifest-merger-release-report.txt b/android/build/outputs/logs/manifest-merger-release-report.txt
new file mode 100644
index 000000000..af620e240
--- /dev/null
+++ b/android/build/outputs/logs/manifest-merger-release-report.txt
@@ -0,0 +1,57 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ package
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:2:5-34
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:versionName
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:versionCode
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:1-10:12
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:1:11-69
+uses-permission#android.permission.SYSTEM_ALERT_WINDOW
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:4:5-77
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:4:22-75
+uses-permission#android.permission.CAMERA
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:5:5-64
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:5:22-62
+uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:6:5-81
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:6:22-78
+uses-feature#android.hardware.camera
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:7:5-60
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:7:19-57
+uses-feature#android.hardware.camera.autofocus
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:8:5-70
+ android:name
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml:8:19-67
+uses-sdk
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/AndroidManifest.xml
diff --git a/android/openCVLibrary310/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out/org/opencv/engine/OpenCVEngineInterface.java b/android/openCVLibrary310/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out/org/opencv/engine/OpenCVEngineInterface.java
new file mode 100644
index 000000000..e4223a726
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out/org/opencv/engine/OpenCVEngineInterface.java
@@ -0,0 +1,199 @@
+/*
+ * This file is auto-generated. DO NOT MODIFY.
+ * Original file: /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/aidl/org/opencv/engine/OpenCVEngineInterface.aidl
+ */
+package org.opencv.engine;
+/**
+* Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class.
+*/
+public interface OpenCVEngineInterface extends android.os.IInterface
+{
+/** Local-side IPC implementation stub class. */
+public static abstract class Stub extends android.os.Binder implements org.opencv.engine.OpenCVEngineInterface
+{
+private static final java.lang.String DESCRIPTOR = "org.opencv.engine.OpenCVEngineInterface";
+/** Construct the stub at attach it to the interface. */
+public Stub()
+{
+this.attachInterface(this, DESCRIPTOR);
+}
+/**
+ * Cast an IBinder object into an org.opencv.engine.OpenCVEngineInterface interface,
+ * generating a proxy if needed.
+ */
+public static org.opencv.engine.OpenCVEngineInterface asInterface(android.os.IBinder obj)
+{
+if ((obj==null)) {
+return null;
+}
+android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
+if (((iin!=null)&&(iin instanceof org.opencv.engine.OpenCVEngineInterface))) {
+return ((org.opencv.engine.OpenCVEngineInterface)iin);
+}
+return new org.opencv.engine.OpenCVEngineInterface.Stub.Proxy(obj);
+}
+@Override public android.os.IBinder asBinder()
+{
+return this;
+}
+@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
+{
+java.lang.String descriptor = DESCRIPTOR;
+switch (code)
+{
+case INTERFACE_TRANSACTION:
+{
+reply.writeString(descriptor);
+return true;
+}
+case TRANSACTION_getEngineVersion:
+{
+data.enforceInterface(descriptor);
+int _result = this.getEngineVersion();
+reply.writeNoException();
+reply.writeInt(_result);
+return true;
+}
+case TRANSACTION_getLibPathByVersion:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibPathByVersion(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+case TRANSACTION_installVersion:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+boolean _result = this.installVersion(_arg0);
+reply.writeNoException();
+reply.writeInt(((_result)?(1):(0)));
+return true;
+}
+case TRANSACTION_getLibraryList:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibraryList(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+default:
+{
+return super.onTransact(code, data, reply, flags);
+}
+}
+}
+private static class Proxy implements org.opencv.engine.OpenCVEngineInterface
+{
+private android.os.IBinder mRemote;
+Proxy(android.os.IBinder remote)
+{
+mRemote = remote;
+}
+@Override public android.os.IBinder asBinder()
+{
+return mRemote;
+}
+public java.lang.String getInterfaceDescriptor()
+{
+return DESCRIPTOR;
+}
+@Override public int getEngineVersion() throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+int _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+mRemote.transact(Stub.TRANSACTION_getEngineVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readInt();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+@Override public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibPathByVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+@Override public boolean installVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+boolean _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_installVersion, _data, _reply, 0);
+_reply.readException();
+_result = (0!=_reply.readInt());
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+@Override public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibraryList, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+}
+static final int TRANSACTION_getEngineVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
+static final int TRANSACTION_getLibPathByVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
+static final int TRANSACTION_installVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
+static final int TRANSACTION_getLibraryList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
+}
+public int getEngineVersion() throws android.os.RemoteException;
+public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+public boolean installVersion(java.lang.String version) throws android.os.RemoteException;
+public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException;
+}
diff --git a/android/openCVLibrary310/build/generated/aidl_source_output_dir/release/compileReleaseAidl/out/org/opencv/engine/OpenCVEngineInterface.java b/android/openCVLibrary310/build/generated/aidl_source_output_dir/release/compileReleaseAidl/out/org/opencv/engine/OpenCVEngineInterface.java
new file mode 100644
index 000000000..e4223a726
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/aidl_source_output_dir/release/compileReleaseAidl/out/org/opencv/engine/OpenCVEngineInterface.java
@@ -0,0 +1,199 @@
+/*
+ * This file is auto-generated. DO NOT MODIFY.
+ * Original file: /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/aidl/org/opencv/engine/OpenCVEngineInterface.aidl
+ */
+package org.opencv.engine;
+/**
+* Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class.
+*/
+public interface OpenCVEngineInterface extends android.os.IInterface
+{
+/** Local-side IPC implementation stub class. */
+public static abstract class Stub extends android.os.Binder implements org.opencv.engine.OpenCVEngineInterface
+{
+private static final java.lang.String DESCRIPTOR = "org.opencv.engine.OpenCVEngineInterface";
+/** Construct the stub at attach it to the interface. */
+public Stub()
+{
+this.attachInterface(this, DESCRIPTOR);
+}
+/**
+ * Cast an IBinder object into an org.opencv.engine.OpenCVEngineInterface interface,
+ * generating a proxy if needed.
+ */
+public static org.opencv.engine.OpenCVEngineInterface asInterface(android.os.IBinder obj)
+{
+if ((obj==null)) {
+return null;
+}
+android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
+if (((iin!=null)&&(iin instanceof org.opencv.engine.OpenCVEngineInterface))) {
+return ((org.opencv.engine.OpenCVEngineInterface)iin);
+}
+return new org.opencv.engine.OpenCVEngineInterface.Stub.Proxy(obj);
+}
+@Override public android.os.IBinder asBinder()
+{
+return this;
+}
+@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
+{
+java.lang.String descriptor = DESCRIPTOR;
+switch (code)
+{
+case INTERFACE_TRANSACTION:
+{
+reply.writeString(descriptor);
+return true;
+}
+case TRANSACTION_getEngineVersion:
+{
+data.enforceInterface(descriptor);
+int _result = this.getEngineVersion();
+reply.writeNoException();
+reply.writeInt(_result);
+return true;
+}
+case TRANSACTION_getLibPathByVersion:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibPathByVersion(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+case TRANSACTION_installVersion:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+boolean _result = this.installVersion(_arg0);
+reply.writeNoException();
+reply.writeInt(((_result)?(1):(0)));
+return true;
+}
+case TRANSACTION_getLibraryList:
+{
+data.enforceInterface(descriptor);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibraryList(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+default:
+{
+return super.onTransact(code, data, reply, flags);
+}
+}
+}
+private static class Proxy implements org.opencv.engine.OpenCVEngineInterface
+{
+private android.os.IBinder mRemote;
+Proxy(android.os.IBinder remote)
+{
+mRemote = remote;
+}
+@Override public android.os.IBinder asBinder()
+{
+return mRemote;
+}
+public java.lang.String getInterfaceDescriptor()
+{
+return DESCRIPTOR;
+}
+@Override public int getEngineVersion() throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+int _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+mRemote.transact(Stub.TRANSACTION_getEngineVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readInt();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+@Override public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibPathByVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+@Override public boolean installVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+boolean _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_installVersion, _data, _reply, 0);
+_reply.readException();
+_result = (0!=_reply.readInt());
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+@Override public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibraryList, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+}
+static final int TRANSACTION_getEngineVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
+static final int TRANSACTION_getLibPathByVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
+static final int TRANSACTION_installVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
+static final int TRANSACTION_getLibraryList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
+}
+public int getEngineVersion() throws android.os.RemoteException;
+public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+public boolean installVersion(java.lang.String version) throws android.os.RemoteException;
+public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException;
+}
diff --git a/android/openCVLibrary310/build/generated/source/aidl/debug/org/opencv/engine/OpenCVEngineInterface.java b/android/openCVLibrary310/build/generated/source/aidl/debug/org/opencv/engine/OpenCVEngineInterface.java
new file mode 100644
index 000000000..4acfc5c84
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/aidl/debug/org/opencv/engine/OpenCVEngineInterface.java
@@ -0,0 +1,221 @@
+/*
+ * This file is auto-generated. DO NOT MODIFY.
+ * Original file: /Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/aidl/org/opencv/engine/OpenCVEngineInterface.aidl
+ */
+package org.opencv.engine;
+/**
+* Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class.
+*/
+public interface OpenCVEngineInterface extends android.os.IInterface
+{
+/** Local-side IPC implementation stub class. */
+public static abstract class Stub extends android.os.Binder implements org.opencv.engine.OpenCVEngineInterface
+{
+private static final java.lang.String DESCRIPTOR = "org.opencv.engine.OpenCVEngineInterface";
+/** Construct the stub at attach it to the interface. */
+public Stub()
+{
+this.attachInterface(this, DESCRIPTOR);
+}
+/**
+ * Cast an IBinder object into an org.opencv.engine.OpenCVEngineInterface interface,
+ * generating a proxy if needed.
+ */
+public static org.opencv.engine.OpenCVEngineInterface asInterface(android.os.IBinder obj)
+{
+if ((obj==null)) {
+return null;
+}
+android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
+if (((iin!=null)&&(iin instanceof org.opencv.engine.OpenCVEngineInterface))) {
+return ((org.opencv.engine.OpenCVEngineInterface)iin);
+}
+return new org.opencv.engine.OpenCVEngineInterface.Stub.Proxy(obj);
+}
+@Override public android.os.IBinder asBinder()
+{
+return this;
+}
+@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
+{
+switch (code)
+{
+case INTERFACE_TRANSACTION:
+{
+reply.writeString(DESCRIPTOR);
+return true;
+}
+case TRANSACTION_getEngineVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+int _result = this.getEngineVersion();
+reply.writeNoException();
+reply.writeInt(_result);
+return true;
+}
+case TRANSACTION_getLibPathByVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibPathByVersion(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+case TRANSACTION_installVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+boolean _result = this.installVersion(_arg0);
+reply.writeNoException();
+reply.writeInt(((_result)?(1):(0)));
+return true;
+}
+case TRANSACTION_getLibraryList:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibraryList(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+}
+return super.onTransact(code, data, reply, flags);
+}
+private static class Proxy implements org.opencv.engine.OpenCVEngineInterface
+{
+private android.os.IBinder mRemote;
+Proxy(android.os.IBinder remote)
+{
+mRemote = remote;
+}
+@Override public android.os.IBinder asBinder()
+{
+return mRemote;
+}
+public java.lang.String getInterfaceDescriptor()
+{
+return DESCRIPTOR;
+}
+/**
+ * @return Returns service version.
+ */
+@Override public int getEngineVersion() throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+int _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+mRemote.transact(Stub.TRANSACTION_getEngineVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readInt();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Finds an installed OpenCV library.
+ * @param OpenCV version.
+ * @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found.
+ */
+@Override public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibPathByVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+@Override public boolean installVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+boolean _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_installVersion, _data, _reply, 0);
+_reply.readException();
+_result = (0!=_reply.readInt());
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Returns list of libraries in loading order, separated by semicolon.
+ * @param OpenCV version.
+ * @return Returns names of OpenCV libraries, separated by semicolon.
+ */
+@Override public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibraryList, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+}
+static final int TRANSACTION_getEngineVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
+static final int TRANSACTION_getLibPathByVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
+static final int TRANSACTION_installVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
+static final int TRANSACTION_getLibraryList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
+}
+/**
+ * @return Returns service version.
+ */
+public int getEngineVersion() throws android.os.RemoteException;
+/**
+ * Finds an installed OpenCV library.
+ * @param OpenCV version.
+ * @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found.
+ */
+public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+public boolean installVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Returns list of libraries in loading order, separated by semicolon.
+ * @param OpenCV version.
+ * @return Returns names of OpenCV libraries, separated by semicolon.
+ */
+public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException;
+}
diff --git a/android/openCVLibrary310/build/generated/source/aidl/release/org/opencv/engine/OpenCVEngineInterface.java b/android/openCVLibrary310/build/generated/source/aidl/release/org/opencv/engine/OpenCVEngineInterface.java
new file mode 100644
index 000000000..4acfc5c84
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/aidl/release/org/opencv/engine/OpenCVEngineInterface.java
@@ -0,0 +1,221 @@
+/*
+ * This file is auto-generated. DO NOT MODIFY.
+ * Original file: /Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/aidl/org/opencv/engine/OpenCVEngineInterface.aidl
+ */
+package org.opencv.engine;
+/**
+* Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class.
+*/
+public interface OpenCVEngineInterface extends android.os.IInterface
+{
+/** Local-side IPC implementation stub class. */
+public static abstract class Stub extends android.os.Binder implements org.opencv.engine.OpenCVEngineInterface
+{
+private static final java.lang.String DESCRIPTOR = "org.opencv.engine.OpenCVEngineInterface";
+/** Construct the stub at attach it to the interface. */
+public Stub()
+{
+this.attachInterface(this, DESCRIPTOR);
+}
+/**
+ * Cast an IBinder object into an org.opencv.engine.OpenCVEngineInterface interface,
+ * generating a proxy if needed.
+ */
+public static org.opencv.engine.OpenCVEngineInterface asInterface(android.os.IBinder obj)
+{
+if ((obj==null)) {
+return null;
+}
+android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
+if (((iin!=null)&&(iin instanceof org.opencv.engine.OpenCVEngineInterface))) {
+return ((org.opencv.engine.OpenCVEngineInterface)iin);
+}
+return new org.opencv.engine.OpenCVEngineInterface.Stub.Proxy(obj);
+}
+@Override public android.os.IBinder asBinder()
+{
+return this;
+}
+@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
+{
+switch (code)
+{
+case INTERFACE_TRANSACTION:
+{
+reply.writeString(DESCRIPTOR);
+return true;
+}
+case TRANSACTION_getEngineVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+int _result = this.getEngineVersion();
+reply.writeNoException();
+reply.writeInt(_result);
+return true;
+}
+case TRANSACTION_getLibPathByVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibPathByVersion(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+case TRANSACTION_installVersion:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+boolean _result = this.installVersion(_arg0);
+reply.writeNoException();
+reply.writeInt(((_result)?(1):(0)));
+return true;
+}
+case TRANSACTION_getLibraryList:
+{
+data.enforceInterface(DESCRIPTOR);
+java.lang.String _arg0;
+_arg0 = data.readString();
+java.lang.String _result = this.getLibraryList(_arg0);
+reply.writeNoException();
+reply.writeString(_result);
+return true;
+}
+}
+return super.onTransact(code, data, reply, flags);
+}
+private static class Proxy implements org.opencv.engine.OpenCVEngineInterface
+{
+private android.os.IBinder mRemote;
+Proxy(android.os.IBinder remote)
+{
+mRemote = remote;
+}
+@Override public android.os.IBinder asBinder()
+{
+return mRemote;
+}
+public java.lang.String getInterfaceDescriptor()
+{
+return DESCRIPTOR;
+}
+/**
+ * @return Returns service version.
+ */
+@Override public int getEngineVersion() throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+int _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+mRemote.transact(Stub.TRANSACTION_getEngineVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readInt();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Finds an installed OpenCV library.
+ * @param OpenCV version.
+ * @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found.
+ */
+@Override public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibPathByVersion, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+@Override public boolean installVersion(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+boolean _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_installVersion, _data, _reply, 0);
+_reply.readException();
+_result = (0!=_reply.readInt());
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+/**
+ * Returns list of libraries in loading order, separated by semicolon.
+ * @param OpenCV version.
+ * @return Returns names of OpenCV libraries, separated by semicolon.
+ */
+@Override public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException
+{
+android.os.Parcel _data = android.os.Parcel.obtain();
+android.os.Parcel _reply = android.os.Parcel.obtain();
+java.lang.String _result;
+try {
+_data.writeInterfaceToken(DESCRIPTOR);
+_data.writeString(version);
+mRemote.transact(Stub.TRANSACTION_getLibraryList, _data, _reply, 0);
+_reply.readException();
+_result = _reply.readString();
+}
+finally {
+_reply.recycle();
+_data.recycle();
+}
+return _result;
+}
+}
+static final int TRANSACTION_getEngineVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
+static final int TRANSACTION_getLibPathByVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
+static final int TRANSACTION_installVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
+static final int TRANSACTION_getLibraryList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
+}
+/**
+ * @return Returns service version.
+ */
+public int getEngineVersion() throws android.os.RemoteException;
+/**
+ * Finds an installed OpenCV library.
+ * @param OpenCV version.
+ * @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found.
+ */
+public java.lang.String getLibPathByVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Tries to install defined version of OpenCV from Google Play Market.
+ * @param OpenCV version.
+ * @return Returns true if installation was successful or OpenCV package has been already installed.
+ */
+public boolean installVersion(java.lang.String version) throws android.os.RemoteException;
+/**
+ * Returns list of libraries in loading order, separated by semicolon.
+ * @param OpenCV version.
+ * @return Returns names of OpenCV libraries, separated by semicolon.
+ */
+public java.lang.String getLibraryList(java.lang.String version) throws android.os.RemoteException;
+}
diff --git a/android/openCVLibrary310/build/generated/source/buildConfig/androidTest/debug/org/opencv/test/BuildConfig.java b/android/openCVLibrary310/build/generated/source/buildConfig/androidTest/debug/org/opencv/test/BuildConfig.java
new file mode 100644
index 000000000..af821faec
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/buildConfig/androidTest/debug/org/opencv/test/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package org.opencv.test;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "org.opencv.test";
+ 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 = "";
+}
diff --git a/android/openCVLibrary310/build/generated/source/buildConfig/debug/org/opencv/BuildConfig.java b/android/openCVLibrary310/build/generated/source/buildConfig/debug/org/opencv/BuildConfig.java
new file mode 100644
index 000000000..fde81ee3c
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/buildConfig/debug/org/opencv/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package org.opencv;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "org.opencv";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 3100;
+ public static final String VERSION_NAME = "3.1.0";
+}
diff --git a/android/openCVLibrary310/build/generated/source/buildConfig/release/org/opencv/BuildConfig.java b/android/openCVLibrary310/build/generated/source/buildConfig/release/org/opencv/BuildConfig.java
new file mode 100644
index 000000000..1d5168b1b
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/buildConfig/release/org/opencv/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package org.opencv;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = false;
+ public static final String APPLICATION_ID = "org.opencv";
+ public static final String BUILD_TYPE = "release";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 3100;
+ public static final String VERSION_NAME = "3.1.0";
+}
diff --git a/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/R.java b/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/R.java
new file mode 100644
index 000000000..9812649a4
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/R.java
@@ -0,0 +1,24 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.opencv;
+
+public final class R {
+ public static final class attr {
+ public static final int camera_id = 0x7f010001;
+ public static final int show_fps = 0x7f010000;
+ }
+ public static final class id {
+ public static final int any = 0x7f020000;
+ public static final int back = 0x7f020001;
+ public static final int front = 0x7f020002;
+ }
+ public static final class styleable {
+ public static final int[] CameraBridgeViewBase = { 0x7f010000, 0x7f010001 };
+ public static final int CameraBridgeViewBase_camera_id = 1;
+ public static final int CameraBridgeViewBase_show_fps = 0;
+ }
+}
diff --git a/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/test/R.java b/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/test/R.java
new file mode 100644
index 000000000..e785f5e48
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/r/androidTest/debug/org/opencv/test/R.java
@@ -0,0 +1,99 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package org.opencv.test;
+
+public final class R {
+ public static final class attr {
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static final int camera_id=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int show_fps=0x7f010000;
+ }
+ public static final class id {
+ public static final int any=0x7f020000;
+ public static final int back=0x7f020001;
+ public static final int front=0x7f020002;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link org.opencv.test.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name org.opencv.test:camera_id
+ */
+ public static final int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link org.opencv.test.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name org.opencv.test:show_fps
+ */
+ public static final int CameraBridgeViewBase_show_fps = 0;
+ };
+}
diff --git a/android/openCVLibrary310/build/generated/source/r/debug/org/opencv/R.java b/android/openCVLibrary310/build/generated/source/r/debug/org/opencv/R.java
new file mode 100644
index 000000000..e7f4f9f97
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/r/debug/org/opencv/R.java
@@ -0,0 +1,99 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package org.opencv;
+
+public final class R {
+ public static final class attr {
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static int camera_id=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int show_fps=0x7f010000;
+ }
+ public static final class id {
+ public static int any=0x7f020000;
+ public static int back=0x7f020001;
+ public static int front=0x7f020002;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link org.opencv.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name org.opencv:camera_id
+ */
+ public static int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link org.opencv.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name org.opencv:show_fps
+ */
+ public static int CameraBridgeViewBase_show_fps = 0;
+ };
+}
diff --git a/android/openCVLibrary310/build/generated/source/r/release/org/opencv/R.java b/android/openCVLibrary310/build/generated/source/r/release/org/opencv/R.java
new file mode 100644
index 000000000..e7f4f9f97
--- /dev/null
+++ b/android/openCVLibrary310/build/generated/source/r/release/org/opencv/R.java
@@ -0,0 +1,99 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package org.opencv;
+
+public final class R {
+ public static final class attr {
+ /**
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ */
+ public static int camera_id=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static int show_fps=0x7f010000;
+ }
+ public static final class id {
+ public static int any=0x7f020000;
+ public static int back=0x7f020001;
+ public static int front=0x7f020002;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a CameraBridgeViewBase.
+
This symbol is the offset where the {@link org.opencv.R.attr#camera_id}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
May be an integer value, such as "100".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
any
-1
+
back
99
+
front
98
+
+ @attr name org.opencv:camera_id
+ */
+ public static int CameraBridgeViewBase_camera_id = 1;
+ /**
+
This symbol is the offset where the {@link org.opencv.R.attr#show_fps}
+ attribute's value can be found in the {@link #CameraBridgeViewBase} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name org.opencv:show_fps
+ */
+ public static int CameraBridgeViewBase_show_fps = 0;
+ };
+}
diff --git a/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..232f21b9c
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json
new file mode 100644
index 000000000..a47847aa0
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3100,"versionName":"3.1.0","enabled":true,"outputFile":"openCVLibrary310-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"org.opencv","split":""}}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml
new file mode 100644
index 000000000..232f21b9c
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output.json b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output.json
new file mode 100644
index 000000000..ed729998b
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3100,"versionName":"3.1.0","enabled":true,"outputFile":"openCVLibrary310-release.aar","fullName":"release","baseName":"release"},"path":"AndroidManifest.xml","properties":{"packageId":"org.opencv","split":""}}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/android/openCVLibrary310/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/annotation_processor_list/release/annotationProcessors.json b/android/openCVLibrary310/build/intermediates/annotation_processor_list/release/annotationProcessors.json
new file mode 100644
index 000000000..9e26dfeeb
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/annotation_processor_list/release/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/android/openCVLibrary310/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/android/openCVLibrary310/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt b/android/openCVLibrary310/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/android/openCVLibrary310/build/intermediates/blame/res/androidTest/debug/multi/values.json b/android/openCVLibrary310/build/intermediates/blame/res/androidTest/debug/multi/values.json
new file mode 100644
index 000000000..68dadd92b
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/blame/res/androidTest/debug/multi/values.json
@@ -0,0 +1,10 @@
+[
+ {
+ "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/documentscanner/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml",
+ "map": []
+ },
+ {
+ "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml",
+ "map": []
+ }
+]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/blame/res/release/multi-v2/values.json b/android/openCVLibrary310/build/intermediates/blame/res/release/multi-v2/values.json
new file mode 100644
index 000000000..297201729
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/blame/res/release/multi-v2/values.json
@@ -0,0 +1,52 @@
+{
+ "logs": [
+ {
+ "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml",
+ "map": [
+ {
+ "source": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/res/values/attrs.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "9",
+ "endColumns": "24",
+ "endOffsets": "368"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "9",
+ "endColumns": "24",
+ "endOffsets": "361"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/build/intermediates/res/merged/release/values/values.xml",
+ "map": [
+ {
+ "source": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/res/values/attrs.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "9",
+ "endColumns": "24",
+ "endOffsets": "368"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "9",
+ "endColumns": "24",
+ "endOffsets": "361"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/bundles/debug/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/bundles/debug/AndroidManifest.xml
new file mode 100644
index 000000000..135083168
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/debug/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/bundles/debug/R.txt b/android/openCVLibrary310/build/intermediates/bundles/debug/R.txt
new file mode 100644
index 000000000..a3db1775a
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/debug/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f010001
+int attr show_fps 0x7f010000
+int id any 0x7f020000
+int id back 0x7f020001
+int id front 0x7f020002
+int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
diff --git a/android/openCVLibrary310/build/intermediates/bundles/debug/res/values/values.xml b/android/openCVLibrary310/build/intermediates/bundles/debug/res/values/values.xml
new file mode 100644
index 000000000..bfefdaefa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/debug/res/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/bundles/release/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/bundles/release/AndroidManifest.xml
new file mode 100644
index 000000000..135083168
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/release/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/bundles/release/R.txt b/android/openCVLibrary310/build/intermediates/bundles/release/R.txt
new file mode 100644
index 000000000..a3db1775a
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/release/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f010001
+int attr show_fps 0x7f010000
+int id any 0x7f020000
+int id back 0x7f020001
+int id front 0x7f020002
+int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
diff --git a/android/openCVLibrary310/build/intermediates/bundles/release/classes.jar b/android/openCVLibrary310/build/intermediates/bundles/release/classes.jar
new file mode 100644
index 000000000..02641d37e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/bundles/release/classes.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/bundles/release/res/values/values.xml b/android/openCVLibrary310/build/intermediates/bundles/release/res/values/values.xml
new file mode 100644
index 000000000..bfefdaefa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/bundles/release/res/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/BuildConfig.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/BuildConfig.class
new file mode 100644
index 000000000..7cd4bba4c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/BuildConfig.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$attr.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$attr.class
new file mode 100644
index 000000000..87334120c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$attr.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$id.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$id.class
new file mode 100644
index 000000000..af44bf46d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$id.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$styleable.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$styleable.class
new file mode 100644
index 000000000..e9d460e8a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R$styleable.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R.class
new file mode 100644
index 000000000..944e7a477
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/R.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$1.class
new file mode 100644
index 000000000..a0125af98
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$2.class
new file mode 100644
index 000000000..067084dae
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$1.class
new file mode 100644
index 000000000..089a7b8cd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$2.class
new file mode 100644
index 000000000..7b160acbc
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3.class
new file mode 100644
index 000000000..341c2da27
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper.class
new file mode 100644
index 000000000..4e6638920
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/AsyncServiceHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$1.class
new file mode 100644
index 000000000..7ecbaa4f2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$2.class
new file mode 100644
index 000000000..281b1d952
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$3.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$3.class
new file mode 100644
index 000000000..c4c0bd399
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$4.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$4.class
new file mode 100644
index 000000000..d01747add
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$5.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$5.class
new file mode 100644
index 000000000..cfa9a26ff
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$5.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$6.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$6.class
new file mode 100644
index 000000000..1cabb21c9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$7.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$7.class
new file mode 100644
index 000000000..bbf9914e4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback$7.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback.class
new file mode 100644
index 000000000..2d5faef9d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/BaseLoaderCallback.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$1.class
new file mode 100644
index 000000000..5ff900b45
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$2.class
new file mode 100644
index 000000000..b87b2f85a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer.class
new file mode 100644
index 000000000..b332abee2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Camera2Renderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$1.class
new file mode 100644
index 000000000..d0553726f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class
new file mode 100644
index 000000000..28339daac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class
new file mode 100644
index 000000000..333b157cb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class
new file mode 100644
index 000000000..f95072773
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class
new file mode 100644
index 000000000..aa2aaa09f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class
new file mode 100644
index 000000000..08f5cb162
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase.class
new file mode 100644
index 000000000..e18dfc9a4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraBridgeViewBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLRendererBase.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLRendererBase.class
new file mode 100644
index 000000000..bac7941e6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLRendererBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class
new file mode 100644
index 000000000..72c251ccf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView.class
new file mode 100644
index 000000000..1bf4902b7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraGLSurfaceView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraRenderer.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraRenderer.class
new file mode 100644
index 000000000..01547afcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/CameraRenderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/FpsMeter.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/FpsMeter.class
new file mode 100644
index 000000000..034b4b856
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/FpsMeter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/InstallCallbackInterface.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/InstallCallbackInterface.class
new file mode 100644
index 000000000..00cae7f04
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/InstallCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$1.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$1.class
new file mode 100644
index 000000000..b2c301532
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$CameraWorker.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$CameraWorker.class
new file mode 100644
index 000000000..6cccd2dc9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$CameraWorker.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraFrame.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraFrame.class
new file mode 100644
index 000000000..a1a5dabd0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class
new file mode 100644
index 000000000..830ca5331
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView.class
new file mode 100644
index 000000000..3d0890205
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/JavaCameraView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/LoaderCallbackInterface.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/LoaderCallbackInterface.class
new file mode 100644
index 000000000..d67c5729d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/LoaderCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/OpenCVLoader.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/OpenCVLoader.class
new file mode 100644
index 000000000..b4a6278f9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/OpenCVLoader.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/StaticHelper.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/StaticHelper.class
new file mode 100644
index 000000000..6e258a5f5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/StaticHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Utils.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Utils.class
new file mode 100644
index 000000000..0f53cbde0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/android/Utils.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/Calib3d.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/Calib3d.class
new file mode 100644
index 000000000..62745b73d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/Calib3d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoBM.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoBM.class
new file mode 100644
index 000000000..3d85f0504
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoMatcher.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoMatcher.class
new file mode 100644
index 000000000..02987fc31
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoSGBM.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoSGBM.class
new file mode 100644
index 000000000..333d91430
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/calib3d/StereoSGBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Algorithm.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Algorithm.class
new file mode 100644
index 000000000..204c74ae7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Algorithm.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core$MinMaxLocResult.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core$MinMaxLocResult.class
new file mode 100644
index 000000000..79c9911f4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core$MinMaxLocResult.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core.class
new file mode 100644
index 000000000..5f26a508a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Core.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvException.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvException.class
new file mode 100644
index 000000000..5faab8801
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvException.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvType.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvType.class
new file mode 100644
index 000000000..544d6f2da
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/CvType.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/DMatch.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/DMatch.class
new file mode 100644
index 000000000..c1d6e809f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/DMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/KeyPoint.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/KeyPoint.class
new file mode 100644
index 000000000..00f455e86
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/KeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Mat.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Mat.class
new file mode 100644
index 000000000..d0fa89a89
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Mat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfByte.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfByte.class
new file mode 100644
index 000000000..4e30ce1a2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfByte.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDMatch.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDMatch.class
new file mode 100644
index 000000000..aa872475b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDouble.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDouble.class
new file mode 100644
index 000000000..4d9d867b6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfDouble.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat.class
new file mode 100644
index 000000000..717772bb1
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat4.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat4.class
new file mode 100644
index 000000000..8eb4b5491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat6.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat6.class
new file mode 100644
index 000000000..cbd3fb6b4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfFloat6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt.class
new file mode 100644
index 000000000..32f9b1d6c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt4.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt4.class
new file mode 100644
index 000000000..061ecf92e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfInt4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfKeyPoint.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfKeyPoint.class
new file mode 100644
index 000000000..0f0aa0044
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfKeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint.class
new file mode 100644
index 000000000..9ac1175fd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint2f.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint2f.class
new file mode 100644
index 000000000..4f1fb2a12
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint2f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3.class
new file mode 100644
index 000000000..687860326
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3f.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3f.class
new file mode 100644
index 000000000..7d7bc04fb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfPoint3f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfRect.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfRect.class
new file mode 100644
index 000000000..12f85863e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/MatOfRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point.class
new file mode 100644
index 000000000..a713eefa7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point3.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point3.class
new file mode 100644
index 000000000..e19f55b60
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Point3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Range.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Range.class
new file mode 100644
index 000000000..ae7032b58
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Range.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Rect.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Rect.class
new file mode 100644
index 000000000..0e90a05ad
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Rect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/RotatedRect.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/RotatedRect.class
new file mode 100644
index 000000000..f41e6eb39
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/RotatedRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Scalar.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Scalar.class
new file mode 100644
index 000000000..0758f0027
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Scalar.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Size.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Size.class
new file mode 100644
index 000000000..e9534cfb0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/Size.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/TermCriteria.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/TermCriteria.class
new file mode 100644
index 000000000..b5edbba26
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/core/TermCriteria.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class
new file mode 100644
index 000000000..8b2dbbc67
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub.class
new file mode 100644
index 000000000..e00026336
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface$Stub.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface.class
new file mode 100644
index 000000000..f6412ef3e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/engine/OpenCVEngineInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorExtractor.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorExtractor.class
new file mode 100644
index 000000000..0f5cd3f0b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorExtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorMatcher.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorMatcher.class
new file mode 100644
index 000000000..93a7360ee
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/DescriptorMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/FeatureDetector.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/FeatureDetector.class
new file mode 100644
index 000000000..6faa3b0ef
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/FeatureDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/Features2d.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/Features2d.class
new file mode 100644
index 000000000..3632b577e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/features2d/Features2d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgcodecs/Imgcodecs.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgcodecs/Imgcodecs.class
new file mode 100644
index 000000000..7cd936a38
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgcodecs/Imgcodecs.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/CLAHE.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/CLAHE.class
new file mode 100644
index 000000000..1454d6ac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/CLAHE.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Imgproc.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Imgproc.class
new file mode 100644
index 000000000..d985598d5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Imgproc.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/LineSegmentDetector.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/LineSegmentDetector.class
new file mode 100644
index 000000000..7e8814675
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/LineSegmentDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Moments.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Moments.class
new file mode 100644
index 000000000..a5fcee273
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Moments.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Subdiv2D.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Subdiv2D.class
new file mode 100644
index 000000000..23c99a1ac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/imgproc/Subdiv2D.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/ANN_MLP.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/ANN_MLP.class
new file mode 100644
index 000000000..0828f0a99
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/ANN_MLP.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Boost.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Boost.class
new file mode 100644
index 000000000..1ff6dbe17
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Boost.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/DTrees.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/DTrees.class
new file mode 100644
index 000000000..f261f25b3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/DTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/EM.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/EM.class
new file mode 100644
index 000000000..b9295276a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/EM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/KNearest.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/KNearest.class
new file mode 100644
index 000000000..c27689b6a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/KNearest.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/LogisticRegression.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/LogisticRegression.class
new file mode 100644
index 000000000..3504c5054
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/LogisticRegression.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Ml.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Ml.class
new file mode 100644
index 000000000..5a21b8bcb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/Ml.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/NormalBayesClassifier.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/NormalBayesClassifier.class
new file mode 100644
index 000000000..2d2973234
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/NormalBayesClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/RTrees.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/RTrees.class
new file mode 100644
index 000000000..6b128e491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/RTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/SVM.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/SVM.class
new file mode 100644
index 000000000..42c5b911f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/SVM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/StatModel.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/StatModel.class
new file mode 100644
index 000000000..7f19a2398
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/StatModel.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/TrainData.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/TrainData.class
new file mode 100644
index 000000000..24753c38f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/ml/TrainData.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/BaseCascadeClassifier.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/BaseCascadeClassifier.class
new file mode 100644
index 000000000..3a51a7496
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/BaseCascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/CascadeClassifier.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/CascadeClassifier.class
new file mode 100644
index 000000000..12529bd1f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/CascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/HOGDescriptor.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/HOGDescriptor.class
new file mode 100644
index 000000000..48d747d36
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/HOGDescriptor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/Objdetect.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/Objdetect.class
new file mode 100644
index 000000000..64b5d3796
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/objdetect/Objdetect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignExposures.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignExposures.class
new file mode 100644
index 000000000..028c1dac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignMTB.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignMTB.class
new file mode 100644
index 000000000..88e97b730
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/AlignMTB.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateCRF.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateCRF.class
new file mode 100644
index 000000000..5242c9710
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateCRF.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateDebevec.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateDebevec.class
new file mode 100644
index 000000000..9d9112241
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateRobertson.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateRobertson.class
new file mode 100644
index 000000000..939366f94
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/CalibrateRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeDebevec.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeDebevec.class
new file mode 100644
index 000000000..b89a04b41
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeExposures.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeExposures.class
new file mode 100644
index 000000000..7cf0f444a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeMertens.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeMertens.class
new file mode 100644
index 000000000..52c581bcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeMertens.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeRobertson.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeRobertson.class
new file mode 100644
index 000000000..155ea1b62
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/MergeRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Photo.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Photo.class
new file mode 100644
index 000000000..d388df93e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Photo.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Tonemap.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Tonemap.class
new file mode 100644
index 000000000..21f509bdb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/Tonemap.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDrago.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDrago.class
new file mode 100644
index 000000000..f90e7187b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDrago.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDurand.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDurand.class
new file mode 100644
index 000000000..ccf66aea4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapDurand.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapMantiuk.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapMantiuk.class
new file mode 100644
index 000000000..afb5b4a10
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapMantiuk.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapReinhard.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapReinhard.class
new file mode 100644
index 000000000..a8e888e42
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/photo/TonemapReinhard.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/utils/Converters.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/utils/Converters.class
new file mode 100644
index 000000000..f64736531
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/utils/Converters.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractor.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractor.class
new file mode 100644
index 000000000..ac7385b74
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorKNN.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorKNN.class
new file mode 100644
index 000000000..a076417bb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorKNN.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorMOG2.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorMOG2.class
new file mode 100644
index 000000000..9e23d6c97
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/BackgroundSubtractorMOG2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DenseOpticalFlow.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DenseOpticalFlow.class
new file mode 100644
index 000000000..27aafabbb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DenseOpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DualTVL1OpticalFlow.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DualTVL1OpticalFlow.class
new file mode 100644
index 000000000..882cc3268
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/DualTVL1OpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/KalmanFilter.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/KalmanFilter.class
new file mode 100644
index 000000000..f16e002a0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/KalmanFilter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/Video.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/Video.class
new file mode 100644
index 000000000..a3392bbba
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/video/Video.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoCapture.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoCapture.class
new file mode 100644
index 000000000..630752a19
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoCapture.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoWriter.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoWriter.class
new file mode 100644
index 000000000..43a2241e0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/VideoWriter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/Videoio.class b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/Videoio.class
new file mode 100644
index 000000000..663feea8d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/classes/release/org/opencv/videoio/Videoio.class differ
diff --git a/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar b/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar
new file mode 100644
index 000000000..2350567c5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar b/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar
new file mode 100644
index 000000000..cf7cb5616
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/compile_only_not_namespaced_r_class_jar/release/generateReleaseRFile/R.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental-safeguard/release/tag.txt b/android/openCVLibrary310/build/intermediates/incremental-safeguard/release/tag.txt
new file mode 100644
index 000000000..c01a13dc0
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental-safeguard/release/tag.txt
@@ -0,0 +1 @@
+incremental task execution
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/compileDebugAidl/dependency.store b/android/openCVLibrary310/build/intermediates/incremental/compileDebugAidl/dependency.store
new file mode 100644
index 000000000..dfb4e74c0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/compileDebugAidl/dependency.store differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store b/android/openCVLibrary310/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store
new file mode 100644
index 000000000..8b8400dcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/compileReleaseAidl/dependency.store b/android/openCVLibrary310/build/intermediates/incremental/compileReleaseAidl/dependency.store
new file mode 100644
index 000000000..fb31da904
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/compileReleaseAidl/dependency.store differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJavaRes/merge-state
new file mode 100644
index 000000000..446845b2f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJniLibs/merge-state
new file mode 100644
index 000000000..de7772a90
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
new file mode 100644
index 000000000..3f6372801
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Wed Jan 03 12:11:00 BRST 2018
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..bfefdaefa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
new file mode 100644
index 000000000..fb0ce1d9f
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAssets/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 000000000..3e34574dc
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 000000000..5882049f1
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeDebugShaders/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 000000000..acf3b07c6
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseAssets/merger.xml
new file mode 100644
index 000000000..7822f5ce5
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
new file mode 100644
index 000000000..a2035ff1a
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties
new file mode 100644
index 000000000..fd305171d
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Thu Feb 06 12:24:53 CET 2020
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merger.xml
new file mode 100644
index 000000000..7b1da40eb
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseResources/merger.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseShaders/merger.xml
new file mode 100644
index 000000000..aa2215069
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/mergeReleaseShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageDebugAssets/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/packageDebugAssets/merger.xml
new file mode 100644
index 000000000..062c640b1
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
new file mode 100644
index 000000000..0193c3d41
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Thu Feb 06 12:24:39 CET 2020
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merger.xml
new file mode 100644
index 000000000..5a97dfeb9
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageDebugResources/merger.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageReleaseAssets/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseAssets/merger.xml
new file mode 100644
index 000000000..664870256
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
new file mode 100644
index 000000000..7bd25a9d6
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Thu Feb 06 12:24:50 CET 2020
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merger.xml b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merger.xml
new file mode 100644
index 000000000..7b1da40eb
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/incremental/packageReleaseResources/merger.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/incremental/release-mergeJavaRes/merge-state b/android/openCVLibrary310/build/intermediates/incremental/release-mergeJavaRes/merge-state
new file mode 100644
index 000000000..873bdf50e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/release-mergeJavaRes/merge-state differ
diff --git a/android/openCVLibrary310/build/intermediates/incremental/release-mergeJniLibs/merge-state b/android/openCVLibrary310/build/intermediates/incremental/release-mergeJniLibs/merge-state
new file mode 100644
index 000000000..e6201fedc
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/incremental/release-mergeJniLibs/merge-state differ
diff --git a/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/classes.jar b/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/classes.jar
new file mode 100644
index 000000000..e320c4798
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/classes.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/res.jar b/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/res.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/intermediate-jars/debug/res.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/intermediate-jars/release/classes.jar b/android/openCVLibrary310/build/intermediates/intermediate-jars/release/classes.jar
new file mode 100644
index 000000000..7b743b162
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/intermediate-jars/release/classes.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/intermediate-jars/release/res.jar b/android/openCVLibrary310/build/intermediates/intermediate-jars/release/res.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/intermediate-jars/release/res.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/BuildConfig.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/BuildConfig.class
new file mode 100644
index 000000000..7a8493260
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/BuildConfig.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class
new file mode 100644
index 000000000..a0125af98
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class
new file mode 100644
index 000000000..067084dae
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class
new file mode 100644
index 000000000..089a7b8cd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class
new file mode 100644
index 000000000..7b160acbc
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class
new file mode 100644
index 000000000..341c2da27
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class
new file mode 100644
index 000000000..4e6638920
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class
new file mode 100644
index 000000000..7ecbaa4f2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class
new file mode 100644
index 000000000..281b1d952
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class
new file mode 100644
index 000000000..c4c0bd399
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class
new file mode 100644
index 000000000..d01747add
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class
new file mode 100644
index 000000000..cfa9a26ff
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class
new file mode 100644
index 000000000..1cabb21c9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class
new file mode 100644
index 000000000..bbf9914e4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class
new file mode 100644
index 000000000..2d5faef9d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class
new file mode 100644
index 000000000..5ff900b45
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class
new file mode 100644
index 000000000..b87b2f85a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class
new file mode 100644
index 000000000..b332abee2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class
new file mode 100644
index 000000000..d0553726f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class
new file mode 100644
index 000000000..28339daac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class
new file mode 100644
index 000000000..333b157cb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class
new file mode 100644
index 000000000..f95072773
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class
new file mode 100644
index 000000000..aa2aaa09f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class
new file mode 100644
index 000000000..08f5cb162
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class
new file mode 100644
index 000000000..e18dfc9a4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class
new file mode 100644
index 000000000..bac7941e6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class
new file mode 100644
index 000000000..72c251ccf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class
new file mode 100644
index 000000000..1bf4902b7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraRenderer.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraRenderer.class
new file mode 100644
index 000000000..01547afcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/CameraRenderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/FpsMeter.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/FpsMeter.class
new file mode 100644
index 000000000..034b4b856
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/FpsMeter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class
new file mode 100644
index 000000000..00cae7f04
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class
new file mode 100644
index 000000000..b2c301532
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class
new file mode 100644
index 000000000..6cccd2dc9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class
new file mode 100644
index 000000000..a1a5dabd0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class
new file mode 100644
index 000000000..830ca5331
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView.class
new file mode 100644
index 000000000..3d0890205
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/JavaCameraView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class
new file mode 100644
index 000000000..d67c5729d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class
new file mode 100644
index 000000000..b4a6278f9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/StaticHelper.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/StaticHelper.class
new file mode 100644
index 000000000..6e258a5f5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/StaticHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Utils.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Utils.class
new file mode 100644
index 000000000..0f53cbde0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/android/Utils.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class
new file mode 100644
index 000000000..62745b73d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class
new file mode 100644
index 000000000..3d85f0504
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class
new file mode 100644
index 000000000..02987fc31
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class
new file mode 100644
index 000000000..333d91430
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Algorithm.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Algorithm.class
new file mode 100644
index 000000000..204c74ae7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Algorithm.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class
new file mode 100644
index 000000000..79c9911f4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core.class
new file mode 100644
index 000000000..5f26a508a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Core.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvException.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvException.class
new file mode 100644
index 000000000..5faab8801
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvException.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvType.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvType.class
new file mode 100644
index 000000000..544d6f2da
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/CvType.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/DMatch.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/DMatch.class
new file mode 100644
index 000000000..c1d6e809f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/DMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/KeyPoint.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/KeyPoint.class
new file mode 100644
index 000000000..00f455e86
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/KeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Mat.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Mat.class
new file mode 100644
index 000000000..d0fa89a89
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Mat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfByte.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfByte.class
new file mode 100644
index 000000000..4e30ce1a2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfByte.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class
new file mode 100644
index 000000000..aa872475b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDouble.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDouble.class
new file mode 100644
index 000000000..4d9d867b6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfDouble.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat.class
new file mode 100644
index 000000000..717772bb1
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class
new file mode 100644
index 000000000..8eb4b5491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class
new file mode 100644
index 000000000..cbd3fb6b4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt.class
new file mode 100644
index 000000000..32f9b1d6c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt4.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt4.class
new file mode 100644
index 000000000..061ecf92e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfInt4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class
new file mode 100644
index 000000000..0f0aa0044
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint.class
new file mode 100644
index 000000000..9ac1175fd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class
new file mode 100644
index 000000000..4f1fb2a12
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class
new file mode 100644
index 000000000..687860326
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class
new file mode 100644
index 000000000..7d7bc04fb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfRect.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfRect.class
new file mode 100644
index 000000000..12f85863e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/MatOfRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point.class
new file mode 100644
index 000000000..a713eefa7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point3.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point3.class
new file mode 100644
index 000000000..e19f55b60
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Point3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Range.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Range.class
new file mode 100644
index 000000000..ae7032b58
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Range.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Rect.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Rect.class
new file mode 100644
index 000000000..0e90a05ad
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Rect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/RotatedRect.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/RotatedRect.class
new file mode 100644
index 000000000..f41e6eb39
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/RotatedRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Scalar.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Scalar.class
new file mode 100644
index 000000000..0758f0027
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Scalar.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Size.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Size.class
new file mode 100644
index 000000000..e9534cfb0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/Size.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/TermCriteria.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/TermCriteria.class
new file mode 100644
index 000000000..b5edbba26
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/core/TermCriteria.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class
new file mode 100644
index 000000000..45210c96c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class
new file mode 100644
index 000000000..30fe74197
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class
new file mode 100644
index 000000000..f6412ef3e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class
new file mode 100644
index 000000000..0f5cd3f0b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class
new file mode 100644
index 000000000..93a7360ee
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class
new file mode 100644
index 000000000..6faa3b0ef
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/Features2d.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/Features2d.class
new file mode 100644
index 000000000..3632b577e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/features2d/Features2d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class
new file mode 100644
index 000000000..7cd936a38
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class
new file mode 100644
index 000000000..1454d6ac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class
new file mode 100644
index 000000000..d985598d5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class
new file mode 100644
index 000000000..7e8814675
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Moments.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Moments.class
new file mode 100644
index 000000000..a5fcee273
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Moments.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class
new file mode 100644
index 000000000..23c99a1ac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class
new file mode 100644
index 000000000..0828f0a99
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Boost.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Boost.class
new file mode 100644
index 000000000..1ff6dbe17
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Boost.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/DTrees.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/DTrees.class
new file mode 100644
index 000000000..f261f25b3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/DTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/EM.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/EM.class
new file mode 100644
index 000000000..b9295276a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/EM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/KNearest.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/KNearest.class
new file mode 100644
index 000000000..c27689b6a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/KNearest.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class
new file mode 100644
index 000000000..3504c5054
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Ml.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Ml.class
new file mode 100644
index 000000000..5a21b8bcb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/Ml.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class
new file mode 100644
index 000000000..2d2973234
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/RTrees.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/RTrees.class
new file mode 100644
index 000000000..6b128e491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/RTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/SVM.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/SVM.class
new file mode 100644
index 000000000..42c5b911f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/SVM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/StatModel.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/StatModel.class
new file mode 100644
index 000000000..7f19a2398
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/StatModel.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/TrainData.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/TrainData.class
new file mode 100644
index 000000000..24753c38f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/ml/TrainData.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class
new file mode 100644
index 000000000..3a51a7496
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class
new file mode 100644
index 000000000..12529bd1f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class
new file mode 100644
index 000000000..48d747d36
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class
new file mode 100644
index 000000000..64b5d3796
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignExposures.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignExposures.class
new file mode 100644
index 000000000..028c1dac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignMTB.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignMTB.class
new file mode 100644
index 000000000..88e97b730
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/AlignMTB.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class
new file mode 100644
index 000000000..5242c9710
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class
new file mode 100644
index 000000000..9d9112241
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class
new file mode 100644
index 000000000..939366f94
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class
new file mode 100644
index 000000000..b89a04b41
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeExposures.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeExposures.class
new file mode 100644
index 000000000..7cf0f444a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeMertens.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeMertens.class
new file mode 100644
index 000000000..52c581bcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeMertens.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class
new file mode 100644
index 000000000..155ea1b62
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Photo.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Photo.class
new file mode 100644
index 000000000..d388df93e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Photo.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Tonemap.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Tonemap.class
new file mode 100644
index 000000000..21f509bdb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/Tonemap.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class
new file mode 100644
index 000000000..f90e7187b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class
new file mode 100644
index 000000000..ccf66aea4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class
new file mode 100644
index 000000000..afb5b4a10
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class
new file mode 100644
index 000000000..a8e888e42
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/utils/Converters.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/utils/Converters.class
new file mode 100644
index 000000000..f64736531
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/utils/Converters.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class
new file mode 100644
index 000000000..ac7385b74
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class
new file mode 100644
index 000000000..a076417bb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class
new file mode 100644
index 000000000..9e23d6c97
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class
new file mode 100644
index 000000000..27aafabbb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class
new file mode 100644
index 000000000..882cc3268
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/KalmanFilter.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/KalmanFilter.class
new file mode 100644
index 000000000..f16e002a0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/KalmanFilter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/Video.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/Video.class
new file mode 100644
index 000000000..a3392bbba
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/video/Video.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class
new file mode 100644
index 000000000..630752a19
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class
new file mode 100644
index 000000000..43a2241e0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/Videoio.class b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/Videoio.class
new file mode 100644
index 000000000..663feea8d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/opencv/videoio/Videoio.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/BuildConfig.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/BuildConfig.class
new file mode 100644
index 000000000..7cd4bba4c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/BuildConfig.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class
new file mode 100644
index 000000000..a0125af98
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class
new file mode 100644
index 000000000..067084dae
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class
new file mode 100644
index 000000000..089a7b8cd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class
new file mode 100644
index 000000000..7b160acbc
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class
new file mode 100644
index 000000000..341c2da27
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class
new file mode 100644
index 000000000..4e6638920
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/AsyncServiceHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class
new file mode 100644
index 000000000..7ecbaa4f2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class
new file mode 100644
index 000000000..281b1d952
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class
new file mode 100644
index 000000000..c4c0bd399
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class
new file mode 100644
index 000000000..d01747add
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class
new file mode 100644
index 000000000..cfa9a26ff
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$5.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class
new file mode 100644
index 000000000..1cabb21c9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class
new file mode 100644
index 000000000..bbf9914e4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback$7.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class
new file mode 100644
index 000000000..2d5faef9d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/BaseLoaderCallback.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class
new file mode 100644
index 000000000..5ff900b45
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class
new file mode 100644
index 000000000..b87b2f85a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer$2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class
new file mode 100644
index 000000000..b332abee2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Camera2Renderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class
new file mode 100644
index 000000000..d0553726f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class
new file mode 100644
index 000000000..28339daac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class
new file mode 100644
index 000000000..333b157cb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class
new file mode 100644
index 000000000..f95072773
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListener2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class
new file mode 100644
index 000000000..aa2aaa09f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$CvCameraViewListenerAdapter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class
new file mode 100644
index 000000000..08f5cb162
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase$ListItemAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class
new file mode 100644
index 000000000..e18dfc9a4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraBridgeViewBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class
new file mode 100644
index 000000000..bac7941e6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLRendererBase.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class
new file mode 100644
index 000000000..72c251ccf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView$CameraTextureListener.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class
new file mode 100644
index 000000000..1bf4902b7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraGLSurfaceView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraRenderer.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraRenderer.class
new file mode 100644
index 000000000..01547afcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/CameraRenderer.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/FpsMeter.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/FpsMeter.class
new file mode 100644
index 000000000..034b4b856
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/FpsMeter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class
new file mode 100644
index 000000000..00cae7f04
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/InstallCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class
new file mode 100644
index 000000000..b2c301532
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$1.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class
new file mode 100644
index 000000000..6cccd2dc9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$CameraWorker.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class
new file mode 100644
index 000000000..a1a5dabd0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraFrame.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class
new file mode 100644
index 000000000..830ca5331
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView$JavaCameraSizeAccessor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView.class
new file mode 100644
index 000000000..3d0890205
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/JavaCameraView.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class
new file mode 100644
index 000000000..d67c5729d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/LoaderCallbackInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class
new file mode 100644
index 000000000..b4a6278f9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/OpenCVLoader.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/StaticHelper.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/StaticHelper.class
new file mode 100644
index 000000000..6e258a5f5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/StaticHelper.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Utils.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Utils.class
new file mode 100644
index 000000000..0f53cbde0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/android/Utils.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class
new file mode 100644
index 000000000..62745b73d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/Calib3d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class
new file mode 100644
index 000000000..3d85f0504
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class
new file mode 100644
index 000000000..02987fc31
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class
new file mode 100644
index 000000000..333d91430
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/calib3d/StereoSGBM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Algorithm.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Algorithm.class
new file mode 100644
index 000000000..204c74ae7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Algorithm.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class
new file mode 100644
index 000000000..79c9911f4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core$MinMaxLocResult.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core.class
new file mode 100644
index 000000000..5f26a508a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Core.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvException.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvException.class
new file mode 100644
index 000000000..5faab8801
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvException.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvType.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvType.class
new file mode 100644
index 000000000..544d6f2da
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/CvType.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/DMatch.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/DMatch.class
new file mode 100644
index 000000000..c1d6e809f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/DMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/KeyPoint.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/KeyPoint.class
new file mode 100644
index 000000000..00f455e86
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/KeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Mat.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Mat.class
new file mode 100644
index 000000000..d0fa89a89
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Mat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfByte.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfByte.class
new file mode 100644
index 000000000..4e30ce1a2
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfByte.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class
new file mode 100644
index 000000000..aa872475b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDMatch.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDouble.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDouble.class
new file mode 100644
index 000000000..4d9d867b6
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfDouble.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat.class
new file mode 100644
index 000000000..717772bb1
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class
new file mode 100644
index 000000000..8eb4b5491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class
new file mode 100644
index 000000000..cbd3fb6b4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfFloat6.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt.class
new file mode 100644
index 000000000..32f9b1d6c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt4.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt4.class
new file mode 100644
index 000000000..061ecf92e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfInt4.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class
new file mode 100644
index 000000000..0f0aa0044
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfKeyPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint.class
new file mode 100644
index 000000000..9ac1175fd
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class
new file mode 100644
index 000000000..4f1fb2a12
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint2f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class
new file mode 100644
index 000000000..687860326
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class
new file mode 100644
index 000000000..7d7bc04fb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfPoint3f.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfRect.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfRect.class
new file mode 100644
index 000000000..12f85863e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/MatOfRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point.class
new file mode 100644
index 000000000..a713eefa7
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point3.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point3.class
new file mode 100644
index 000000000..e19f55b60
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Point3.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Range.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Range.class
new file mode 100644
index 000000000..ae7032b58
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Range.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Rect.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Rect.class
new file mode 100644
index 000000000..0e90a05ad
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Rect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/RotatedRect.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/RotatedRect.class
new file mode 100644
index 000000000..f41e6eb39
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/RotatedRect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Scalar.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Scalar.class
new file mode 100644
index 000000000..0758f0027
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Scalar.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Size.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Size.class
new file mode 100644
index 000000000..e9534cfb0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/Size.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/TermCriteria.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/TermCriteria.class
new file mode 100644
index 000000000..b5edbba26
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/core/TermCriteria.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class
new file mode 100644
index 000000000..45210c96c
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub$Proxy.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class
new file mode 100644
index 000000000..30fe74197
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface$Stub.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class
new file mode 100644
index 000000000..f6412ef3e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/engine/OpenCVEngineInterface.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class
new file mode 100644
index 000000000..0f5cd3f0b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorExtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class
new file mode 100644
index 000000000..93a7360ee
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/DescriptorMatcher.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class
new file mode 100644
index 000000000..6faa3b0ef
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/FeatureDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/Features2d.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/Features2d.class
new file mode 100644
index 000000000..3632b577e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/features2d/Features2d.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class
new file mode 100644
index 000000000..7cd936a38
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgcodecs/Imgcodecs.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class
new file mode 100644
index 000000000..1454d6ac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/CLAHE.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class
new file mode 100644
index 000000000..d985598d5
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Imgproc.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class
new file mode 100644
index 000000000..7e8814675
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/LineSegmentDetector.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Moments.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Moments.class
new file mode 100644
index 000000000..a5fcee273
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Moments.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class
new file mode 100644
index 000000000..23c99a1ac
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/imgproc/Subdiv2D.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class
new file mode 100644
index 000000000..0828f0a99
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/ANN_MLP.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Boost.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Boost.class
new file mode 100644
index 000000000..1ff6dbe17
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Boost.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/DTrees.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/DTrees.class
new file mode 100644
index 000000000..f261f25b3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/DTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/EM.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/EM.class
new file mode 100644
index 000000000..b9295276a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/EM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/KNearest.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/KNearest.class
new file mode 100644
index 000000000..c27689b6a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/KNearest.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class
new file mode 100644
index 000000000..3504c5054
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/LogisticRegression.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Ml.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Ml.class
new file mode 100644
index 000000000..5a21b8bcb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/Ml.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class
new file mode 100644
index 000000000..2d2973234
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/NormalBayesClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/RTrees.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/RTrees.class
new file mode 100644
index 000000000..6b128e491
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/RTrees.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/SVM.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/SVM.class
new file mode 100644
index 000000000..42c5b911f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/SVM.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/StatModel.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/StatModel.class
new file mode 100644
index 000000000..7f19a2398
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/StatModel.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/TrainData.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/TrainData.class
new file mode 100644
index 000000000..24753c38f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/ml/TrainData.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class
new file mode 100644
index 000000000..3a51a7496
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/BaseCascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class
new file mode 100644
index 000000000..12529bd1f
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/CascadeClassifier.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class
new file mode 100644
index 000000000..48d747d36
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/HOGDescriptor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class
new file mode 100644
index 000000000..64b5d3796
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/objdetect/Objdetect.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignExposures.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignExposures.class
new file mode 100644
index 000000000..028c1dac9
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignMTB.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignMTB.class
new file mode 100644
index 000000000..88e97b730
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/AlignMTB.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class
new file mode 100644
index 000000000..5242c9710
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateCRF.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class
new file mode 100644
index 000000000..9d9112241
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class
new file mode 100644
index 000000000..939366f94
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/CalibrateRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class
new file mode 100644
index 000000000..b89a04b41
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeDebevec.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeExposures.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeExposures.class
new file mode 100644
index 000000000..7cf0f444a
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeExposures.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeMertens.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeMertens.class
new file mode 100644
index 000000000..52c581bcf
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeMertens.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class
new file mode 100644
index 000000000..155ea1b62
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/MergeRobertson.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Photo.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Photo.class
new file mode 100644
index 000000000..d388df93e
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Photo.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Tonemap.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Tonemap.class
new file mode 100644
index 000000000..21f509bdb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/Tonemap.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class
new file mode 100644
index 000000000..f90e7187b
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDrago.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class
new file mode 100644
index 000000000..ccf66aea4
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapDurand.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class
new file mode 100644
index 000000000..afb5b4a10
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapMantiuk.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class
new file mode 100644
index 000000000..a8e888e42
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/photo/TonemapReinhard.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/utils/Converters.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/utils/Converters.class
new file mode 100644
index 000000000..f64736531
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/utils/Converters.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class
new file mode 100644
index 000000000..ac7385b74
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractor.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class
new file mode 100644
index 000000000..a076417bb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorKNN.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class
new file mode 100644
index 000000000..9e23d6c97
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/BackgroundSubtractorMOG2.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class
new file mode 100644
index 000000000..27aafabbb
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DenseOpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class
new file mode 100644
index 000000000..882cc3268
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/DualTVL1OpticalFlow.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/KalmanFilter.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/KalmanFilter.class
new file mode 100644
index 000000000..f16e002a0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/KalmanFilter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/Video.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/Video.class
new file mode 100644
index 000000000..a3392bbba
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/video/Video.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class
new file mode 100644
index 000000000..630752a19
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoCapture.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class
new file mode 100644
index 000000000..43a2241e0
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/VideoWriter.class differ
diff --git a/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/Videoio.class b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/Videoio.class
new file mode 100644
index 000000000..663feea8d
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/opencv/videoio/Videoio.class differ
diff --git a/android/openCVLibrary310/build/intermediates/library_manifest/debug/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/library_manifest/debug/AndroidManifest.xml
new file mode 100644
index 000000000..232f21b9c
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/library_manifest/debug/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/library_manifest/release/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/library_manifest/release/AndroidManifest.xml
new file mode 100644
index 000000000..232f21b9c
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/library_manifest/release/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
new file mode 100644
index 000000000..b4c6f7109
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/manifests/aapt/debug/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/manifests/aapt/debug/AndroidManifest.xml
new file mode 100644
index 000000000..135083168
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/manifests/aapt/debug/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/manifests/aapt/release/AndroidManifest.xml b/android/openCVLibrary310/build/intermediates/manifests/aapt/release/AndroidManifest.xml
new file mode 100644
index 000000000..135083168
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/manifests/aapt/release/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/merged_manifests/debug/output.json b/android/openCVLibrary310/build/intermediates/merged_manifests/debug/output.json
new file mode 100644
index 000000000..9395ab349
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/merged_manifests/debug/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3100,"versionName":"3.1.0","enabled":true,"outputFile":"openCVLibrary310-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"org.opencv","split":""}}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/merged_manifests/release/output.json b/android/openCVLibrary310/build/intermediates/merged_manifests/release/output.json
new file mode 100644
index 000000000..e1e997d72
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/merged_manifests/release/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3100,"versionName":"3.1.0","enabled":true,"outputFile":"openCVLibrary310-release.aar","fullName":"release","baseName":"release"},"path":"../../library_manifest/release/AndroidManifest.xml","properties":{"packageId":"org.opencv","split":""}}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/packaged-classes/debug/classes.jar b/android/openCVLibrary310/build/intermediates/packaged-classes/debug/classes.jar
new file mode 100644
index 000000000..e320c4798
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/packaged-classes/debug/classes.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/packaged-classes/release/classes.jar b/android/openCVLibrary310/build/intermediates/packaged-classes/release/classes.jar
new file mode 100644
index 000000000..7b743b162
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/packaged-classes/release/classes.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/packaged_res/debug/values/values.xml b/android/openCVLibrary310/build/intermediates/packaged_res/debug/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/packaged_res/debug/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/packaged_res/release/values/values.xml b/android/openCVLibrary310/build/intermediates/packaged_res/release/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/packaged_res/release/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/res/compiled/release/values_values.arsc.flat b/android/openCVLibrary310/build/intermediates/res/compiled/release/values_values.arsc.flat
new file mode 100644
index 000000000..a5f893024
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/res/compiled/release/values_values.arsc.flat differ
diff --git a/android/openCVLibrary310/build/intermediates/res/merged/androidTest/debug/values/values.xml b/android/openCVLibrary310/build/intermediates/res/merged/androidTest/debug/values/values.xml
new file mode 100644
index 000000000..bfefdaefa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/res/merged/androidTest/debug/values/values.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/res/merged/release/values/values.xml b/android/openCVLibrary310/build/intermediates/res/merged/release/values/values.xml
new file mode 100644
index 000000000..66d779b32
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/res/merged/release/values/values.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/res/resources-debug-androidTest.ap_ b/android/openCVLibrary310/build/intermediates/res/resources-debug-androidTest.ap_
new file mode 100644
index 000000000..21d49c223
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/res/resources-debug-androidTest.ap_ differ
diff --git a/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt
new file mode 100644
index 000000000..be1c24900
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt
@@ -0,0 +1,7 @@
+org.opencv
+attr camera_id
+attr show_fps
+id any
+id back
+id front
+styleable CameraBridgeViewBase camera_id show_fps
diff --git a/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt b/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt
new file mode 100644
index 000000000..be1c24900
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt
@@ -0,0 +1,7 @@
+org.opencv
+attr camera_id
+attr show_fps
+id any
+id back
+id front
+styleable CameraBridgeViewBase camera_id show_fps
diff --git a/android/openCVLibrary310/build/intermediates/symbols/androidTest/debug/R.txt b/android/openCVLibrary310/build/intermediates/symbols/androidTest/debug/R.txt
new file mode 100644
index 000000000..a3db1775a
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/symbols/androidTest/debug/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f010001
+int attr show_fps 0x7f010000
+int id any 0x7f020000
+int id back 0x7f020001
+int id front 0x7f020002
+int[] styleable CameraBridgeViewBase { 0x7f010000, 0x7f010001 }
+int styleable CameraBridgeViewBase_camera_id 1
+int styleable CameraBridgeViewBase_show_fps 0
diff --git a/android/openCVLibrary310/build/intermediates/symbols/debug/R.txt b/android/openCVLibrary310/build/intermediates/symbols/debug/R.txt
new file mode 100644
index 000000000..78e60d364
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/symbols/debug/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f040001
+int attr show_fps 0x7f040002
+int id any 0x7f0b0001
+int id back 0x7f0b0002
+int id front 0x7f0b0003
+int[] styleable CameraBridgeViewBase { 0x7f040001, 0x7f040002 }
+int styleable CameraBridgeViewBase_camera_id 0
+int styleable CameraBridgeViewBase_show_fps 1
diff --git a/android/openCVLibrary310/build/intermediates/symbols/release/R.txt b/android/openCVLibrary310/build/intermediates/symbols/release/R.txt
new file mode 100644
index 000000000..78e60d364
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/symbols/release/R.txt
@@ -0,0 +1,8 @@
+int attr camera_id 0x7f040001
+int attr show_fps 0x7f040002
+int id any 0x7f0b0001
+int id back 0x7f0b0002
+int id front 0x7f0b0003
+int[] styleable CameraBridgeViewBase { 0x7f040001, 0x7f040002 }
+int styleable CameraBridgeViewBase_camera_id 0
+int styleable CameraBridgeViewBase_show_fps 1
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/0.jar b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/0.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/0.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/__content__.json b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/__content__.json
new file mode 100644
index 000000000..a6c7c939d
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/debug/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/0.jar b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/0.jar
new file mode 100644
index 000000000..15cb0ecb3
Binary files /dev/null and b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/0.jar differ
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/__content__.json b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/__content__.json
new file mode 100644
index 000000000..a6c7c939d
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/transforms/mergeJavaRes/release/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/debug/__content__.json b/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/debug/__content__.json
new file mode 100644
index 000000000..49b1382fa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/debug/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/release/__content__.json b/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/release/__content__.json
new file mode 100644
index 000000000..49b1382fa
--- /dev/null
+++ b/android/openCVLibrary310/build/intermediates/transforms/mergeJniLibs/release/__content__.json
@@ -0,0 +1 @@
+[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}]
\ No newline at end of file
diff --git a/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-debug.aar b/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-debug.aar
new file mode 100644
index 000000000..f5750d0d9
Binary files /dev/null and b/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-debug.aar differ
diff --git a/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-release.aar b/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-release.aar
new file mode 100644
index 000000000..e5f3cc07c
Binary files /dev/null and b/android/openCVLibrary310/build/outputs/aar/openCVLibrary310-release.aar differ
diff --git a/android/openCVLibrary310/build/outputs/logs/manifest-merger-debug-report.txt b/android/openCVLibrary310/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 000000000..4adfb0b62
--- /dev/null
+++ b/android/openCVLibrary310/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,37 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+ package
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:3:7-27
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:versionName
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:5:7-34
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:11-69
+ android:versionCode
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:4:7-33
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+uses-sdk
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
diff --git a/android/openCVLibrary310/build/outputs/logs/manifest-merger-release-report.txt b/android/openCVLibrary310/build/outputs/logs/manifest-merger-release-report.txt
new file mode 100644
index 000000000..4adfb0b62
--- /dev/null
+++ b/android/openCVLibrary310/build/outputs/logs/manifest-merger-release-report.txt
@@ -0,0 +1,37 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:1-8:12
+ package
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:3:7-27
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:versionName
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:5:7-34
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:2:11-69
+ android:versionCode
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml:4:7-33
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+uses-sdk
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ ADDED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
+ INJECTED from /Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/src/main/AndroidManifest.xml
diff --git a/android/openCVLibrary310/src/main/AndroidManifest.xml b/android/openCVLibrary310/src/main/AndroidManifest.xml
index f6fcc8f2a..f99fed78d 100644
--- a/android/openCVLibrary310/src/main/AndroidManifest.xml
+++ b/android/openCVLibrary310/src/main/AndroidManifest.xml
@@ -4,5 +4,5 @@
android:versionCode="3100"
android:versionName="3.1.0">
-
+